2 * Generic OPP helper interface for CPUFreq drivers
4 * Copyright (C) 2009-2014 Texas Instruments Incorporated.
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.
13 #include <linux/cpufreq.h>
14 #include <linux/device.h>
15 #include <linux/err.h>
16 #include <linux/errno.h>
17 #include <linux/export.h>
18 #include <linux/kernel.h>
19 #include <linux/pm_opp.h>
20 #include <linux/rcupdate.h>
21 #include <linux/slab.h>
24 * dev_pm_opp_init_cpufreq_table() - create a cpufreq table for a device
25 * @dev: device for which we do this operation
26 * @table: Cpufreq table returned back to caller
28 * Generate a cpufreq table for a provided device- this assumes that the
29 * opp list is already initialized and ready for usage.
31 * This function allocates required memory for the cpufreq table. It is
32 * expected that the caller does the required maintenance such as freeing
33 * the table as required.
35 * Returns -EINVAL for bad pointers, -ENODEV if the device is not found, -ENOMEM
36 * if no memory available for the operation (table is not populated), returns 0
37 * if successful and table is populated.
39 * WARNING: It is important for the callers to ensure refreshing their copy of
40 * the table if any of the mentioned functions have been invoked in the interim.
42 * Locking: The internal device_opp and opp structures are RCU protected.
43 * Since we just use the regular accessor functions to access the internal data
44 * structures, we use RCU read lock inside this function. As a result, users of
45 * this function DONOT need to use explicit locks for invoking.
47 int dev_pm_opp_init_cpufreq_table(struct device
*dev
,
48 struct cpufreq_frequency_table
**table
)
50 struct dev_pm_opp
*opp
;
51 struct cpufreq_frequency_table
*freq_table
= NULL
;
52 int i
, max_opps
, ret
= 0;
57 max_opps
= dev_pm_opp_get_opp_count(dev
);
59 ret
= max_opps
? max_opps
: -ENODATA
;
63 freq_table
= kcalloc((max_opps
+ 1), sizeof(*freq_table
), GFP_ATOMIC
);
69 for (i
= 0, rate
= 0; i
< max_opps
; i
++, rate
++) {
71 opp
= dev_pm_opp_find_freq_ceil(dev
, &rate
);
76 freq_table
[i
].driver_data
= i
;
77 freq_table
[i
].frequency
= rate
/ 1000;
80 freq_table
[i
].driver_data
= i
;
81 freq_table
[i
].frequency
= CPUFREQ_TABLE_END
;
83 *table
= &freq_table
[0];
92 EXPORT_SYMBOL_GPL(dev_pm_opp_init_cpufreq_table
);
95 * dev_pm_opp_free_cpufreq_table() - free the cpufreq table
96 * @dev: device for which we do this operation
97 * @table: table to free
99 * Free up the table allocated by dev_pm_opp_init_cpufreq_table
101 void dev_pm_opp_free_cpufreq_table(struct device
*dev
,
102 struct cpufreq_frequency_table
**table
)
110 EXPORT_SYMBOL_GPL(dev_pm_opp_free_cpufreq_table
);