blob: 18f1639dbc4a601d951330ea179335cb704ce660 [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
Viresh Kumard6d2a522015-10-17 09:45:18 +053014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Viresh Kumard54974c2016-02-09 10:30:38 +053016#include <linux/clk.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020017#include <linux/errno.h>
18#include <linux/err.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020019#include <linux/slab.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050020#include <linux/device.h>
Liam Girdwood80126ce2012-10-23 01:27:44 +020021#include <linux/export.h>
Viresh Kumar009acd12017-10-11 12:54:14 +053022#include <linux/pm_domain.h>
Viresh Kumar9f8ea962016-02-09 10:30:33 +053023#include <linux/regulator/consumer.h>
Nishanth Menone1f60b22010-10-13 00:13:10 +020024
Viresh Kumarf59d3ee2015-09-04 13:47:26 +053025#include "opp.h"
Nishanth Menone1f60b22010-10-13 00:13:10 +020026
27/*
Viresh Kumar2c2709d2016-02-16 14:17:53 +053028 * The root of the list of all opp-tables. All opp_table structures branch off
29 * from here, with each opp_table containing the list of opps it supports in
Nishanth Menone1f60b22010-10-13 00:13:10 +020030 * various states of availability.
31 */
Viresh Kumarf47b72a2016-05-05 16:20:33 +053032LIST_HEAD(opp_tables);
Nishanth Menone1f60b22010-10-13 00:13:10 +020033/* Lock to allow exclusive modification to the device and opp lists */
Viresh Kumar2c2709d2016-02-16 14:17:53 +053034DEFINE_MUTEX(opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +020035
Viresh Kumar2c2709d2016-02-16 14:17:53 +053036static struct opp_device *_find_opp_dev(const struct device *dev,
37 struct opp_table *opp_table)
Viresh Kumar06441652015-07-29 16:23:04 +053038{
Viresh Kumar2c2709d2016-02-16 14:17:53 +053039 struct opp_device *opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +053040
Viresh Kumar2c2709d2016-02-16 14:17:53 +053041 list_for_each_entry(opp_dev, &opp_table->dev_list, node)
42 if (opp_dev->dev == dev)
43 return opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +053044
45 return NULL;
46}
47
Wei Yongjun6ac42392017-02-06 14:29:55 +000048static struct opp_table *_find_opp_table_unlocked(struct device *dev)
Viresh Kumar5b650b32017-01-23 10:11:48 +053049{
50 struct opp_table *opp_table;
Viresh Kumar3d255692018-08-03 07:05:21 +053051 bool found;
Viresh Kumar5b650b32017-01-23 10:11:48 +053052
53 list_for_each_entry(opp_table, &opp_tables, node) {
Viresh Kumar3d255692018-08-03 07:05:21 +053054 mutex_lock(&opp_table->lock);
55 found = !!_find_opp_dev(dev, opp_table);
56 mutex_unlock(&opp_table->lock);
57
58 if (found) {
Viresh Kumar5b650b32017-01-23 10:11:48 +053059 _get_opp_table_kref(opp_table);
60
61 return opp_table;
62 }
63 }
64
65 return ERR_PTR(-ENODEV);
66}
67
Nishanth Menone1f60b22010-10-13 00:13:10 +020068/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +053069 * _find_opp_table() - find opp_table struct using device pointer
70 * @dev: device pointer used to lookup OPP table
Nishanth Menone1f60b22010-10-13 00:13:10 +020071 *
Viresh Kumar052c6f12017-01-23 10:11:49 +053072 * Search OPP table for one containing matching device.
Nishanth Menone1f60b22010-10-13 00:13:10 +020073 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +053074 * Return: pointer to 'struct opp_table' if found, otherwise -ENODEV or
Nishanth Menone1f60b22010-10-13 00:13:10 +020075 * -EINVAL based on type of error.
76 *
Viresh Kumar5b650b32017-01-23 10:11:48 +053077 * The callers must call dev_pm_opp_put_opp_table() after the table is used.
Nishanth Menone1f60b22010-10-13 00:13:10 +020078 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +053079struct opp_table *_find_opp_table(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +020080{
Viresh Kumar2c2709d2016-02-16 14:17:53 +053081 struct opp_table *opp_table;
Nishanth Menone1f60b22010-10-13 00:13:10 +020082
Viresh Kumar50a3cb02015-08-12 15:59:39 +053083 if (IS_ERR_OR_NULL(dev)) {
Nishanth Menone1f60b22010-10-13 00:13:10 +020084 pr_err("%s: Invalid parameters\n", __func__);
85 return ERR_PTR(-EINVAL);
86 }
87
Viresh Kumar5b650b32017-01-23 10:11:48 +053088 mutex_lock(&opp_table_lock);
89 opp_table = _find_opp_table_unlocked(dev);
90 mutex_unlock(&opp_table_lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +020091
Viresh Kumar5b650b32017-01-23 10:11:48 +053092 return opp_table;
Nishanth Menone1f60b22010-10-13 00:13:10 +020093}
94
95/**
Linus Torvaldsbaf51c42015-11-11 09:03:01 -080096 * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an opp
Nishanth Menone1f60b22010-10-13 00:13:10 +020097 * @opp: opp for which voltage has to be returned for
98 *
Nishanth Menon984f16c2014-12-24 11:22:57 -060099 * Return: voltage in micro volt corresponding to the opp, else
Nishanth Menone1f60b22010-10-13 00:13:10 +0200100 * return 0
101 *
Viresh Kumardfbe4672016-12-01 16:28:19 +0530102 * This is useful only for devices with single power supply.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200103 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500104unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200105{
Viresh Kumar052c6f12017-01-23 10:11:49 +0530106 if (IS_ERR_OR_NULL(opp)) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200107 pr_err("%s: Invalid parameters\n", __func__);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530108 return 0;
109 }
Nishanth Menone1f60b22010-10-13 00:13:10 +0200110
Viresh Kumar052c6f12017-01-23 10:11:49 +0530111 return opp->supplies[0].u_volt;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200112}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500113EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200114
115/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500116 * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
Nishanth Menone1f60b22010-10-13 00:13:10 +0200117 * @opp: opp for which frequency has to be returned for
118 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600119 * Return: frequency in hertz corresponding to the opp, else
Nishanth Menone1f60b22010-10-13 00:13:10 +0200120 * return 0
Nishanth Menone1f60b22010-10-13 00:13:10 +0200121 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500122unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200123{
Viresh Kumar052c6f12017-01-23 10:11:49 +0530124 if (IS_ERR_OR_NULL(opp) || !opp->available) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200125 pr_err("%s: Invalid parameters\n", __func__);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530126 return 0;
127 }
Nishanth Menone1f60b22010-10-13 00:13:10 +0200128
Viresh Kumar052c6f12017-01-23 10:11:49 +0530129 return opp->rate;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200130}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500131EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200132
133/**
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +0200134 * dev_pm_opp_is_turbo() - Returns if opp is turbo OPP or not
135 * @opp: opp for which turbo mode is being verified
136 *
137 * Turbo OPPs are not for normal use, and can be enabled (under certain
138 * conditions) for short duration of times to finish high throughput work
139 * quickly. Running on them for longer times may overheat the chip.
140 *
141 * Return: true if opp is turbo opp, else false.
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +0200142 */
143bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp)
144{
Viresh Kumar052c6f12017-01-23 10:11:49 +0530145 if (IS_ERR_OR_NULL(opp) || !opp->available) {
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +0200146 pr_err("%s: Invalid parameters\n", __func__);
147 return false;
148 }
149
Viresh Kumar052c6f12017-01-23 10:11:49 +0530150 return opp->turbo;
Bartlomiej Zolnierkiewicz19445b22015-07-09 17:43:35 +0200151}
152EXPORT_SYMBOL_GPL(dev_pm_opp_is_turbo);
153
154/**
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530155 * dev_pm_opp_get_max_clock_latency() - Get max clock latency in nanoseconds
156 * @dev: device for which we do this operation
157 *
158 * Return: This function returns the max clock latency in nanoseconds.
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530159 */
160unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev)
161{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530162 struct opp_table *opp_table;
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530163 unsigned long clock_latency_ns;
164
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530165 opp_table = _find_opp_table(dev);
166 if (IS_ERR(opp_table))
Viresh Kumar5b650b32017-01-23 10:11:48 +0530167 return 0;
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530168
Viresh Kumar5b650b32017-01-23 10:11:48 +0530169 clock_latency_ns = opp_table->clock_latency_ns_max;
170
171 dev_pm_opp_put_opp_table(opp_table);
172
Viresh Kumar3ca9bb32015-07-29 16:23:03 +0530173 return clock_latency_ns;
174}
175EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_clock_latency);
176
177/**
Viresh Kumar655c9df2016-02-09 10:30:35 +0530178 * dev_pm_opp_get_max_volt_latency() - Get max voltage latency in nanoseconds
179 * @dev: device for which we do this operation
180 *
181 * Return: This function returns the max voltage latency in nanoseconds.
Viresh Kumar655c9df2016-02-09 10:30:35 +0530182 */
183unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev)
184{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530185 struct opp_table *opp_table;
Viresh Kumar655c9df2016-02-09 10:30:35 +0530186 struct dev_pm_opp *opp;
Viresh Kumar478256b2017-05-23 09:32:11 +0530187 struct regulator *reg;
Viresh Kumar655c9df2016-02-09 10:30:35 +0530188 unsigned long latency_ns = 0;
Viresh Kumardfbe4672016-12-01 16:28:19 +0530189 int ret, i, count;
190 struct {
191 unsigned long min;
192 unsigned long max;
193 } *uV;
194
Viresh Kumarcdd3e612017-01-23 10:11:51 +0530195 opp_table = _find_opp_table(dev);
196 if (IS_ERR(opp_table))
197 return 0;
198
Viresh Kumardfbe4672016-12-01 16:28:19 +0530199 /* Regulator may not be required for the device */
Viresh Kumar90e35772018-12-11 16:32:47 +0530200 if (!opp_table->regulators)
Viresh Kumarcdd3e612017-01-23 10:11:51 +0530201 goto put_opp_table;
Viresh Kumardfbe4672016-12-01 16:28:19 +0530202
Viresh Kumar90e35772018-12-11 16:32:47 +0530203 count = opp_table->regulator_count;
204
Viresh Kumardfbe4672016-12-01 16:28:19 +0530205 uV = kmalloc_array(count, sizeof(*uV), GFP_KERNEL);
206 if (!uV)
Viresh Kumar478256b2017-05-23 09:32:11 +0530207 goto put_opp_table;
Viresh Kumar655c9df2016-02-09 10:30:35 +0530208
Viresh Kumar052c6f12017-01-23 10:11:49 +0530209 mutex_lock(&opp_table->lock);
210
Viresh Kumardfbe4672016-12-01 16:28:19 +0530211 for (i = 0; i < count; i++) {
212 uV[i].min = ~0;
213 uV[i].max = 0;
Viresh Kumar655c9df2016-02-09 10:30:35 +0530214
Viresh Kumar052c6f12017-01-23 10:11:49 +0530215 list_for_each_entry(opp, &opp_table->opp_list, node) {
Viresh Kumardfbe4672016-12-01 16:28:19 +0530216 if (!opp->available)
217 continue;
218
219 if (opp->supplies[i].u_volt_min < uV[i].min)
220 uV[i].min = opp->supplies[i].u_volt_min;
221 if (opp->supplies[i].u_volt_max > uV[i].max)
222 uV[i].max = opp->supplies[i].u_volt_max;
223 }
Viresh Kumar655c9df2016-02-09 10:30:35 +0530224 }
225
Viresh Kumar052c6f12017-01-23 10:11:49 +0530226 mutex_unlock(&opp_table->lock);
Viresh Kumar655c9df2016-02-09 10:30:35 +0530227
228 /*
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530229 * The caller needs to ensure that opp_table (and hence the regulator)
Viresh Kumar655c9df2016-02-09 10:30:35 +0530230 * isn't freed, while we are executing this routine.
231 */
Andrzej Hajda8cc31112017-02-20 19:57:57 +0100232 for (i = 0; i < count; i++) {
Viresh Kumar478256b2017-05-23 09:32:11 +0530233 reg = opp_table->regulators[i];
Viresh Kumardfbe4672016-12-01 16:28:19 +0530234 ret = regulator_set_voltage_time(reg, uV[i].min, uV[i].max);
235 if (ret > 0)
236 latency_ns += ret * 1000;
237 }
238
Viresh Kumardfbe4672016-12-01 16:28:19 +0530239 kfree(uV);
Viresh Kumarcdd3e612017-01-23 10:11:51 +0530240put_opp_table:
241 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar655c9df2016-02-09 10:30:35 +0530242
243 return latency_ns;
244}
245EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_volt_latency);
246
247/**
Viresh Kumar21743442016-02-09 10:30:36 +0530248 * dev_pm_opp_get_max_transition_latency() - Get max transition latency in
249 * nanoseconds
250 * @dev: device for which we do this operation
251 *
252 * Return: This function returns the max transition latency, in nanoseconds, to
253 * switch from one OPP to other.
Viresh Kumar21743442016-02-09 10:30:36 +0530254 */
255unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev)
256{
257 return dev_pm_opp_get_max_volt_latency(dev) +
258 dev_pm_opp_get_max_clock_latency(dev);
259}
260EXPORT_SYMBOL_GPL(dev_pm_opp_get_max_transition_latency);
261
262/**
Viresh Kumar3aa26a32017-01-02 14:41:02 +0530263 * dev_pm_opp_get_suspend_opp_freq() - Get frequency of suspend opp in Hz
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200264 * @dev: device for which we do this operation
265 *
Viresh Kumar3aa26a32017-01-02 14:41:02 +0530266 * Return: This function returns the frequency of the OPP marked as suspend_opp
267 * if one is available, else returns 0;
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200268 */
Viresh Kumar3aa26a32017-01-02 14:41:02 +0530269unsigned long dev_pm_opp_get_suspend_opp_freq(struct device *dev)
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200270{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530271 struct opp_table *opp_table;
Viresh Kumar3aa26a32017-01-02 14:41:02 +0530272 unsigned long freq = 0;
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200273
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530274 opp_table = _find_opp_table(dev);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530275 if (IS_ERR(opp_table))
276 return 0;
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200277
Viresh Kumar5b650b32017-01-23 10:11:48 +0530278 if (opp_table->suspend_opp && opp_table->suspend_opp->available)
279 freq = dev_pm_opp_get_freq(opp_table->suspend_opp);
Viresh Kumar3aa26a32017-01-02 14:41:02 +0530280
Viresh Kumar5b650b32017-01-23 10:11:48 +0530281 dev_pm_opp_put_opp_table(opp_table);
282
Viresh Kumar3aa26a32017-01-02 14:41:02 +0530283 return freq;
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200284}
Viresh Kumar3aa26a32017-01-02 14:41:02 +0530285EXPORT_SYMBOL_GPL(dev_pm_opp_get_suspend_opp_freq);
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200286
Viresh Kumara1e8c132018-04-06 14:35:45 +0530287int _get_opp_count(struct opp_table *opp_table)
288{
289 struct dev_pm_opp *opp;
290 int count = 0;
291
292 mutex_lock(&opp_table->lock);
293
294 list_for_each_entry(opp, &opp_table->opp_list, node) {
295 if (opp->available)
296 count++;
297 }
298
299 mutex_unlock(&opp_table->lock);
300
301 return count;
302}
303
Bartlomiej Zolnierkiewicz4eafbd12015-09-08 18:41:01 +0200304/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530305 * dev_pm_opp_get_opp_count() - Get number of opps available in the opp table
Nishanth Menone1f60b22010-10-13 00:13:10 +0200306 * @dev: device for which we do this operation
307 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600308 * Return: This function returns the number of available opps if there are any,
Nishanth Menone1f60b22010-10-13 00:13:10 +0200309 * else returns 0 if none or the corresponding error value.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200310 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500311int dev_pm_opp_get_opp_count(struct device *dev)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200312{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530313 struct opp_table *opp_table;
Viresh Kumara1e8c132018-04-06 14:35:45 +0530314 int count;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200315
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530316 opp_table = _find_opp_table(dev);
317 if (IS_ERR(opp_table)) {
318 count = PTR_ERR(opp_table);
Fabio Estevam035ed072017-09-29 14:39:49 -0300319 dev_dbg(dev, "%s: OPP table not found (%d)\n",
Dmitry Torokhovb4718c02014-12-16 15:09:38 -0800320 __func__, count);
Viresh Kumar09f662f2018-10-03 15:22:03 +0530321 return count;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200322 }
323
Viresh Kumara1e8c132018-04-06 14:35:45 +0530324 count = _get_opp_count(opp_table);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530325 dev_pm_opp_put_opp_table(opp_table);
326
Nishanth Menone1f60b22010-10-13 00:13:10 +0200327 return count;
328}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500329EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200330
331/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500332 * dev_pm_opp_find_freq_exact() - search for an exact frequency
Nishanth Menone1f60b22010-10-13 00:13:10 +0200333 * @dev: device for which we do this operation
334 * @freq: frequency to search for
Nishanth Menon7ae49612011-02-25 23:46:18 +0100335 * @available: true/false - match for available opp
Nishanth Menone1f60b22010-10-13 00:13:10 +0200336 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530337 * Return: Searches for exact match in the opp table and returns pointer to the
Nishanth Menon984f16c2014-12-24 11:22:57 -0600338 * matching opp if found, else returns ERR_PTR in case of error and should
339 * be handled using IS_ERR. Error return values can be:
Nishanth Menon07797262012-10-24 22:00:12 +0200340 * EINVAL: for bad pointer
341 * ERANGE: no match found for search
342 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200343 *
344 * Note: available is a modifier for the search. if available=true, then the
345 * match is for exact matching frequency and is available in the stored OPP
346 * table. if false, the match is for exact frequency which is not available.
347 *
348 * This provides a mechanism to enable an opp which is not available currently
349 * or the opposite as well.
350 *
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530351 * The callers are required to call dev_pm_opp_put() for the returned OPP after
352 * use.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200353 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500354struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
355 unsigned long freq,
356 bool available)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200357{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530358 struct opp_table *opp_table;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500359 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200360
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530361 opp_table = _find_opp_table(dev);
362 if (IS_ERR(opp_table)) {
363 int r = PTR_ERR(opp_table);
364
365 dev_err(dev, "%s: OPP table not found (%d)\n", __func__, r);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200366 return ERR_PTR(r);
367 }
368
Viresh Kumar052c6f12017-01-23 10:11:49 +0530369 mutex_lock(&opp_table->lock);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530370
Viresh Kumar052c6f12017-01-23 10:11:49 +0530371 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200372 if (temp_opp->available == available &&
373 temp_opp->rate == freq) {
374 opp = temp_opp;
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530375
376 /* Increment the reference count of OPP */
377 dev_pm_opp_get(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200378 break;
379 }
380 }
381
Viresh Kumar052c6f12017-01-23 10:11:49 +0530382 mutex_unlock(&opp_table->lock);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530383 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530384
Nishanth Menone1f60b22010-10-13 00:13:10 +0200385 return opp;
386}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500387EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200388
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800389static noinline struct dev_pm_opp *_find_freq_ceil(struct opp_table *opp_table,
390 unsigned long *freq)
391{
392 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
393
Viresh Kumar052c6f12017-01-23 10:11:49 +0530394 mutex_lock(&opp_table->lock);
395
396 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800397 if (temp_opp->available && temp_opp->rate >= *freq) {
398 opp = temp_opp;
399 *freq = opp->rate;
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530400
401 /* Increment the reference count of OPP */
402 dev_pm_opp_get(opp);
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800403 break;
404 }
405 }
406
Viresh Kumar052c6f12017-01-23 10:11:49 +0530407 mutex_unlock(&opp_table->lock);
408
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800409 return opp;
410}
411
Nishanth Menone1f60b22010-10-13 00:13:10 +0200412/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500413 * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
Nishanth Menone1f60b22010-10-13 00:13:10 +0200414 * @dev: device for which we do this operation
415 * @freq: Start frequency
416 *
417 * Search for the matching ceil *available* OPP from a starting freq
418 * for a device.
419 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600420 * Return: matching *opp and refreshes *freq accordingly, else returns
Nishanth Menon07797262012-10-24 22:00:12 +0200421 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
422 * values can be:
423 * EINVAL: for bad pointer
424 * ERANGE: no match found for search
425 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200426 *
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530427 * The callers are required to call dev_pm_opp_put() for the returned OPP after
428 * use.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200429 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500430struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
431 unsigned long *freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200432{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530433 struct opp_table *opp_table;
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530434 struct dev_pm_opp *opp;
Dmitry Torokhovb02ded22014-12-16 15:09:36 -0800435
Nishanth Menone1f60b22010-10-13 00:13:10 +0200436 if (!dev || !freq) {
437 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
438 return ERR_PTR(-EINVAL);
439 }
440
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530441 opp_table = _find_opp_table(dev);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530442 if (IS_ERR(opp_table))
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530443 return ERR_CAST(opp_table);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530444
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530445 opp = _find_freq_ceil(opp_table, freq);
446
Viresh Kumar5b650b32017-01-23 10:11:48 +0530447 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530448
449 return opp;
Nishanth Menone1f60b22010-10-13 00:13:10 +0200450}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500451EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200452
453/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500454 * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
Nishanth Menone1f60b22010-10-13 00:13:10 +0200455 * @dev: device for which we do this operation
456 * @freq: Start frequency
457 *
458 * Search for the matching floor *available* OPP from a starting freq
459 * for a device.
460 *
Nishanth Menon984f16c2014-12-24 11:22:57 -0600461 * Return: matching *opp and refreshes *freq accordingly, else returns
Nishanth Menon07797262012-10-24 22:00:12 +0200462 * ERR_PTR in case of error and should be handled using IS_ERR. Error return
463 * values can be:
464 * EINVAL: for bad pointer
465 * ERANGE: no match found for search
466 * ENODEV: if device not found in list of registered devices
Nishanth Menone1f60b22010-10-13 00:13:10 +0200467 *
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530468 * The callers are required to call dev_pm_opp_put() for the returned OPP after
469 * use.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200470 */
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500471struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
472 unsigned long *freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200473{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530474 struct opp_table *opp_table;
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500475 struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200476
477 if (!dev || !freq) {
478 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
479 return ERR_PTR(-EINVAL);
480 }
481
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530482 opp_table = _find_opp_table(dev);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530483 if (IS_ERR(opp_table))
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530484 return ERR_CAST(opp_table);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530485
Viresh Kumar052c6f12017-01-23 10:11:49 +0530486 mutex_lock(&opp_table->lock);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200487
Viresh Kumar052c6f12017-01-23 10:11:49 +0530488 list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200489 if (temp_opp->available) {
490 /* go to the next node, before choosing prev */
491 if (temp_opp->rate > *freq)
492 break;
493 else
494 opp = temp_opp;
495 }
496 }
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530497
498 /* Increment the reference count of OPP */
499 if (!IS_ERR(opp))
500 dev_pm_opp_get(opp);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530501 mutex_unlock(&opp_table->lock);
Viresh Kumar5b650b32017-01-23 10:11:48 +0530502 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530503
Nishanth Menone1f60b22010-10-13 00:13:10 +0200504 if (!IS_ERR(opp))
505 *freq = opp->rate;
506
507 return opp;
508}
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500509EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200510
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530511static int _set_opp_voltage(struct device *dev, struct regulator *reg,
Viresh Kumarce317812016-12-01 16:28:18 +0530512 struct dev_pm_opp_supply *supply)
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530513{
514 int ret;
515
516 /* Regulator not available for device */
517 if (IS_ERR(reg)) {
518 dev_dbg(dev, "%s: regulator not available: %ld\n", __func__,
519 PTR_ERR(reg));
520 return 0;
521 }
522
Viresh Kumarce317812016-12-01 16:28:18 +0530523 dev_dbg(dev, "%s: voltages (mV): %lu %lu %lu\n", __func__,
524 supply->u_volt_min, supply->u_volt, supply->u_volt_max);
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530525
Viresh Kumarce317812016-12-01 16:28:18 +0530526 ret = regulator_set_voltage_triplet(reg, supply->u_volt_min,
527 supply->u_volt, supply->u_volt_max);
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530528 if (ret)
529 dev_err(dev, "%s: failed to set voltage (%lu %lu %lu mV): %d\n",
Viresh Kumarce317812016-12-01 16:28:18 +0530530 __func__, supply->u_volt_min, supply->u_volt,
531 supply->u_volt_max, ret);
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530532
533 return ret;
534}
535
Viresh Kumar94735582016-12-01 16:28:20 +0530536static inline int
537_generic_set_opp_clk_only(struct device *dev, struct clk *clk,
538 unsigned long old_freq, unsigned long freq)
539{
540 int ret;
541
542 ret = clk_set_rate(clk, freq);
543 if (ret) {
544 dev_err(dev, "%s: failed to set clock rate: %d\n", __func__,
545 ret);
546 }
547
548 return ret;
549}
550
Viresh Kumarc74b32f2017-05-23 09:32:10 +0530551static int _generic_set_opp_regulator(const struct opp_table *opp_table,
552 struct device *dev,
553 unsigned long old_freq,
554 unsigned long freq,
555 struct dev_pm_opp_supply *old_supply,
556 struct dev_pm_opp_supply *new_supply)
Viresh Kumar94735582016-12-01 16:28:20 +0530557{
Viresh Kumarc74b32f2017-05-23 09:32:10 +0530558 struct regulator *reg = opp_table->regulators[0];
Viresh Kumar94735582016-12-01 16:28:20 +0530559 int ret;
560
561 /* This function only supports single regulator per device */
Viresh Kumarc74b32f2017-05-23 09:32:10 +0530562 if (WARN_ON(opp_table->regulator_count > 1)) {
Viresh Kumar94735582016-12-01 16:28:20 +0530563 dev_err(dev, "multiple regulators are not supported\n");
564 return -EINVAL;
565 }
566
567 /* Scaling up? Scale voltage before frequency */
Waldemar Rymarkiewiczc5c2a972018-06-14 15:56:08 +0200568 if (freq >= old_freq) {
Viresh Kumar94735582016-12-01 16:28:20 +0530569 ret = _set_opp_voltage(dev, reg, new_supply);
570 if (ret)
571 goto restore_voltage;
572 }
573
574 /* Change frequency */
Viresh Kumarc74b32f2017-05-23 09:32:10 +0530575 ret = _generic_set_opp_clk_only(dev, opp_table->clk, old_freq, freq);
Viresh Kumar94735582016-12-01 16:28:20 +0530576 if (ret)
577 goto restore_voltage;
578
579 /* Scaling down? Scale voltage after frequency */
580 if (freq < old_freq) {
581 ret = _set_opp_voltage(dev, reg, new_supply);
582 if (ret)
583 goto restore_freq;
584 }
585
586 return 0;
587
588restore_freq:
Viresh Kumarc74b32f2017-05-23 09:32:10 +0530589 if (_generic_set_opp_clk_only(dev, opp_table->clk, freq, old_freq))
Viresh Kumar94735582016-12-01 16:28:20 +0530590 dev_err(dev, "%s: failed to restore old-freq (%lu Hz)\n",
591 __func__, old_freq);
592restore_voltage:
593 /* This shouldn't harm even if the voltages weren't updated earlier */
Viresh Kumarc74b32f2017-05-23 09:32:10 +0530594 if (old_supply)
Viresh Kumar94735582016-12-01 16:28:20 +0530595 _set_opp_voltage(dev, reg, old_supply);
596
597 return ret;
598}
599
Viresh Kumar7e5359932018-06-12 14:47:03 +0530600static int _set_opp_custom(const struct opp_table *opp_table,
601 struct device *dev, unsigned long old_freq,
602 unsigned long freq,
603 struct dev_pm_opp_supply *old_supply,
604 struct dev_pm_opp_supply *new_supply)
605{
606 struct dev_pm_set_opp_data *data;
607 int size;
608
609 data = opp_table->set_opp_data;
610 data->regulators = opp_table->regulators;
611 data->regulator_count = opp_table->regulator_count;
612 data->clk = opp_table->clk;
613 data->dev = dev;
614
615 data->old_opp.rate = old_freq;
616 size = sizeof(*old_supply) * opp_table->regulator_count;
617 if (IS_ERR(old_supply))
618 memset(data->old_opp.supplies, 0, size);
619 else
620 memcpy(data->old_opp.supplies, old_supply, size);
621
622 data->new_opp.rate = freq;
623 memcpy(data->new_opp.supplies, new_supply, size);
624
625 return opp_table->set_opp(data);
626}
627
Viresh Kumarca1b5d72018-06-14 10:03:26 +0530628/* This is only called for PM domain for now */
629static int _set_required_opps(struct device *dev,
630 struct opp_table *opp_table,
631 struct dev_pm_opp *opp)
632{
633 struct opp_table **required_opp_tables = opp_table->required_opp_tables;
634 struct device **genpd_virt_devs = opp_table->genpd_virt_devs;
635 unsigned int pstate;
636 int i, ret = 0;
637
638 if (!required_opp_tables)
639 return 0;
640
641 /* Single genpd case */
642 if (!genpd_virt_devs) {
643 pstate = opp->required_opps[0]->pstate;
644 ret = dev_pm_genpd_set_performance_state(dev, pstate);
645 if (ret) {
646 dev_err(dev, "Failed to set performance state of %s: %d (%d)\n",
647 dev_name(dev), pstate, ret);
648 }
649 return ret;
650 }
651
652 /* Multiple genpd case */
653
654 /*
655 * Acquire genpd_virt_dev_lock to make sure we don't use a genpd_dev
656 * after it is freed from another thread.
657 */
658 mutex_lock(&opp_table->genpd_virt_dev_lock);
659
660 for (i = 0; i < opp_table->required_opp_count; i++) {
661 pstate = opp->required_opps[i]->pstate;
662
663 if (!genpd_virt_devs[i])
664 continue;
665
666 ret = dev_pm_genpd_set_performance_state(genpd_virt_devs[i], pstate);
667 if (ret) {
668 dev_err(dev, "Failed to set performance rate of %s: %d (%d)\n",
669 dev_name(genpd_virt_devs[i]), pstate, ret);
670 break;
671 }
672 }
673 mutex_unlock(&opp_table->genpd_virt_dev_lock);
674
675 return ret;
676}
677
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530678/**
679 * dev_pm_opp_set_rate() - Configure new OPP based on frequency
680 * @dev: device for which we do this operation
681 * @target_freq: frequency to achieve
682 *
683 * This configures the power-supplies and clock source to the levels specified
684 * by the OPP corresponding to the target_freq.
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530685 */
686int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq)
687{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530688 struct opp_table *opp_table;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530689 unsigned long freq, old_freq;
Viresh Kumar94735582016-12-01 16:28:20 +0530690 struct dev_pm_opp *old_opp, *opp;
Viresh Kumar94735582016-12-01 16:28:20 +0530691 struct clk *clk;
Viresh Kumar7e5359932018-06-12 14:47:03 +0530692 int ret;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530693
694 if (unlikely(!target_freq)) {
695 dev_err(dev, "%s: Invalid target frequency %lu\n", __func__,
696 target_freq);
697 return -EINVAL;
698 }
699
Viresh Kumar052c6f12017-01-23 10:11:49 +0530700 opp_table = _find_opp_table(dev);
701 if (IS_ERR(opp_table)) {
702 dev_err(dev, "%s: device opp doesn't exist\n", __func__);
703 return PTR_ERR(opp_table);
704 }
705
706 clk = opp_table->clk;
707 if (IS_ERR(clk)) {
708 dev_err(dev, "%s: No clock available for the device\n",
709 __func__);
710 ret = PTR_ERR(clk);
711 goto put_opp_table;
712 }
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530713
714 freq = clk_round_rate(clk, target_freq);
715 if ((long)freq <= 0)
716 freq = target_freq;
717
718 old_freq = clk_get_rate(clk);
719
720 /* Return early if nothing to do */
721 if (old_freq == freq) {
722 dev_dbg(dev, "%s: old/new frequencies (%lu Hz) are same, nothing to do\n",
723 __func__, freq);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530724 ret = 0;
725 goto put_opp_table;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530726 }
727
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800728 old_opp = _find_freq_ceil(opp_table, &old_freq);
Arnd Bergmann4df27c92016-09-15 17:38:38 +0200729 if (IS_ERR(old_opp)) {
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530730 dev_err(dev, "%s: failed to find current OPP for freq %lu (%ld)\n",
731 __func__, old_freq, PTR_ERR(old_opp));
732 }
733
Jisheng Zhang067b7ce2016-07-25 14:11:16 +0800734 opp = _find_freq_ceil(opp_table, &freq);
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530735 if (IS_ERR(opp)) {
736 ret = PTR_ERR(opp);
737 dev_err(dev, "%s: failed to find OPP for freq %lu (%d)\n",
738 __func__, freq, ret);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530739 goto put_old_opp;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530740 }
741
Viresh Kumar94735582016-12-01 16:28:20 +0530742 dev_dbg(dev, "%s: switching OPP: %lu Hz --> %lu Hz\n", __func__,
743 old_freq, freq);
Viresh Kumardfbe4672016-12-01 16:28:19 +0530744
Viresh Kumarca1b5d72018-06-14 10:03:26 +0530745 /* Scaling up? Configure required OPPs before frequency */
746 if (freq > old_freq) {
747 ret = _set_required_opps(dev, opp_table, opp);
748 if (ret)
749 goto put_opp;
750 }
751
Viresh Kumar7e5359932018-06-12 14:47:03 +0530752 if (opp_table->set_opp) {
753 ret = _set_opp_custom(opp_table, dev, old_freq, freq,
754 IS_ERR(old_opp) ? NULL : old_opp->supplies,
755 opp->supplies);
756 } else if (opp_table->regulators) {
Viresh Kumarc74b32f2017-05-23 09:32:10 +0530757 ret = _generic_set_opp_regulator(opp_table, dev, old_freq, freq,
758 IS_ERR(old_opp) ? NULL : old_opp->supplies,
759 opp->supplies);
760 } else {
Viresh Kumar7e5359932018-06-12 14:47:03 +0530761 /* Only frequency scaling */
Viresh Kumarca1b5d72018-06-14 10:03:26 +0530762 ret = _generic_set_opp_clk_only(dev, clk, old_freq, freq);
Viresh Kumardfbe4672016-12-01 16:28:19 +0530763 }
764
Viresh Kumarca1b5d72018-06-14 10:03:26 +0530765 /* Scaling down? Configure required OPPs after frequency */
766 if (!ret && freq < old_freq) {
767 ret = _set_required_opps(dev, opp_table, opp);
768 if (ret)
769 dev_err(dev, "Failed to set required opps: %d\n", ret);
770 }
771
772put_opp:
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530773 dev_pm_opp_put(opp);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530774put_old_opp:
Viresh Kumar8a31d9d92017-01-23 10:11:47 +0530775 if (!IS_ERR(old_opp))
776 dev_pm_opp_put(old_opp);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530777put_opp_table:
Viresh Kumar5b650b32017-01-23 10:11:48 +0530778 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530779 return ret;
Viresh Kumar6a0712f2016-02-09 10:30:39 +0530780}
781EXPORT_SYMBOL_GPL(dev_pm_opp_set_rate);
782
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530783/* OPP-dev Helpers */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530784static void _remove_opp_dev(struct opp_device *opp_dev,
785 struct opp_table *opp_table)
Viresh Kumar06441652015-07-29 16:23:04 +0530786{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530787 opp_debug_unregister(opp_dev, opp_table);
788 list_del(&opp_dev->node);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530789 kfree(opp_dev);
Viresh Kumar06441652015-07-29 16:23:04 +0530790}
791
Viresh Kumar283d55e2018-09-07 09:01:54 +0530792static struct opp_device *_add_opp_dev_unlocked(const struct device *dev,
793 struct opp_table *opp_table)
Viresh Kumar06441652015-07-29 16:23:04 +0530794{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530795 struct opp_device *opp_dev;
Viresh Kumardeaa5142015-11-11 07:59:01 +0530796 int ret;
Viresh Kumar06441652015-07-29 16:23:04 +0530797
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530798 opp_dev = kzalloc(sizeof(*opp_dev), GFP_KERNEL);
799 if (!opp_dev)
Viresh Kumar06441652015-07-29 16:23:04 +0530800 return NULL;
801
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530802 /* Initialize opp-dev */
803 opp_dev->dev = dev;
Viresh Kumar3d255692018-08-03 07:05:21 +0530804
Viresh Kumar052c6f12017-01-23 10:11:49 +0530805 list_add(&opp_dev->node, &opp_table->dev_list);
Viresh Kumar06441652015-07-29 16:23:04 +0530806
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530807 /* Create debugfs entries for the opp_table */
808 ret = opp_debug_register(opp_dev, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530809 if (ret)
810 dev_err(dev, "%s: Failed to register opp debugfs (%d)\n",
811 __func__, ret);
Viresh Kumar283d55e2018-09-07 09:01:54 +0530812
813 return opp_dev;
814}
815
816struct opp_device *_add_opp_dev(const struct device *dev,
817 struct opp_table *opp_table)
818{
819 struct opp_device *opp_dev;
820
821 mutex_lock(&opp_table->lock);
822 opp_dev = _add_opp_dev_unlocked(dev, opp_table);
Viresh Kumar3d255692018-08-03 07:05:21 +0530823 mutex_unlock(&opp_table->lock);
Viresh Kumardeaa5142015-11-11 07:59:01 +0530824
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530825 return opp_dev;
Viresh Kumar06441652015-07-29 16:23:04 +0530826}
827
Viresh Kumareb7c87432018-09-05 16:17:14 +0530828static struct opp_table *_allocate_opp_table(struct device *dev, int index)
Viresh Kumar07cce742014-12-10 09:45:34 +0530829{
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530830 struct opp_table *opp_table;
831 struct opp_device *opp_dev;
Viresh Kumard54974c2016-02-09 10:30:38 +0530832 int ret;
Viresh Kumar07cce742014-12-10 09:45:34 +0530833
834 /*
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530835 * Allocate a new OPP table. In the infrequent case where a new
Viresh Kumar07cce742014-12-10 09:45:34 +0530836 * device is needed to be added, we pay this penalty.
837 */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530838 opp_table = kzalloc(sizeof(*opp_table), GFP_KERNEL);
839 if (!opp_table)
Viresh Kumar07cce742014-12-10 09:45:34 +0530840 return NULL;
841
Viresh Kumar3d255692018-08-03 07:05:21 +0530842 mutex_init(&opp_table->lock);
Viresh Kumar4f018bc2018-06-26 16:29:34 +0530843 mutex_init(&opp_table->genpd_virt_dev_lock);
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530844 INIT_LIST_HEAD(&opp_table->dev_list);
Viresh Kumar06441652015-07-29 16:23:04 +0530845
Viresh Kumar46f48ac2018-12-11 16:39:36 +0530846 /* Mark regulator count uninitialized */
847 opp_table->regulator_count = -1;
848
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530849 opp_dev = _add_opp_dev(dev, opp_table);
850 if (!opp_dev) {
851 kfree(opp_table);
Viresh Kumar06441652015-07-29 16:23:04 +0530852 return NULL;
853 }
854
Viresh Kumareb7c87432018-09-05 16:17:14 +0530855 _of_init_opp_table(opp_table, dev, index);
Viresh Kumar50f8cfb2016-02-09 10:30:37 +0530856
Viresh Kumard54974c2016-02-09 10:30:38 +0530857 /* Find clk for the device */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530858 opp_table->clk = clk_get(dev, NULL);
859 if (IS_ERR(opp_table->clk)) {
860 ret = PTR_ERR(opp_table->clk);
Viresh Kumard54974c2016-02-09 10:30:38 +0530861 if (ret != -EPROBE_DEFER)
862 dev_dbg(dev, "%s: Couldn't find clock: %d\n", __func__,
863 ret);
864 }
865
Viresh Kumar052c6f12017-01-23 10:11:49 +0530866 BLOCKING_INIT_NOTIFIER_HEAD(&opp_table->head);
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530867 INIT_LIST_HEAD(&opp_table->opp_list);
Viresh Kumarf067a982017-01-23 10:11:42 +0530868 kref_init(&opp_table->kref);
Viresh Kumar07cce742014-12-10 09:45:34 +0530869
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530870 /* Secure the device table modification */
Viresh Kumar052c6f12017-01-23 10:11:49 +0530871 list_add(&opp_table->node, &opp_tables);
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530872 return opp_table;
Viresh Kumar07cce742014-12-10 09:45:34 +0530873}
874
Viresh Kumarf067a982017-01-23 10:11:42 +0530875void _get_opp_table_kref(struct opp_table *opp_table)
Viresh Kumar3bac42c2015-07-29 16:22:59 +0530876{
Viresh Kumarf067a982017-01-23 10:11:42 +0530877 kref_get(&opp_table->kref);
878}
879
Viresh Kumareb7c87432018-09-05 16:17:14 +0530880static struct opp_table *_opp_get_opp_table(struct device *dev, int index)
Viresh Kumarf067a982017-01-23 10:11:42 +0530881{
882 struct opp_table *opp_table;
883
884 /* Hold our table modification lock here */
885 mutex_lock(&opp_table_lock);
886
Viresh Kumar5b650b32017-01-23 10:11:48 +0530887 opp_table = _find_opp_table_unlocked(dev);
888 if (!IS_ERR(opp_table))
Viresh Kumarf067a982017-01-23 10:11:42 +0530889 goto unlock;
Viresh Kumarf067a982017-01-23 10:11:42 +0530890
Viresh Kumar283d55e2018-09-07 09:01:54 +0530891 opp_table = _managed_opp(dev, index);
892 if (opp_table) {
893 if (!_add_opp_dev_unlocked(dev, opp_table)) {
894 dev_pm_opp_put_opp_table(opp_table);
895 opp_table = NULL;
896 }
897 goto unlock;
898 }
899
Viresh Kumareb7c87432018-09-05 16:17:14 +0530900 opp_table = _allocate_opp_table(dev, index);
Viresh Kumarf067a982017-01-23 10:11:42 +0530901
902unlock:
903 mutex_unlock(&opp_table_lock);
904
905 return opp_table;
906}
Viresh Kumareb7c87432018-09-05 16:17:14 +0530907
908struct opp_table *dev_pm_opp_get_opp_table(struct device *dev)
909{
910 return _opp_get_opp_table(dev, 0);
911}
Viresh Kumarf067a982017-01-23 10:11:42 +0530912EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_table);
913
Viresh Kumareb7c87432018-09-05 16:17:14 +0530914struct opp_table *dev_pm_opp_get_opp_table_indexed(struct device *dev,
915 int index)
916{
917 return _opp_get_opp_table(dev, index);
918}
919
Viresh Kumarb83c1892017-01-23 10:11:45 +0530920static void _opp_table_kref_release(struct kref *kref)
Viresh Kumarf067a982017-01-23 10:11:42 +0530921{
922 struct opp_table *opp_table = container_of(kref, struct opp_table, kref);
Viresh Kumarcdd6ed92018-09-12 12:35:19 +0530923 struct opp_device *opp_dev, *temp;
Viresh Kumar06441652015-07-29 16:23:04 +0530924
Viresh Kumar5d6d1062018-06-07 14:50:43 +0530925 _of_clear_opp_table(opp_table);
926
Viresh Kumard54974c2016-02-09 10:30:38 +0530927 /* Release clk */
Viresh Kumar2c2709d2016-02-16 14:17:53 +0530928 if (!IS_ERR(opp_table->clk))
929 clk_put(opp_table->clk);
Viresh Kumard54974c2016-02-09 10:30:38 +0530930
Viresh Kumarcdd6ed92018-09-12 12:35:19 +0530931 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar06441652015-07-29 16:23:04 +0530932
Viresh Kumarcdd6ed92018-09-12 12:35:19 +0530933 list_for_each_entry_safe(opp_dev, temp, &opp_table->dev_list, node) {
934 /*
935 * The OPP table is getting removed, drop the performance state
936 * constraints.
937 */
938 if (opp_table->genpd_performance_state)
939 dev_pm_genpd_set_performance_state((struct device *)(opp_dev->dev), 0);
Viresh Kumar06441652015-07-29 16:23:04 +0530940
Viresh Kumarcdd6ed92018-09-12 12:35:19 +0530941 _remove_opp_dev(opp_dev, opp_table);
942 }
Viresh Kumar06441652015-07-29 16:23:04 +0530943
Viresh Kumar4f018bc2018-06-26 16:29:34 +0530944 mutex_destroy(&opp_table->genpd_virt_dev_lock);
Viresh Kumar37a73ec2017-01-23 10:11:41 +0530945 mutex_destroy(&opp_table->lock);
Viresh Kumar052c6f12017-01-23 10:11:49 +0530946 list_del(&opp_table->node);
947 kfree(opp_table);
Viresh Kumar3bac42c2015-07-29 16:22:59 +0530948
Viresh Kumarf067a982017-01-23 10:11:42 +0530949 mutex_unlock(&opp_table_lock);
950}
951
Viresh Kumard0e8ae62018-09-11 11:14:11 +0530952void _opp_remove_all_static(struct opp_table *opp_table)
953{
954 struct dev_pm_opp *opp, *tmp;
955
956 list_for_each_entry_safe(opp, tmp, &opp_table->opp_list, node) {
957 if (!opp->dynamic)
958 dev_pm_opp_put(opp);
959 }
960
961 opp_table->parsed_static_opps = false;
962}
963
964static void _opp_table_list_kref_release(struct kref *kref)
965{
966 struct opp_table *opp_table = container_of(kref, struct opp_table,
967 list_kref);
968
969 _opp_remove_all_static(opp_table);
970 mutex_unlock(&opp_table_lock);
971}
972
973void _put_opp_list_kref(struct opp_table *opp_table)
974{
975 kref_put_mutex(&opp_table->list_kref, _opp_table_list_kref_release,
976 &opp_table_lock);
977}
978
Viresh Kumarf067a982017-01-23 10:11:42 +0530979void dev_pm_opp_put_opp_table(struct opp_table *opp_table)
980{
981 kref_put_mutex(&opp_table->kref, _opp_table_kref_release,
982 &opp_table_lock);
983}
984EXPORT_SYMBOL_GPL(dev_pm_opp_put_opp_table);
985
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +0530986void _opp_free(struct dev_pm_opp *opp)
Viresh Kumar969fceb2017-01-02 14:40:59 +0530987{
988 kfree(opp);
Viresh Kumar969fceb2017-01-02 14:40:59 +0530989}
990
Viresh Kumar1690d8b2019-01-04 15:14:33 +0530991static void _opp_kref_release(struct dev_pm_opp *opp,
992 struct opp_table *opp_table)
Viresh Kumar129eec52014-11-27 08:54:06 +0530993{
994 /*
995 * Notify the changes in the availability of the operable
996 * frequency/voltage list.
997 */
Viresh Kumar052c6f12017-01-23 10:11:49 +0530998 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_REMOVE, opp);
Viresh Kumarda544b62018-06-07 14:50:43 +0530999 _of_opp_free_required_opps(opp_table, opp);
Viresh Kumardeaa5142015-11-11 07:59:01 +05301000 opp_debug_remove_one(opp);
Viresh Kumar052c6f12017-01-23 10:11:49 +05301001 list_del(&opp->node);
1002 kfree(opp);
Viresh Kumar1690d8b2019-01-04 15:14:33 +05301003}
Viresh Kumar129eec52014-11-27 08:54:06 +05301004
Viresh Kumar1690d8b2019-01-04 15:14:33 +05301005static void _opp_kref_release_unlocked(struct kref *kref)
1006{
1007 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
1008 struct opp_table *opp_table = opp->opp_table;
1009
1010 _opp_kref_release(opp, opp_table);
1011}
1012
1013static void _opp_kref_release_locked(struct kref *kref)
1014{
1015 struct dev_pm_opp *opp = container_of(kref, struct dev_pm_opp, kref);
1016 struct opp_table *opp_table = opp->opp_table;
1017
1018 _opp_kref_release(opp, opp_table);
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301019 mutex_unlock(&opp_table->lock);
Viresh Kumar129eec52014-11-27 08:54:06 +05301020}
1021
Viresh Kumara88bd2a2017-11-29 15:18:36 +05301022void dev_pm_opp_get(struct dev_pm_opp *opp)
Viresh Kumar8a31d9d92017-01-23 10:11:47 +05301023{
1024 kref_get(&opp->kref);
1025}
1026
Viresh Kumar70347642017-01-23 10:11:46 +05301027void dev_pm_opp_put(struct dev_pm_opp *opp)
1028{
Viresh Kumar1690d8b2019-01-04 15:14:33 +05301029 kref_put_mutex(&opp->kref, _opp_kref_release_locked,
1030 &opp->opp_table->lock);
Viresh Kumar70347642017-01-23 10:11:46 +05301031}
1032EXPORT_SYMBOL_GPL(dev_pm_opp_put);
1033
Viresh Kumar1690d8b2019-01-04 15:14:33 +05301034static void dev_pm_opp_put_unlocked(struct dev_pm_opp *opp)
1035{
1036 kref_put(&opp->kref, _opp_kref_release_unlocked);
1037}
1038
Viresh Kumar129eec52014-11-27 08:54:06 +05301039/**
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301040 * dev_pm_opp_remove() - Remove an OPP from OPP table
Viresh Kumar129eec52014-11-27 08:54:06 +05301041 * @dev: device for which we do this operation
1042 * @freq: OPP to remove with matching 'freq'
1043 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301044 * This function removes an opp from the opp table.
Viresh Kumar129eec52014-11-27 08:54:06 +05301045 */
1046void dev_pm_opp_remove(struct device *dev, unsigned long freq)
1047{
1048 struct dev_pm_opp *opp;
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301049 struct opp_table *opp_table;
Viresh Kumar129eec52014-11-27 08:54:06 +05301050 bool found = false;
1051
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301052 opp_table = _find_opp_table(dev);
1053 if (IS_ERR(opp_table))
Viresh Kumar5b650b32017-01-23 10:11:48 +05301054 return;
Viresh Kumar129eec52014-11-27 08:54:06 +05301055
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301056 mutex_lock(&opp_table->lock);
1057
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301058 list_for_each_entry(opp, &opp_table->opp_list, node) {
Viresh Kumar129eec52014-11-27 08:54:06 +05301059 if (opp->rate == freq) {
1060 found = true;
1061 break;
1062 }
1063 }
1064
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301065 mutex_unlock(&opp_table->lock);
1066
Viresh Kumar5b650b32017-01-23 10:11:48 +05301067 if (found) {
1068 dev_pm_opp_put(opp);
Viresh Kumar0ad8c622018-08-02 14:23:09 +05301069
1070 /* Drop the reference taken by dev_pm_opp_add() */
1071 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar5b650b32017-01-23 10:11:48 +05301072 } else {
Viresh Kumar129eec52014-11-27 08:54:06 +05301073 dev_warn(dev, "%s: Couldn't find OPP with freq: %lu\n",
1074 __func__, freq);
Viresh Kumar129eec52014-11-27 08:54:06 +05301075 }
1076
Viresh Kumar0ad8c622018-08-02 14:23:09 +05301077 /* Drop the reference taken by _find_opp_table() */
Viresh Kumar5b650b32017-01-23 10:11:48 +05301078 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar129eec52014-11-27 08:54:06 +05301079}
1080EXPORT_SYMBOL_GPL(dev_pm_opp_remove);
1081
Viresh Kumar1690d8b2019-01-04 15:14:33 +05301082/**
1083 * dev_pm_opp_remove_all_dynamic() - Remove all dynamically created OPPs
1084 * @dev: device for which we do this operation
1085 *
1086 * This function removes all dynamically created OPPs from the opp table.
1087 */
1088void dev_pm_opp_remove_all_dynamic(struct device *dev)
1089{
1090 struct opp_table *opp_table;
1091 struct dev_pm_opp *opp, *temp;
1092 int count = 0;
1093
1094 opp_table = _find_opp_table(dev);
1095 if (IS_ERR(opp_table))
1096 return;
1097
1098 mutex_lock(&opp_table->lock);
1099 list_for_each_entry_safe(opp, temp, &opp_table->opp_list, node) {
1100 if (opp->dynamic) {
1101 dev_pm_opp_put_unlocked(opp);
1102 count++;
1103 }
1104 }
1105 mutex_unlock(&opp_table->lock);
1106
1107 /* Drop the references taken by dev_pm_opp_add() */
1108 while (count--)
1109 dev_pm_opp_put_opp_table(opp_table);
1110
1111 /* Drop the reference taken by _find_opp_table() */
1112 dev_pm_opp_put_opp_table(opp_table);
1113}
1114EXPORT_SYMBOL_GPL(dev_pm_opp_remove_all_dynamic);
1115
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301116struct dev_pm_opp *_opp_allocate(struct opp_table *table)
Viresh Kumar23dacf62015-07-29 16:23:01 +05301117{
1118 struct dev_pm_opp *opp;
Viresh Kumardfbe4672016-12-01 16:28:19 +05301119 int count, supply_size;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301120
Viresh Kumardfbe4672016-12-01 16:28:19 +05301121 /* Allocate space for at least one supply */
Viresh Kumar46f48ac2018-12-11 16:39:36 +05301122 count = table->regulator_count > 0 ? table->regulator_count : 1;
Viresh Kumardfbe4672016-12-01 16:28:19 +05301123 supply_size = sizeof(*opp->supplies) * count;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301124
Viresh Kumardfbe4672016-12-01 16:28:19 +05301125 /* allocate new OPP node and supplies structures */
1126 opp = kzalloc(sizeof(*opp) + supply_size, GFP_KERNEL);
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301127 if (!opp)
Viresh Kumar23dacf62015-07-29 16:23:01 +05301128 return NULL;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301129
Viresh Kumardfbe4672016-12-01 16:28:19 +05301130 /* Put the supplies at the end of the OPP structure as an empty array */
1131 opp->supplies = (struct dev_pm_opp_supply *)(opp + 1);
1132 INIT_LIST_HEAD(&opp->node);
1133
Viresh Kumar23dacf62015-07-29 16:23:01 +05301134 return opp;
1135}
1136
Viresh Kumar7d34d562016-02-09 10:30:34 +05301137static bool _opp_supported_by_regulators(struct dev_pm_opp *opp,
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301138 struct opp_table *opp_table)
Viresh Kumar7d34d562016-02-09 10:30:34 +05301139{
Viresh Kumardfbe4672016-12-01 16:28:19 +05301140 struct regulator *reg;
1141 int i;
Viresh Kumar7d34d562016-02-09 10:30:34 +05301142
Viresh Kumar90e35772018-12-11 16:32:47 +05301143 if (!opp_table->regulators)
1144 return true;
1145
Viresh Kumardfbe4672016-12-01 16:28:19 +05301146 for (i = 0; i < opp_table->regulator_count; i++) {
1147 reg = opp_table->regulators[i];
1148
1149 if (!regulator_is_supported_voltage(reg,
1150 opp->supplies[i].u_volt_min,
1151 opp->supplies[i].u_volt_max)) {
1152 pr_warn("%s: OPP minuV: %lu maxuV: %lu, not supported by regulator\n",
1153 __func__, opp->supplies[i].u_volt_min,
1154 opp->supplies[i].u_volt_max);
1155 return false;
1156 }
Viresh Kumar7d34d562016-02-09 10:30:34 +05301157 }
1158
1159 return true;
1160}
1161
Viresh Kumara1e8c132018-04-06 14:35:45 +05301162static int _opp_is_duplicate(struct device *dev, struct dev_pm_opp *new_opp,
1163 struct opp_table *opp_table,
1164 struct list_head **head)
1165{
1166 struct dev_pm_opp *opp;
1167
1168 /*
1169 * Insert new OPP in order of increasing frequency and discard if
1170 * already present.
1171 *
1172 * Need to use &opp_table->opp_list in the condition part of the 'for'
1173 * loop, don't replace it with head otherwise it will become an infinite
1174 * loop.
1175 */
1176 list_for_each_entry(opp, &opp_table->opp_list, node) {
1177 if (new_opp->rate > opp->rate) {
1178 *head = &opp->node;
1179 continue;
1180 }
1181
1182 if (new_opp->rate < opp->rate)
1183 return 0;
1184
1185 /* Duplicate OPPs */
1186 dev_warn(dev, "%s: duplicate OPPs detected. Existing: freq: %lu, volt: %lu, enabled: %d. New: freq: %lu, volt: %lu, enabled: %d\n",
1187 __func__, opp->rate, opp->supplies[0].u_volt,
1188 opp->available, new_opp->rate,
1189 new_opp->supplies[0].u_volt, new_opp->available);
1190
1191 /* Should we compare voltages for all regulators here ? */
1192 return opp->available &&
1193 new_opp->supplies[0].u_volt == opp->supplies[0].u_volt ? -EBUSY : -EEXIST;
1194 }
1195
1196 return 0;
1197}
1198
Viresh Kumar7f8538e2017-01-02 14:40:55 +05301199/*
1200 * Returns:
1201 * 0: On success. And appropriate error message for duplicate OPPs.
1202 * -EBUSY: For OPP with same freq/volt and is available. The callers of
1203 * _opp_add() must return 0 if they receive -EBUSY from it. This is to make
1204 * sure we don't print error messages unnecessarily if different parts of
1205 * kernel try to initialize the OPP table.
1206 * -EEXIST: For OPP with same freq but different volt or is unavailable. This
1207 * should be considered an error by the callers of _opp_add().
1208 */
Viresh Kumarf47b72a2016-05-05 16:20:33 +05301209int _opp_add(struct device *dev, struct dev_pm_opp *new_opp,
Viresh Kumara1e8c132018-04-06 14:35:45 +05301210 struct opp_table *opp_table, bool rate_not_available)
Viresh Kumar23dacf62015-07-29 16:23:01 +05301211{
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301212 struct list_head *head;
Viresh Kumardeaa5142015-11-11 07:59:01 +05301213 int ret;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301214
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301215 mutex_lock(&opp_table->lock);
1216 head = &opp_table->opp_list;
1217
Viresh Kumara1e8c132018-04-06 14:35:45 +05301218 if (likely(!rate_not_available)) {
1219 ret = _opp_is_duplicate(dev, new_opp, opp_table, &head);
1220 if (ret) {
1221 mutex_unlock(&opp_table->lock);
1222 return ret;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301223 }
Viresh Kumar23dacf62015-07-29 16:23:01 +05301224 }
1225
Viresh Kumar052c6f12017-01-23 10:11:49 +05301226 list_add(&new_opp->node, head);
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301227 mutex_unlock(&opp_table->lock);
1228
1229 new_opp->opp_table = opp_table;
Viresh Kumar70347642017-01-23 10:11:46 +05301230 kref_init(&new_opp->kref);
Viresh Kumar23dacf62015-07-29 16:23:01 +05301231
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301232 ret = opp_debug_create_one(new_opp, opp_table);
Viresh Kumardeaa5142015-11-11 07:59:01 +05301233 if (ret)
1234 dev_err(dev, "%s: Failed to register opp to debugfs (%d)\n",
1235 __func__, ret);
1236
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301237 if (!_opp_supported_by_regulators(new_opp, opp_table)) {
Viresh Kumar7d34d562016-02-09 10:30:34 +05301238 new_opp->available = false;
1239 dev_warn(dev, "%s: OPP not supported by regulators (%lu)\n",
1240 __func__, new_opp->rate);
1241 }
1242
Viresh Kumar23dacf62015-07-29 16:23:01 +05301243 return 0;
1244}
1245
Viresh Kumar737002b2015-07-29 16:22:58 +05301246/**
Viresh Kumarb64b9c3f2015-10-15 21:42:44 +05301247 * _opp_add_v1() - Allocate a OPP based on v1 bindings.
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301248 * @opp_table: OPP table
Nishanth Menone1f60b22010-10-13 00:13:10 +02001249 * @dev: device for which we do this operation
1250 * @freq: Frequency in Hz for this OPP
1251 * @u_volt: Voltage in uVolts for this OPP
1252 * @dynamic: Dynamically added OPPs.
1253 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301254 * This function adds an opp definition to the opp table and returns status.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001255 * The opp is made available by default and it can be controlled using
1256 * dev_pm_opp_enable/disable functions and may be removed by dev_pm_opp_remove.
1257 *
Viresh Kumar8f8d37b2015-09-04 13:47:24 +05301258 * NOTE: "dynamic" parameter impacts OPPs added by the dev_pm_opp_of_add_table
1259 * and freed by dev_pm_opp_of_remove_table.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001260 *
Nishanth Menone1f60b22010-10-13 00:13:10 +02001261 * Return:
1262 * 0 On success OR
1263 * Duplicate OPPs (both freq and volt are same) and opp->available
1264 * -EEXIST Freq are same and volt are different OR
1265 * Duplicate OPPs (both freq and volt are same) and !opp->available
1266 * -ENOMEM Memory allocation failure
1267 */
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301268int _opp_add_v1(struct opp_table *opp_table, struct device *dev,
1269 unsigned long freq, long u_volt, bool dynamic)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001270{
Viresh Kumar23dacf62015-07-29 16:23:01 +05301271 struct dev_pm_opp *new_opp;
Viresh Kumar50f8cfb2016-02-09 10:30:37 +05301272 unsigned long tol;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001273 int ret;
1274
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301275 new_opp = _opp_allocate(opp_table);
1276 if (!new_opp)
1277 return -ENOMEM;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301278
Nishanth Menone1f60b22010-10-13 00:13:10 +02001279 /* populate the opp table */
1280 new_opp->rate = freq;
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301281 tol = u_volt * opp_table->voltage_tolerance_v1 / 100;
Viresh Kumardfbe4672016-12-01 16:28:19 +05301282 new_opp->supplies[0].u_volt = u_volt;
1283 new_opp->supplies[0].u_volt_min = u_volt - tol;
1284 new_opp->supplies[0].u_volt_max = u_volt + tol;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001285 new_opp->available = true;
Viresh Kumaraa5f2f82015-07-29 16:23:00 +05301286 new_opp->dynamic = dynamic;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301287
Viresh Kumara1e8c132018-04-06 14:35:45 +05301288 ret = _opp_add(dev, new_opp, opp_table, false);
Viresh Kumar7f8538e2017-01-02 14:40:55 +05301289 if (ret) {
1290 /* Don't return error for duplicate OPPs */
1291 if (ret == -EBUSY)
1292 ret = 0;
Viresh Kumar23dacf62015-07-29 16:23:01 +05301293 goto free_opp;
Viresh Kumar7f8538e2017-01-02 14:40:55 +05301294 }
Viresh Kumar23dacf62015-07-29 16:23:01 +05301295
Nishanth Menone1f60b22010-10-13 00:13:10 +02001296 /*
1297 * Notify the changes in the availability of the operable
1298 * frequency/voltage list.
1299 */
Viresh Kumar052c6f12017-01-23 10:11:49 +05301300 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ADD, new_opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001301 return 0;
1302
1303free_opp:
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301304 _opp_free(new_opp);
1305
Nishanth Menone1f60b22010-10-13 00:13:10 +02001306 return ret;
1307}
Viresh Kumar383934092014-11-25 16:04:18 +05301308
Viresh Kumar27465902015-07-29 16:23:02 +05301309/**
Viresh Kumar7de36b02015-12-09 08:01:46 +05301310 * dev_pm_opp_set_supported_hw() - Set supported platforms
1311 * @dev: Device for which supported-hw has to be set.
1312 * @versions: Array of hierarchy of versions to match.
1313 * @count: Number of elements in the array.
1314 *
1315 * This is required only for the V2 bindings, and it enables a platform to
1316 * specify the hierarchy of versions it supports. OPP layer will then enable
1317 * OPPs, which are available for those versions, based on its 'opp-supported-hw'
1318 * property.
Viresh Kumar7de36b02015-12-09 08:01:46 +05301319 */
Viresh Kumarfa301842017-01-23 10:11:43 +05301320struct opp_table *dev_pm_opp_set_supported_hw(struct device *dev,
1321 const u32 *versions, unsigned int count)
Viresh Kumar7de36b02015-12-09 08:01:46 +05301322{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301323 struct opp_table *opp_table;
Viresh Kumar7de36b02015-12-09 08:01:46 +05301324
Viresh Kumarfa301842017-01-23 10:11:43 +05301325 opp_table = dev_pm_opp_get_opp_table(dev);
1326 if (!opp_table)
1327 return ERR_PTR(-ENOMEM);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301328
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301329 /* Make sure there are no concurrent readers while updating opp_table */
1330 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar7de36b02015-12-09 08:01:46 +05301331
Viresh Kumar25419de2018-05-22 16:38:08 +05301332 /* Another CPU that shares the OPP table has set the property ? */
1333 if (opp_table->supported_hw)
1334 return opp_table;
Viresh Kumar7de36b02015-12-09 08:01:46 +05301335
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301336 opp_table->supported_hw = kmemdup(versions, count * sizeof(*versions),
Viresh Kumar7de36b02015-12-09 08:01:46 +05301337 GFP_KERNEL);
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301338 if (!opp_table->supported_hw) {
Viresh Kumar25419de2018-05-22 16:38:08 +05301339 dev_pm_opp_put_opp_table(opp_table);
1340 return ERR_PTR(-ENOMEM);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301341 }
1342
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301343 opp_table->supported_hw_count = count;
Viresh Kumarfa301842017-01-23 10:11:43 +05301344
1345 return opp_table;
Viresh Kumar7de36b02015-12-09 08:01:46 +05301346}
1347EXPORT_SYMBOL_GPL(dev_pm_opp_set_supported_hw);
1348
1349/**
1350 * dev_pm_opp_put_supported_hw() - Releases resources blocked for supported hw
Viresh Kumarfa301842017-01-23 10:11:43 +05301351 * @opp_table: OPP table returned by dev_pm_opp_set_supported_hw().
Viresh Kumar7de36b02015-12-09 08:01:46 +05301352 *
1353 * This is required only for the V2 bindings, and is called for a matching
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301354 * dev_pm_opp_set_supported_hw(). Until this is called, the opp_table structure
Viresh Kumar7de36b02015-12-09 08:01:46 +05301355 * will not be freed.
Viresh Kumar7de36b02015-12-09 08:01:46 +05301356 */
Viresh Kumarfa301842017-01-23 10:11:43 +05301357void dev_pm_opp_put_supported_hw(struct opp_table *opp_table)
Viresh Kumar7de36b02015-12-09 08:01:46 +05301358{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301359 /* Make sure there are no concurrent readers while updating opp_table */
1360 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar7de36b02015-12-09 08:01:46 +05301361
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301362 kfree(opp_table->supported_hw);
1363 opp_table->supported_hw = NULL;
1364 opp_table->supported_hw_count = 0;
Viresh Kumar7de36b02015-12-09 08:01:46 +05301365
Viresh Kumarfa301842017-01-23 10:11:43 +05301366 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar7de36b02015-12-09 08:01:46 +05301367}
1368EXPORT_SYMBOL_GPL(dev_pm_opp_put_supported_hw);
1369
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301370/**
1371 * dev_pm_opp_set_prop_name() - Set prop-extn name
Viresh Kumara5da6442016-02-16 14:17:52 +05301372 * @dev: Device for which the prop-name has to be set.
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301373 * @name: name to postfix to properties.
1374 *
1375 * This is required only for the V2 bindings, and it enables a platform to
1376 * specify the extn to be used for certain property names. The properties to
1377 * which the extension will apply are opp-microvolt and opp-microamp. OPP core
1378 * should postfix the property name with -<name> while looking for them.
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301379 */
Viresh Kumarfa301842017-01-23 10:11:43 +05301380struct opp_table *dev_pm_opp_set_prop_name(struct device *dev, const char *name)
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301381{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301382 struct opp_table *opp_table;
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301383
Viresh Kumarfa301842017-01-23 10:11:43 +05301384 opp_table = dev_pm_opp_get_opp_table(dev);
1385 if (!opp_table)
1386 return ERR_PTR(-ENOMEM);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301387
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301388 /* Make sure there are no concurrent readers while updating opp_table */
1389 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301390
Viresh Kumar878ec1a2018-05-22 16:38:08 +05301391 /* Another CPU that shares the OPP table has set the property ? */
1392 if (opp_table->prop_name)
1393 return opp_table;
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301394
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301395 opp_table->prop_name = kstrdup(name, GFP_KERNEL);
1396 if (!opp_table->prop_name) {
Viresh Kumar878ec1a2018-05-22 16:38:08 +05301397 dev_pm_opp_put_opp_table(opp_table);
1398 return ERR_PTR(-ENOMEM);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301399 }
1400
Viresh Kumarfa301842017-01-23 10:11:43 +05301401 return opp_table;
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301402}
1403EXPORT_SYMBOL_GPL(dev_pm_opp_set_prop_name);
1404
1405/**
1406 * dev_pm_opp_put_prop_name() - Releases resources blocked for prop-name
Viresh Kumarfa301842017-01-23 10:11:43 +05301407 * @opp_table: OPP table returned by dev_pm_opp_set_prop_name().
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301408 *
1409 * This is required only for the V2 bindings, and is called for a matching
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301410 * dev_pm_opp_set_prop_name(). Until this is called, the opp_table structure
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301411 * will not be freed.
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301412 */
Viresh Kumarfa301842017-01-23 10:11:43 +05301413void dev_pm_opp_put_prop_name(struct opp_table *opp_table)
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301414{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301415 /* Make sure there are no concurrent readers while updating opp_table */
1416 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301417
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301418 kfree(opp_table->prop_name);
1419 opp_table->prop_name = NULL;
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301420
Viresh Kumarfa301842017-01-23 10:11:43 +05301421 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar01fb4d32015-12-09 08:01:47 +05301422}
1423EXPORT_SYMBOL_GPL(dev_pm_opp_put_prop_name);
1424
Viresh Kumar94735582016-12-01 16:28:20 +05301425static int _allocate_set_opp_data(struct opp_table *opp_table)
1426{
1427 struct dev_pm_set_opp_data *data;
1428 int len, count = opp_table->regulator_count;
1429
Viresh Kumar90e35772018-12-11 16:32:47 +05301430 if (WARN_ON(!opp_table->regulators))
Viresh Kumar94735582016-12-01 16:28:20 +05301431 return -EINVAL;
1432
1433 /* space for set_opp_data */
1434 len = sizeof(*data);
1435
1436 /* space for old_opp.supplies and new_opp.supplies */
1437 len += 2 * sizeof(struct dev_pm_opp_supply) * count;
1438
1439 data = kzalloc(len, GFP_KERNEL);
1440 if (!data)
1441 return -ENOMEM;
1442
1443 data->old_opp.supplies = (void *)(data + 1);
1444 data->new_opp.supplies = data->old_opp.supplies + count;
1445
1446 opp_table->set_opp_data = data;
1447
1448 return 0;
1449}
1450
1451static void _free_set_opp_data(struct opp_table *opp_table)
1452{
1453 kfree(opp_table->set_opp_data);
1454 opp_table->set_opp_data = NULL;
1455}
1456
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301457/**
Viresh Kumardfbe4672016-12-01 16:28:19 +05301458 * dev_pm_opp_set_regulators() - Set regulator names for the device
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301459 * @dev: Device for which regulator name is being set.
Viresh Kumardfbe4672016-12-01 16:28:19 +05301460 * @names: Array of pointers to the names of the regulator.
1461 * @count: Number of regulators.
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301462 *
1463 * In order to support OPP switching, OPP layer needs to know the name of the
Viresh Kumardfbe4672016-12-01 16:28:19 +05301464 * device's regulators, as the core would be required to switch voltages as
1465 * well.
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301466 *
1467 * This must be called before any OPPs are initialized for the device.
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301468 */
Viresh Kumardfbe4672016-12-01 16:28:19 +05301469struct opp_table *dev_pm_opp_set_regulators(struct device *dev,
1470 const char * const names[],
1471 unsigned int count)
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301472{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301473 struct opp_table *opp_table;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301474 struct regulator *reg;
Viresh Kumardfbe4672016-12-01 16:28:19 +05301475 int ret, i;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301476
Viresh Kumarfa301842017-01-23 10:11:43 +05301477 opp_table = dev_pm_opp_get_opp_table(dev);
1478 if (!opp_table)
1479 return ERR_PTR(-ENOMEM);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301480
1481 /* This should be called before OPPs are initialized */
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301482 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301483 ret = -EBUSY;
1484 goto err;
1485 }
1486
Viresh Kumar779b7832018-05-22 16:38:08 +05301487 /* Another CPU that shares the OPP table has set the regulators ? */
1488 if (opp_table->regulators)
1489 return opp_table;
Viresh Kumardfbe4672016-12-01 16:28:19 +05301490
1491 opp_table->regulators = kmalloc_array(count,
1492 sizeof(*opp_table->regulators),
1493 GFP_KERNEL);
1494 if (!opp_table->regulators) {
1495 ret = -ENOMEM;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301496 goto err;
1497 }
1498
Viresh Kumardfbe4672016-12-01 16:28:19 +05301499 for (i = 0; i < count; i++) {
1500 reg = regulator_get_optional(dev, names[i]);
1501 if (IS_ERR(reg)) {
1502 ret = PTR_ERR(reg);
1503 if (ret != -EPROBE_DEFER)
1504 dev_err(dev, "%s: no regulator (%s) found: %d\n",
1505 __func__, names[i], ret);
1506 goto free_regulators;
1507 }
1508
1509 opp_table->regulators[i] = reg;
1510 }
1511
1512 opp_table->regulator_count = count;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301513
Viresh Kumar94735582016-12-01 16:28:20 +05301514 /* Allocate block only once to pass to set_opp() routines */
1515 ret = _allocate_set_opp_data(opp_table);
1516 if (ret)
1517 goto free_regulators;
1518
Stephen Boyd91291d92016-11-30 16:21:25 +05301519 return opp_table;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301520
Viresh Kumardfbe4672016-12-01 16:28:19 +05301521free_regulators:
1522 while (i != 0)
1523 regulator_put(opp_table->regulators[--i]);
1524
1525 kfree(opp_table->regulators);
1526 opp_table->regulators = NULL;
Viresh Kumar46f48ac2018-12-11 16:39:36 +05301527 opp_table->regulator_count = -1;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301528err:
Viresh Kumarfa301842017-01-23 10:11:43 +05301529 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301530
Stephen Boyd91291d92016-11-30 16:21:25 +05301531 return ERR_PTR(ret);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301532}
Viresh Kumardfbe4672016-12-01 16:28:19 +05301533EXPORT_SYMBOL_GPL(dev_pm_opp_set_regulators);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301534
1535/**
Viresh Kumardfbe4672016-12-01 16:28:19 +05301536 * dev_pm_opp_put_regulators() - Releases resources blocked for regulator
1537 * @opp_table: OPP table returned from dev_pm_opp_set_regulators().
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301538 */
Viresh Kumardfbe4672016-12-01 16:28:19 +05301539void dev_pm_opp_put_regulators(struct opp_table *opp_table)
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301540{
Viresh Kumardfbe4672016-12-01 16:28:19 +05301541 int i;
1542
Viresh Kumar779b7832018-05-22 16:38:08 +05301543 if (!opp_table->regulators)
1544 goto put_opp_table;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301545
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301546 /* Make sure there are no concurrent readers while updating opp_table */
1547 WARN_ON(!list_empty(&opp_table->opp_list));
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301548
Viresh Kumardfbe4672016-12-01 16:28:19 +05301549 for (i = opp_table->regulator_count - 1; i >= 0; i--)
1550 regulator_put(opp_table->regulators[i]);
1551
Viresh Kumar94735582016-12-01 16:28:20 +05301552 _free_set_opp_data(opp_table);
1553
Viresh Kumardfbe4672016-12-01 16:28:19 +05301554 kfree(opp_table->regulators);
1555 opp_table->regulators = NULL;
Viresh Kumar46f48ac2018-12-11 16:39:36 +05301556 opp_table->regulator_count = -1;
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301557
Viresh Kumar779b7832018-05-22 16:38:08 +05301558put_opp_table:
Viresh Kumarfa301842017-01-23 10:11:43 +05301559 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301560}
Viresh Kumardfbe4672016-12-01 16:28:19 +05301561EXPORT_SYMBOL_GPL(dev_pm_opp_put_regulators);
Viresh Kumar9f8ea962016-02-09 10:30:33 +05301562
Viresh Kumar383934092014-11-25 16:04:18 +05301563/**
Viresh Kumar829a4e82017-06-21 10:29:13 +05301564 * dev_pm_opp_set_clkname() - Set clk name for the device
1565 * @dev: Device for which clk name is being set.
1566 * @name: Clk name.
1567 *
1568 * In order to support OPP switching, OPP layer needs to get pointer to the
1569 * clock for the device. Simple cases work fine without using this routine (i.e.
1570 * by passing connection-id as NULL), but for a device with multiple clocks
1571 * available, the OPP core needs to know the exact name of the clk to use.
1572 *
1573 * This must be called before any OPPs are initialized for the device.
1574 */
1575struct opp_table *dev_pm_opp_set_clkname(struct device *dev, const char *name)
1576{
1577 struct opp_table *opp_table;
1578 int ret;
1579
1580 opp_table = dev_pm_opp_get_opp_table(dev);
1581 if (!opp_table)
1582 return ERR_PTR(-ENOMEM);
1583
1584 /* This should be called before OPPs are initialized */
1585 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
1586 ret = -EBUSY;
1587 goto err;
1588 }
1589
1590 /* Already have default clk set, free it */
1591 if (!IS_ERR(opp_table->clk))
1592 clk_put(opp_table->clk);
1593
1594 /* Find clk for the device */
1595 opp_table->clk = clk_get(dev, name);
1596 if (IS_ERR(opp_table->clk)) {
1597 ret = PTR_ERR(opp_table->clk);
1598 if (ret != -EPROBE_DEFER) {
1599 dev_err(dev, "%s: Couldn't find clock: %d\n", __func__,
1600 ret);
1601 }
1602 goto err;
1603 }
1604
1605 return opp_table;
1606
1607err:
1608 dev_pm_opp_put_opp_table(opp_table);
1609
1610 return ERR_PTR(ret);
1611}
1612EXPORT_SYMBOL_GPL(dev_pm_opp_set_clkname);
1613
1614/**
1615 * dev_pm_opp_put_clkname() - Releases resources blocked for clk.
1616 * @opp_table: OPP table returned from dev_pm_opp_set_clkname().
1617 */
1618void dev_pm_opp_put_clkname(struct opp_table *opp_table)
1619{
1620 /* Make sure there are no concurrent readers while updating opp_table */
1621 WARN_ON(!list_empty(&opp_table->opp_list));
1622
1623 clk_put(opp_table->clk);
1624 opp_table->clk = ERR_PTR(-EINVAL);
1625
1626 dev_pm_opp_put_opp_table(opp_table);
1627}
1628EXPORT_SYMBOL_GPL(dev_pm_opp_put_clkname);
1629
1630/**
Viresh Kumar4dab1602016-12-01 16:28:21 +05301631 * dev_pm_opp_register_set_opp_helper() - Register custom set OPP helper
1632 * @dev: Device for which the helper is getting registered.
1633 * @set_opp: Custom set OPP helper.
1634 *
1635 * This is useful to support complex platforms (like platforms with multiple
1636 * regulators per device), instead of the generic OPP set rate helper.
1637 *
1638 * This must be called before any OPPs are initialized for the device.
Viresh Kumar4dab1602016-12-01 16:28:21 +05301639 */
Viresh Kumarfa301842017-01-23 10:11:43 +05301640struct opp_table *dev_pm_opp_register_set_opp_helper(struct device *dev,
Viresh Kumar4dab1602016-12-01 16:28:21 +05301641 int (*set_opp)(struct dev_pm_set_opp_data *data))
1642{
1643 struct opp_table *opp_table;
Viresh Kumar4dab1602016-12-01 16:28:21 +05301644
1645 if (!set_opp)
Viresh Kumarfa301842017-01-23 10:11:43 +05301646 return ERR_PTR(-EINVAL);
Viresh Kumar4dab1602016-12-01 16:28:21 +05301647
Viresh Kumarfa301842017-01-23 10:11:43 +05301648 opp_table = dev_pm_opp_get_opp_table(dev);
1649 if (!opp_table)
1650 return ERR_PTR(-ENOMEM);
Viresh Kumar4dab1602016-12-01 16:28:21 +05301651
1652 /* This should be called before OPPs are initialized */
1653 if (WARN_ON(!list_empty(&opp_table->opp_list))) {
Viresh Kumar5019acc2018-05-22 16:38:08 +05301654 dev_pm_opp_put_opp_table(opp_table);
1655 return ERR_PTR(-EBUSY);
Viresh Kumar4dab1602016-12-01 16:28:21 +05301656 }
1657
Viresh Kumar5019acc2018-05-22 16:38:08 +05301658 /* Another CPU that shares the OPP table has set the helper ? */
1659 if (!opp_table->set_opp)
1660 opp_table->set_opp = set_opp;
Viresh Kumar4dab1602016-12-01 16:28:21 +05301661
Viresh Kumarfa301842017-01-23 10:11:43 +05301662 return opp_table;
Viresh Kumar4dab1602016-12-01 16:28:21 +05301663}
1664EXPORT_SYMBOL_GPL(dev_pm_opp_register_set_opp_helper);
1665
1666/**
Viresh Kumar604a7ae2017-10-05 17:26:21 +05301667 * dev_pm_opp_unregister_set_opp_helper() - Releases resources blocked for
Viresh Kumar4dab1602016-12-01 16:28:21 +05301668 * set_opp helper
Viresh Kumarfa301842017-01-23 10:11:43 +05301669 * @opp_table: OPP table returned from dev_pm_opp_register_set_opp_helper().
Viresh Kumar4dab1602016-12-01 16:28:21 +05301670 *
Viresh Kumarfa301842017-01-23 10:11:43 +05301671 * Release resources blocked for platform specific set_opp helper.
Viresh Kumar4dab1602016-12-01 16:28:21 +05301672 */
Viresh Kumar604a7ae2017-10-05 17:26:21 +05301673void dev_pm_opp_unregister_set_opp_helper(struct opp_table *opp_table)
Viresh Kumar4dab1602016-12-01 16:28:21 +05301674{
Viresh Kumar4dab1602016-12-01 16:28:21 +05301675 /* Make sure there are no concurrent readers while updating opp_table */
1676 WARN_ON(!list_empty(&opp_table->opp_list));
1677
1678 opp_table->set_opp = NULL;
Viresh Kumarfa301842017-01-23 10:11:43 +05301679 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar4dab1602016-12-01 16:28:21 +05301680}
Viresh Kumar604a7ae2017-10-05 17:26:21 +05301681EXPORT_SYMBOL_GPL(dev_pm_opp_unregister_set_opp_helper);
Viresh Kumar4dab1602016-12-01 16:28:21 +05301682
1683/**
Viresh Kumar4f018bc2018-06-26 16:29:34 +05301684 * dev_pm_opp_set_genpd_virt_dev - Set virtual genpd device for an index
1685 * @dev: Consumer device for which the genpd device is getting set.
1686 * @virt_dev: virtual genpd device.
1687 * @index: index.
1688 *
1689 * Multiple generic power domains for a device are supported with the help of
1690 * virtual genpd devices, which are created for each consumer device - genpd
1691 * pair. These are the device structures which are attached to the power domain
1692 * and are required by the OPP core to set the performance state of the genpd.
1693 *
1694 * This helper will normally be called by the consumer driver of the device
1695 * "dev", as only that has details of the genpd devices.
1696 *
1697 * This helper needs to be called once for each of those virtual devices, but
1698 * only if multiple domains are available for a device. Otherwise the original
1699 * device structure will be used instead by the OPP core.
1700 */
1701struct opp_table *dev_pm_opp_set_genpd_virt_dev(struct device *dev,
1702 struct device *virt_dev,
1703 int index)
1704{
1705 struct opp_table *opp_table;
1706
1707 opp_table = dev_pm_opp_get_opp_table(dev);
1708 if (!opp_table)
1709 return ERR_PTR(-ENOMEM);
1710
1711 mutex_lock(&opp_table->genpd_virt_dev_lock);
1712
1713 if (unlikely(!opp_table->genpd_virt_devs ||
1714 index >= opp_table->required_opp_count ||
1715 opp_table->genpd_virt_devs[index])) {
1716
1717 dev_err(dev, "Invalid request to set required device\n");
1718 dev_pm_opp_put_opp_table(opp_table);
1719 mutex_unlock(&opp_table->genpd_virt_dev_lock);
1720
1721 return ERR_PTR(-EINVAL);
1722 }
1723
1724 opp_table->genpd_virt_devs[index] = virt_dev;
1725 mutex_unlock(&opp_table->genpd_virt_dev_lock);
1726
1727 return opp_table;
1728}
1729
1730/**
1731 * dev_pm_opp_put_genpd_virt_dev() - Releases resources blocked for genpd device.
1732 * @opp_table: OPP table returned by dev_pm_opp_set_genpd_virt_dev().
1733 * @virt_dev: virtual genpd device.
1734 *
1735 * This releases the resource previously acquired with a call to
1736 * dev_pm_opp_set_genpd_virt_dev(). The consumer driver shall call this helper
1737 * if it doesn't want OPP core to update performance state of a power domain
1738 * anymore.
1739 */
1740void dev_pm_opp_put_genpd_virt_dev(struct opp_table *opp_table,
1741 struct device *virt_dev)
1742{
1743 int i;
1744
1745 /*
1746 * Acquire genpd_virt_dev_lock to make sure virt_dev isn't getting
1747 * used in parallel.
1748 */
1749 mutex_lock(&opp_table->genpd_virt_dev_lock);
1750
1751 for (i = 0; i < opp_table->required_opp_count; i++) {
1752 if (opp_table->genpd_virt_devs[i] != virt_dev)
1753 continue;
1754
1755 opp_table->genpd_virt_devs[i] = NULL;
1756 dev_pm_opp_put_opp_table(opp_table);
1757
1758 /* Drop the vote */
1759 dev_pm_genpd_set_performance_state(virt_dev, 0);
1760 break;
1761 }
1762
1763 mutex_unlock(&opp_table->genpd_virt_dev_lock);
1764
1765 if (unlikely(i == opp_table->required_opp_count))
1766 dev_err(virt_dev, "Failed to find required device entry\n");
1767}
1768
1769/**
Viresh Kumarc8a59102018-11-02 14:36:42 +05301770 * dev_pm_opp_xlate_performance_state() - Find required OPP's pstate for src_table.
1771 * @src_table: OPP table which has dst_table as one of its required OPP table.
1772 * @dst_table: Required OPP table of the src_table.
1773 * @pstate: Current performance state of the src_table.
1774 *
1775 * This Returns pstate of the OPP (present in @dst_table) pointed out by the
1776 * "required-opps" property of the OPP (present in @src_table) which has
1777 * performance state set to @pstate.
1778 *
1779 * Return: Zero or positive performance state on success, otherwise negative
1780 * value on errors.
1781 */
1782int dev_pm_opp_xlate_performance_state(struct opp_table *src_table,
1783 struct opp_table *dst_table,
1784 unsigned int pstate)
1785{
1786 struct dev_pm_opp *opp;
1787 int dest_pstate = -EINVAL;
1788 int i;
1789
1790 if (!pstate)
1791 return 0;
1792
1793 /*
1794 * Normally the src_table will have the "required_opps" property set to
1795 * point to one of the OPPs in the dst_table, but in some cases the
1796 * genpd and its master have one to one mapping of performance states
1797 * and so none of them have the "required-opps" property set. Return the
1798 * pstate of the src_table as it is in such cases.
1799 */
1800 if (!src_table->required_opp_count)
1801 return pstate;
1802
1803 for (i = 0; i < src_table->required_opp_count; i++) {
1804 if (src_table->required_opp_tables[i]->np == dst_table->np)
1805 break;
1806 }
1807
1808 if (unlikely(i == src_table->required_opp_count)) {
1809 pr_err("%s: Couldn't find matching OPP table (%p: %p)\n",
1810 __func__, src_table, dst_table);
1811 return -EINVAL;
1812 }
1813
1814 mutex_lock(&src_table->lock);
1815
1816 list_for_each_entry(opp, &src_table->opp_list, node) {
1817 if (opp->pstate == pstate) {
1818 dest_pstate = opp->required_opps[i]->pstate;
1819 goto unlock;
1820 }
1821 }
1822
1823 pr_err("%s: Couldn't find matching OPP (%p: %p)\n", __func__, src_table,
1824 dst_table);
1825
1826unlock:
1827 mutex_unlock(&src_table->lock);
1828
1829 return dest_pstate;
1830}
1831
1832/**
Nishanth Menone1f60b22010-10-13 00:13:10 +02001833 * dev_pm_opp_add() - Add an OPP table from a table definitions
1834 * @dev: device for which we do this operation
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001835 * @freq: Frequency in Hz for this OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +02001836 * @u_volt: Voltage in uVolts for this OPP
1837 *
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301838 * This function adds an opp definition to the opp table and returns status.
Nishanth Menon47d43ba2013-09-19 16:03:51 -05001839 * The opp is made available by default and it can be controlled using
Nishanth Menone1f60b22010-10-13 00:13:10 +02001840 * dev_pm_opp_enable/disable functions.
1841 *
Viresh Kumara7470db2014-11-25 16:04:17 +05301842 * Return:
1843 * 0 On success OR
1844 * Duplicate OPPs (both freq and volt are same) and opp->available
1845 * -EEXIST Freq are same and volt are different OR
1846 * Duplicate OPPs (both freq and volt are same) and !opp->available
Viresh Kumar383934092014-11-25 16:04:18 +05301847 * -ENOMEM Memory allocation failure
Viresh Kumara7470db2014-11-25 16:04:17 +05301848 */
Nishanth Menone1f60b22010-10-13 00:13:10 +02001849int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
1850{
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301851 struct opp_table *opp_table;
1852 int ret;
1853
Viresh Kumarb83c1892017-01-23 10:11:45 +05301854 opp_table = dev_pm_opp_get_opp_table(dev);
1855 if (!opp_table)
1856 return -ENOMEM;
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301857
Viresh Kumar46f48ac2018-12-11 16:39:36 +05301858 /* Fix regulator count for dynamic OPPs */
1859 opp_table->regulator_count = 1;
1860
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301861 ret = _opp_add_v1(opp_table, dev, freq, u_volt, true);
Viresh Kumar0ad8c622018-08-02 14:23:09 +05301862 if (ret)
1863 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301864
Viresh Kumar8cd2f6e2017-01-02 14:41:01 +05301865 return ret;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001866}
1867EXPORT_SYMBOL_GPL(dev_pm_opp_add);
1868
Nishanth Menone1f60b22010-10-13 00:13:10 +02001869/**
Nishanth Menon327854c2014-12-24 11:22:56 -06001870 * _opp_set_availability() - helper to set the availability of an opp
Nishanth Menone1f60b22010-10-13 00:13:10 +02001871 * @dev: device for which we do this operation
1872 * @freq: OPP frequency to modify availability
1873 * @availability_req: availability status requested for this opp
1874 *
Viresh Kumar052c6f12017-01-23 10:11:49 +05301875 * Set the availability of an OPP, opp_{enable,disable} share a common logic
1876 * which is isolated here.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001877 *
Nishanth Menon984f16c2014-12-24 11:22:57 -06001878 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
Stephen Boyde1a2d492015-09-24 12:28:44 -07001879 * copy operation, returns 0 if no modification was done OR modification was
Nishanth Menone1f60b22010-10-13 00:13:10 +02001880 * successful.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001881 */
Nishanth Menon327854c2014-12-24 11:22:56 -06001882static int _opp_set_availability(struct device *dev, unsigned long freq,
1883 bool availability_req)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001884{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301885 struct opp_table *opp_table;
Viresh Kumara7f39872017-01-23 10:11:50 +05301886 struct dev_pm_opp *tmp_opp, *opp = ERR_PTR(-ENODEV);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001887 int r = 0;
1888
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301889 /* Find the opp_table */
1890 opp_table = _find_opp_table(dev);
1891 if (IS_ERR(opp_table)) {
1892 r = PTR_ERR(opp_table);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001893 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
Viresh Kumara7f39872017-01-23 10:11:50 +05301894 return r;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001895 }
1896
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301897 mutex_lock(&opp_table->lock);
1898
Nishanth Menone1f60b22010-10-13 00:13:10 +02001899 /* Do we have the frequency? */
Viresh Kumar2c2709d2016-02-16 14:17:53 +05301900 list_for_each_entry(tmp_opp, &opp_table->opp_list, node) {
Nishanth Menone1f60b22010-10-13 00:13:10 +02001901 if (tmp_opp->rate == freq) {
1902 opp = tmp_opp;
1903 break;
1904 }
1905 }
Viresh Kumar37a73ec2017-01-23 10:11:41 +05301906
Nishanth Menone1f60b22010-10-13 00:13:10 +02001907 if (IS_ERR(opp)) {
1908 r = PTR_ERR(opp);
1909 goto unlock;
1910 }
1911
1912 /* Is update really needed? */
1913 if (opp->available == availability_req)
1914 goto unlock;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001915
Viresh Kumara7f39872017-01-23 10:11:50 +05301916 opp->available = availability_req;
Nishanth Menone1f60b22010-10-13 00:13:10 +02001917
Viresh Kumare4d8ae02017-09-21 10:44:36 -07001918 dev_pm_opp_get(opp);
1919 mutex_unlock(&opp_table->lock);
1920
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001921 /* Notify the change of the OPP availability */
1922 if (availability_req)
Viresh Kumar052c6f12017-01-23 10:11:49 +05301923 blocking_notifier_call_chain(&opp_table->head, OPP_EVENT_ENABLE,
Viresh Kumara7f39872017-01-23 10:11:50 +05301924 opp);
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001925 else
Viresh Kumar052c6f12017-01-23 10:11:49 +05301926 blocking_notifier_call_chain(&opp_table->head,
Viresh Kumara7f39872017-01-23 10:11:50 +05301927 OPP_EVENT_DISABLE, opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001928
Viresh Kumare4d8ae02017-09-21 10:44:36 -07001929 dev_pm_opp_put(opp);
1930 goto put_table;
1931
Nishanth Menone1f60b22010-10-13 00:13:10 +02001932unlock:
Viresh Kumar5b650b32017-01-23 10:11:48 +05301933 mutex_unlock(&opp_table->lock);
Viresh Kumare4d8ae02017-09-21 10:44:36 -07001934put_table:
Viresh Kumar5b650b32017-01-23 10:11:48 +05301935 dev_pm_opp_put_opp_table(opp_table);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001936 return r;
1937}
1938
1939/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001940 * dev_pm_opp_enable() - Enable a specific OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +02001941 * @dev: device for which we do this operation
1942 * @freq: OPP frequency to enable
1943 *
1944 * Enables a provided opp. If the operation is valid, this returns 0, else the
1945 * corresponding error value. It is meant to be used for users an OPP available
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001946 * after being temporarily made unavailable with dev_pm_opp_disable.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001947 *
Nishanth Menon984f16c2014-12-24 11:22:57 -06001948 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
Stephen Boyde1a2d492015-09-24 12:28:44 -07001949 * copy operation, returns 0 if no modification was done OR modification was
Nishanth Menon984f16c2014-12-24 11:22:57 -06001950 * successful.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001951 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001952int dev_pm_opp_enable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001953{
Nishanth Menon327854c2014-12-24 11:22:56 -06001954 return _opp_set_availability(dev, freq, true);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001955}
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001956EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001957
1958/**
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001959 * dev_pm_opp_disable() - Disable a specific OPP
Nishanth Menone1f60b22010-10-13 00:13:10 +02001960 * @dev: device for which we do this operation
1961 * @freq: OPP frequency to disable
1962 *
1963 * Disables a provided opp. If the operation is valid, this returns
1964 * 0, else the corresponding error value. It is meant to be a temporary
1965 * control by users to make this OPP not available until the circumstances are
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001966 * right to make it available again (with a call to dev_pm_opp_enable).
Nishanth Menone1f60b22010-10-13 00:13:10 +02001967 *
Nishanth Menon984f16c2014-12-24 11:22:57 -06001968 * Return: -EINVAL for bad pointers, -ENOMEM if no memory available for the
Stephen Boyde1a2d492015-09-24 12:28:44 -07001969 * copy operation, returns 0 if no modification was done OR modification was
Nishanth Menon984f16c2014-12-24 11:22:57 -06001970 * successful.
Nishanth Menone1f60b22010-10-13 00:13:10 +02001971 */
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001972int dev_pm_opp_disable(struct device *dev, unsigned long freq)
Nishanth Menone1f60b22010-10-13 00:13:10 +02001973{
Nishanth Menon327854c2014-12-24 11:22:56 -06001974 return _opp_set_availability(dev, freq, false);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001975}
Nishanth Menon5d4879c2013-09-19 16:03:50 -05001976EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
Nishanth Menone1f60b22010-10-13 00:13:10 +02001977
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001978/**
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301979 * dev_pm_opp_register_notifier() - Register OPP notifier for the device
1980 * @dev: Device for which notifier needs to be registered
1981 * @nb: Notifier block to be registered
Nishanth Menon984f16c2014-12-24 11:22:57 -06001982 *
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301983 * Return: 0 on success or a negative error value.
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001984 */
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301985int dev_pm_opp_register_notifier(struct device *dev, struct notifier_block *nb)
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001986{
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301987 struct opp_table *opp_table;
1988 int ret;
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001989
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301990 opp_table = _find_opp_table(dev);
Viresh Kumar5b650b32017-01-23 10:11:48 +05301991 if (IS_ERR(opp_table))
1992 return PTR_ERR(opp_table);
1993
Viresh Kumar052c6f12017-01-23 10:11:49 +05301994 ret = blocking_notifier_chain_register(&opp_table->head, nb);
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301995
Viresh Kumar5b650b32017-01-23 10:11:48 +05301996 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05301997
1998 return ret;
MyungJoo Ham03ca3702011-09-30 22:35:12 +02001999}
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05302000EXPORT_SYMBOL(dev_pm_opp_register_notifier);
2001
2002/**
2003 * dev_pm_opp_unregister_notifier() - Unregister OPP notifier for the device
2004 * @dev: Device for which notifier needs to be unregistered
2005 * @nb: Notifier block to be unregistered
2006 *
2007 * Return: 0 on success or a negative error value.
2008 */
2009int dev_pm_opp_unregister_notifier(struct device *dev,
2010 struct notifier_block *nb)
2011{
2012 struct opp_table *opp_table;
2013 int ret;
2014
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05302015 opp_table = _find_opp_table(dev);
Viresh Kumar5b650b32017-01-23 10:11:48 +05302016 if (IS_ERR(opp_table))
2017 return PTR_ERR(opp_table);
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05302018
Viresh Kumar052c6f12017-01-23 10:11:49 +05302019 ret = blocking_notifier_chain_unregister(&opp_table->head, nb);
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05302020
Viresh Kumar5b650b32017-01-23 10:11:48 +05302021 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumardc2c9ad2017-01-02 14:41:03 +05302022
2023 return ret;
2024}
2025EXPORT_SYMBOL(dev_pm_opp_unregister_notifier);
Shawn Guob496dfb2012-09-05 01:09:12 +02002026
Viresh Kumar2a4eb732018-09-13 13:14:36 +05302027void _dev_pm_opp_find_and_remove_table(struct device *dev)
Viresh Kumar737002b2015-07-29 16:22:58 +05302028{
Viresh Kumar2c2709d2016-02-16 14:17:53 +05302029 struct opp_table *opp_table;
Viresh Kumar737002b2015-07-29 16:22:58 +05302030
Viresh Kumar2c2709d2016-02-16 14:17:53 +05302031 /* Check for existing table for 'dev' */
2032 opp_table = _find_opp_table(dev);
2033 if (IS_ERR(opp_table)) {
2034 int error = PTR_ERR(opp_table);
Viresh Kumar737002b2015-07-29 16:22:58 +05302035
2036 if (error != -ENODEV)
Viresh Kumar2c2709d2016-02-16 14:17:53 +05302037 WARN(1, "%s: opp_table: %d\n",
Viresh Kumar737002b2015-07-29 16:22:58 +05302038 IS_ERR_OR_NULL(dev) ?
2039 "Invalid device" : dev_name(dev),
2040 error);
Viresh Kumar5b650b32017-01-23 10:11:48 +05302041 return;
Viresh Kumar737002b2015-07-29 16:22:58 +05302042 }
2043
Viresh Kumarcdd6ed92018-09-12 12:35:19 +05302044 _put_opp_list_kref(opp_table);
Viresh Kumar737002b2015-07-29 16:22:58 +05302045
Viresh Kumarcdd6ed92018-09-12 12:35:19 +05302046 /* Drop reference taken by _find_opp_table() */
2047 dev_pm_opp_put_opp_table(opp_table);
2048
2049 /* Drop reference taken while the OPP table was added */
Viresh Kumar5b650b32017-01-23 10:11:48 +05302050 dev_pm_opp_put_opp_table(opp_table);
Viresh Kumar737002b2015-07-29 16:22:58 +05302051}
Viresh Kumar129eec52014-11-27 08:54:06 +05302052
2053/**
Sudeep Holla411466c2016-05-03 15:05:04 +01002054 * dev_pm_opp_remove_table() - Free all OPPs associated with the device
Viresh Kumar2c2709d2016-02-16 14:17:53 +05302055 * @dev: device pointer used to lookup OPP table.
Viresh Kumar129eec52014-11-27 08:54:06 +05302056 *
Sudeep Holla411466c2016-05-03 15:05:04 +01002057 * Free both OPPs created using static entries present in DT and the
2058 * dynamically added entries.
Viresh Kumar129eec52014-11-27 08:54:06 +05302059 */
Sudeep Holla411466c2016-05-03 15:05:04 +01002060void dev_pm_opp_remove_table(struct device *dev)
Viresh Kumar129eec52014-11-27 08:54:06 +05302061{
Viresh Kumar2a4eb732018-09-13 13:14:36 +05302062 _dev_pm_opp_find_and_remove_table(dev);
Viresh Kumar8d4d4e92015-06-12 17:10:38 +05302063}
Sudeep Holla411466c2016-05-03 15:05:04 +01002064EXPORT_SYMBOL_GPL(dev_pm_opp_remove_table);