usb: xhci-plat: properly handle probe deferral for devm_clk_get()
[linux/fpc-iii.git] / drivers / base / power / opp / cpu.c
blobba2bdbd932ef3c1ebaff47c6203bddb27fe9c03b
1 /*
2 * Generic OPP helper interface for CPU device
4 * Copyright (C) 2009-2014 Texas Instruments Incorporated.
5 * Nishanth Menon
6 * Romit Dasgupta
7 * Kevin Hilman
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.
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/cpu.h>
17 #include <linux/cpufreq.h>
18 #include <linux/err.h>
19 #include <linux/errno.h>
20 #include <linux/export.h>
21 #include <linux/of.h>
22 #include <linux/slab.h>
24 #include "opp.h"
26 #ifdef CONFIG_CPU_FREQ
28 /**
29 * dev_pm_opp_init_cpufreq_table() - create a cpufreq table for a device
30 * @dev: device for which we do this operation
31 * @table: Cpufreq table returned back to caller
33 * Generate a cpufreq table for a provided device- this assumes that the
34 * opp table is already initialized and ready for usage.
36 * This function allocates required memory for the cpufreq table. It is
37 * expected that the caller does the required maintenance such as freeing
38 * the table as required.
40 * Returns -EINVAL for bad pointers, -ENODEV if the device is not found, -ENOMEM
41 * if no memory available for the operation (table is not populated), returns 0
42 * if successful and table is populated.
44 * WARNING: It is important for the callers to ensure refreshing their copy of
45 * the table if any of the mentioned functions have been invoked in the interim.
47 * Locking: The internal opp_table and opp structures are RCU protected.
48 * Since we just use the regular accessor functions to access the internal data
49 * structures, we use RCU read lock inside this function. As a result, users of
50 * this function DONOT need to use explicit locks for invoking.
52 int dev_pm_opp_init_cpufreq_table(struct device *dev,
53 struct cpufreq_frequency_table **table)
55 struct dev_pm_opp *opp;
56 struct cpufreq_frequency_table *freq_table = NULL;
57 int i, max_opps, ret = 0;
58 unsigned long rate;
60 rcu_read_lock();
62 max_opps = dev_pm_opp_get_opp_count(dev);
63 if (max_opps <= 0) {
64 ret = max_opps ? max_opps : -ENODATA;
65 goto out;
68 freq_table = kcalloc((max_opps + 1), sizeof(*freq_table), GFP_ATOMIC);
69 if (!freq_table) {
70 ret = -ENOMEM;
71 goto out;
74 for (i = 0, rate = 0; i < max_opps; i++, rate++) {
75 /* find next rate */
76 opp = dev_pm_opp_find_freq_ceil(dev, &rate);
77 if (IS_ERR(opp)) {
78 ret = PTR_ERR(opp);
79 goto out;
81 freq_table[i].driver_data = i;
82 freq_table[i].frequency = rate / 1000;
84 /* Is Boost/turbo opp ? */
85 if (dev_pm_opp_is_turbo(opp))
86 freq_table[i].flags = CPUFREQ_BOOST_FREQ;
89 freq_table[i].driver_data = i;
90 freq_table[i].frequency = CPUFREQ_TABLE_END;
92 *table = &freq_table[0];
94 out:
95 rcu_read_unlock();
96 if (ret)
97 kfree(freq_table);
99 return ret;
101 EXPORT_SYMBOL_GPL(dev_pm_opp_init_cpufreq_table);
104 * dev_pm_opp_free_cpufreq_table() - free the cpufreq table
105 * @dev: device for which we do this operation
106 * @table: table to free
108 * Free up the table allocated by dev_pm_opp_init_cpufreq_table
110 void dev_pm_opp_free_cpufreq_table(struct device *dev,
111 struct cpufreq_frequency_table **table)
113 if (!table)
114 return;
116 kfree(*table);
117 *table = NULL;
119 EXPORT_SYMBOL_GPL(dev_pm_opp_free_cpufreq_table);
120 #endif /* CONFIG_CPU_FREQ */
122 /* Required only for V1 bindings, as v2 can manage it from DT itself */
123 int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
125 struct opp_device *opp_dev;
126 struct opp_table *opp_table;
127 struct device *dev;
128 int cpu, ret = 0;
130 mutex_lock(&opp_table_lock);
132 opp_table = _find_opp_table(cpu_dev);
133 if (IS_ERR(opp_table)) {
134 ret = -EINVAL;
135 goto unlock;
138 for_each_cpu(cpu, cpumask) {
139 if (cpu == cpu_dev->id)
140 continue;
142 dev = get_cpu_device(cpu);
143 if (!dev) {
144 dev_err(cpu_dev, "%s: failed to get cpu%d device\n",
145 __func__, cpu);
146 continue;
149 opp_dev = _add_opp_dev(dev, opp_table);
150 if (!opp_dev) {
151 dev_err(dev, "%s: failed to add opp-dev for cpu%d device\n",
152 __func__, cpu);
153 continue;
156 unlock:
157 mutex_unlock(&opp_table_lock);
159 return ret;
161 EXPORT_SYMBOL_GPL(dev_pm_opp_set_sharing_cpus);
163 #ifdef CONFIG_OF
164 void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask)
166 struct device *cpu_dev;
167 int cpu;
169 WARN_ON(cpumask_empty(cpumask));
171 for_each_cpu(cpu, cpumask) {
172 cpu_dev = get_cpu_device(cpu);
173 if (!cpu_dev) {
174 pr_err("%s: failed to get cpu%d device\n", __func__,
175 cpu);
176 continue;
179 dev_pm_opp_of_remove_table(cpu_dev);
182 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_remove_table);
184 int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask)
186 struct device *cpu_dev;
187 int cpu, ret = 0;
189 WARN_ON(cpumask_empty(cpumask));
191 for_each_cpu(cpu, cpumask) {
192 cpu_dev = get_cpu_device(cpu);
193 if (!cpu_dev) {
194 pr_err("%s: failed to get cpu%d device\n", __func__,
195 cpu);
196 continue;
199 ret = dev_pm_opp_of_add_table(cpu_dev);
200 if (ret) {
201 pr_err("%s: couldn't find opp table for cpu:%d, %d\n",
202 __func__, cpu, ret);
204 /* Free all other OPPs */
205 dev_pm_opp_of_cpumask_remove_table(cpumask);
206 break;
210 return ret;
212 EXPORT_SYMBOL_GPL(dev_pm_opp_of_cpumask_add_table);
215 * Works only for OPP v2 bindings.
217 * Returns -ENOENT if operating-points-v2 bindings aren't supported.
219 int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask)
221 struct device_node *np, *tmp_np;
222 struct device *tcpu_dev;
223 int cpu, ret = 0;
225 /* Get OPP descriptor node */
226 np = _of_get_opp_desc_node(cpu_dev);
227 if (!np) {
228 dev_dbg(cpu_dev, "%s: Couldn't find cpu_dev node.\n", __func__);
229 return -ENOENT;
232 cpumask_set_cpu(cpu_dev->id, cpumask);
234 /* OPPs are shared ? */
235 if (!of_property_read_bool(np, "opp-shared"))
236 goto put_cpu_node;
238 for_each_possible_cpu(cpu) {
239 if (cpu == cpu_dev->id)
240 continue;
242 tcpu_dev = get_cpu_device(cpu);
243 if (!tcpu_dev) {
244 dev_err(cpu_dev, "%s: failed to get cpu%d device\n",
245 __func__, cpu);
246 ret = -ENODEV;
247 goto put_cpu_node;
250 /* Get OPP descriptor node */
251 tmp_np = _of_get_opp_desc_node(tcpu_dev);
252 if (!tmp_np) {
253 dev_err(tcpu_dev, "%s: Couldn't find tcpu_dev node.\n",
254 __func__);
255 ret = -ENOENT;
256 goto put_cpu_node;
259 /* CPUs are sharing opp node */
260 if (np == tmp_np)
261 cpumask_set_cpu(cpu, cpumask);
263 of_node_put(tmp_np);
266 put_cpu_node:
267 of_node_put(np);
268 return ret;
270 EXPORT_SYMBOL_GPL(dev_pm_opp_of_get_sharing_cpus);
271 #endif