blob: e3cc4f349ea8e98faa7f8cdce742f8859e5d5ea8 [file] [log] [blame]
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -03001==========================================
Nishanth Menon4b875812013-02-26 23:53:02 +00002Operating Performance Points (OPP) Library
3==========================================
Nishanth Menone1f60b22010-10-13 00:13:10 +02004
5(C) 2009-2010 Nishanth Menon <nm@ti.com>, Texas Instruments Incorporated
6
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -03007.. Contents
8
9 1. Introduction
10 2. Initial OPP List Registration
11 3. OPP Search Functions
12 4. OPP Availability Control Functions
13 5. OPP Data Retrieval Functions
14 6. Data Structures
Nishanth Menone1f60b22010-10-13 00:13:10 +020015
161. Introduction
17===============
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -030018
Nishanth Menon4b875812013-02-26 23:53:02 +0000191.1 What is an Operating Performance Point (OPP)?
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -030020-------------------------------------------------
Nishanth Menon4b875812013-02-26 23:53:02 +000021
Nishanth Menone1f60b22010-10-13 00:13:10 +020022Complex SoCs of today consists of a multiple sub-modules working in conjunction.
23In an operational system executing varied use cases, not all modules in the SoC
24need to function at their highest performing frequency all the time. To
25facilitate this, sub-modules in a SoC are grouped into domains, allowing some
Nishanth Menon4b875812013-02-26 23:53:02 +000026domains to run at lower voltage and frequency while other domains run at
27voltage/frequency pairs that are higher.
28
29The set of discrete tuples consisting of frequency and voltage pairs that
Nishanth Menone1f60b22010-10-13 00:13:10 +020030the device will support per domain are called Operating Performance Points or
31OPPs.
32
Nishanth Menon4b875812013-02-26 23:53:02 +000033As an example:
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -030034
Nishanth Menon4b875812013-02-26 23:53:02 +000035Let us consider an MPU device which supports the following:
36{300MHz at minimum voltage of 1V}, {800MHz at minimum voltage of 1.2V},
37{1GHz at minimum voltage of 1.3V}
38
39We can represent these as three OPPs as the following {Hz, uV} tuples:
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -030040
41- {300000000, 1000000}
42- {800000000, 1200000}
43- {1000000000, 1300000}
Nishanth Menon4b875812013-02-26 23:53:02 +000044
451.2 Operating Performance Points Library
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -030046----------------------------------------
Nishanth Menon4b875812013-02-26 23:53:02 +000047
Nishanth Menone1f60b22010-10-13 00:13:10 +020048OPP library provides a set of helper functions to organize and query the OPP
Yue Hu27a84f762019-07-26 14:07:47 +080049information. The library is located in drivers/opp/ directory and the header
Nishanth Menone4db1c72013-09-19 16:03:52 -050050is located in include/linux/pm_opp.h. OPP library can be enabled by enabling
Nishanth Menone1f60b22010-10-13 00:13:10 +020051CONFIG_PM_OPP from power management menuconfig menu. OPP library depends on
52CONFIG_PM as certain SoCs such as Texas Instrument's OMAP framework allows to
53optionally boot at a certain OPP without needing cpufreq.
54
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -030055Typical usage of the OPP library is as follows::
56
57 (users) -> registers a set of default OPPs -> (library)
58 SoC framework -> modifies on required cases certain OPPs -> OPP layer
Nishanth Menone1f60b22010-10-13 00:13:10 +020059 -> queries to search/retrieve information ->
60
Nishanth Menone1f60b22010-10-13 00:13:10 +020061OPP layer expects each domain to be represented by a unique device pointer. SoC
62framework registers a set of initial OPPs per device with the OPP layer. This
63list is expected to be an optimally small number typically around 5 per device.
64This initial list contains a set of OPPs that the framework expects to be safely
65enabled by default in the system.
66
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -030067Note on OPP Availability
68^^^^^^^^^^^^^^^^^^^^^^^^
69
Nishanth Menone1f60b22010-10-13 00:13:10 +020070As the system proceeds to operate, SoC framework may choose to make certain
71OPPs available or not available on each device based on various external
72factors. Example usage: Thermal management or other exceptional situations where
73SoC framework might choose to disable a higher frequency OPP to safely continue
74operations until that OPP could be re-enabled if possible.
75
Bjorn Helgaas1992b662019-11-19 08:09:23 -060076OPP library facilitates this concept in its implementation. The following
Nishanth Menone1f60b22010-10-13 00:13:10 +020077operational functions operate only on available opps:
Bjorn Helgaas1992b662019-11-19 08:09:23 -060078opp_find_freq_{ceil, floor}, dev_pm_opp_get_voltage, dev_pm_opp_get_freq,
79dev_pm_opp_get_opp_count
Nishanth Menone1f60b22010-10-13 00:13:10 +020080
Bjorn Helgaas1992b662019-11-19 08:09:23 -060081dev_pm_opp_find_freq_exact is meant to be used to find the opp pointer
82which can then be used for dev_pm_opp_enable/disable functions to make an
83opp available as required.
Nishanth Menone1f60b22010-10-13 00:13:10 +020084
85WARNING: Users of OPP library should refresh their availability count using
Bjorn Helgaas1992b662019-11-19 08:09:23 -060086get_opp_count if dev_pm_opp_enable/disable functions are invoked for a
87device, the exact mechanism to trigger these or the notification mechanism
88to other dependent subsystems such as cpufreq are left to the discretion of
89the SoC specific framework which uses the OPP library. Similar care needs
90to be taken care to refresh the cpufreq table in cases of these operations.
Nishanth Menone1f60b22010-10-13 00:13:10 +020091
Nishanth Menone1f60b22010-10-13 00:13:10 +0200922. Initial OPP List Registration
93================================
Nishanth Menon5d4879c2013-09-19 16:03:50 -050094The SoC implementation calls dev_pm_opp_add function iteratively to add OPPs per
Nishanth Menone1f60b22010-10-13 00:13:10 +020095device. It is expected that the SoC framework will register the OPP entries
96optimally- typical numbers range to be less than 5. The list generated by
97registering the OPPs is maintained by OPP library throughout the device
98operation. The SoC framework can subsequently control the availability of the
Nishanth Menon5d4879c2013-09-19 16:03:50 -050099OPPs dynamically using the dev_pm_opp_enable / disable functions.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200100
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300101dev_pm_opp_add
102 Add a new OPP for a specific domain represented by the device pointer.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200103 The OPP is defined using the frequency and voltage. Once added, the OPP
Bjorn Helgaas1992b662019-11-19 08:09:23 -0600104 is assumed to be available and control of its availability can be done
105 with the dev_pm_opp_enable/disable functions. OPP library
106 internally stores and manages this information in the opp struct.
107 This function may be used by SoC framework to define a optimal list
108 as per the demands of SoC usage environment.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200109
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300110 WARNING:
111 Do not use this function in interrupt context.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200112
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300113 Example::
114
Nishanth Menone1f60b22010-10-13 00:13:10 +0200115 soc_pm_init()
116 {
117 /* Do things */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500118 r = dev_pm_opp_add(mpu_dev, 1000000, 900000);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200119 if (!r) {
120 pr_err("%s: unable to register mpu opp(%d)\n", r);
121 goto no_cpufreq;
122 }
123 /* Do cpufreq things */
124 no_cpufreq:
125 /* Do remaining things */
126 }
127
1283. OPP Search Functions
129=======================
130High level framework such as cpufreq operates on frequencies. To map the
131frequency back to the corresponding OPP, OPP library provides handy functions
132to search the OPP list that OPP library internally manages. These search
133functions return the matching pointer representing the opp if a match is
134found, else returns error. These errors are expected to be handled by standard
135error checks such as IS_ERR() and appropriate actions taken by the caller.
136
Viresh Kumar6185dea2017-01-23 10:11:52 +0530137Callers of these functions shall call dev_pm_opp_put() after they have used the
138OPP. Otherwise the memory for the OPP will never get freed and result in
139memleak.
140
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300141dev_pm_opp_find_freq_exact
142 Search for an OPP based on an *exact* frequency and
Nishanth Menone1f60b22010-10-13 00:13:10 +0200143 availability. This function is especially useful to enable an OPP which
144 is not available by default.
145 Example: In a case when SoC framework detects a situation where a
146 higher frequency could be made available, it can use this function to
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300147 find the OPP prior to call the dev_pm_opp_enable to actually make
148 it available::
149
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500150 opp = dev_pm_opp_find_freq_exact(dev, 1000000000, false);
Viresh Kumar6185dea2017-01-23 10:11:52 +0530151 dev_pm_opp_put(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200152 /* dont operate on the pointer.. just do a sanity check.. */
153 if (IS_ERR(opp)) {
154 pr_err("frequency not disabled!\n");
155 /* trigger appropriate actions.. */
156 } else {
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500157 dev_pm_opp_enable(dev,1000000000);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200158 }
159
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300160 NOTE:
161 This is the only search function that operates on OPPs which are
162 not available.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200163
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300164dev_pm_opp_find_freq_floor
165 Search for an available OPP which is *at most* the
Nishanth Menone1f60b22010-10-13 00:13:10 +0200166 provided frequency. This function is useful while searching for a lesser
167 match OR operating on OPP information in the order of decreasing
168 frequency.
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300169 Example: To find the highest opp for a device::
170
Nishanth Menone1f60b22010-10-13 00:13:10 +0200171 freq = ULONG_MAX;
Viresh Kumar6185dea2017-01-23 10:11:52 +0530172 opp = dev_pm_opp_find_freq_floor(dev, &freq);
173 dev_pm_opp_put(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200174
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300175dev_pm_opp_find_freq_ceil
176 Search for an available OPP which is *at least* the
Nishanth Menone1f60b22010-10-13 00:13:10 +0200177 provided frequency. This function is useful while searching for a
178 higher match OR operating on OPP information in the order of increasing
179 frequency.
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300180 Example 1: To find the lowest opp for a device::
181
Nishanth Menone1f60b22010-10-13 00:13:10 +0200182 freq = 0;
Viresh Kumar6185dea2017-01-23 10:11:52 +0530183 opp = dev_pm_opp_find_freq_ceil(dev, &freq);
184 dev_pm_opp_put(opp);
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300185
186 Example 2: A simplified implementation of a SoC cpufreq_driver->target::
187
Nishanth Menone1f60b22010-10-13 00:13:10 +0200188 soc_cpufreq_target(..)
189 {
190 /* Do stuff like policy checks etc. */
191 /* Find the best frequency match for the req */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500192 opp = dev_pm_opp_find_freq_ceil(dev, &freq);
Viresh Kumar6185dea2017-01-23 10:11:52 +0530193 dev_pm_opp_put(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200194 if (!IS_ERR(opp))
195 soc_switch_to_freq_voltage(freq);
196 else
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300197 /* do something when we can't satisfy the req */
Nishanth Menone1f60b22010-10-13 00:13:10 +0200198 /* do other stuff */
199 }
200
2014. OPP Availability Control Functions
202=====================================
203A default OPP list registered with the OPP library may not cater to all possible
204situation. The OPP library provides a set of functions to modify the
205availability of a OPP within the OPP list. This allows SoC frameworks to have
206fine grained dynamic control of which sets of OPPs are operationally available.
207These functions are intended to *temporarily* remove an OPP in conditions such
208as thermal considerations (e.g. don't use OPPx until the temperature drops).
209
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300210WARNING:
211 Do not use these functions in interrupt context.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200212
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300213dev_pm_opp_enable
214 Make a OPP available for operation.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200215 Example: Lets say that 1GHz OPP is to be made available only if the
216 SoC temperature is lower than a certain threshold. The SoC framework
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300217 implementation might choose to do something as follows::
218
Nishanth Menone1f60b22010-10-13 00:13:10 +0200219 if (cur_temp < temp_low_thresh) {
220 /* Enable 1GHz if it was disabled */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500221 opp = dev_pm_opp_find_freq_exact(dev, 1000000000, false);
Viresh Kumar6185dea2017-01-23 10:11:52 +0530222 dev_pm_opp_put(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200223 /* just error check */
224 if (!IS_ERR(opp))
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500225 ret = dev_pm_opp_enable(dev, 1000000000);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200226 else
227 goto try_something_else;
228 }
229
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300230dev_pm_opp_disable
231 Make an OPP to be not available for operation
Nishanth Menone1f60b22010-10-13 00:13:10 +0200232 Example: Lets say that 1GHz OPP is to be disabled if the temperature
233 exceeds a threshold value. The SoC framework implementation might
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300234 choose to do something as follows::
235
Nishanth Menone1f60b22010-10-13 00:13:10 +0200236 if (cur_temp > temp_high_thresh) {
237 /* Disable 1GHz if it was enabled */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500238 opp = dev_pm_opp_find_freq_exact(dev, 1000000000, true);
Viresh Kumar6185dea2017-01-23 10:11:52 +0530239 dev_pm_opp_put(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200240 /* just error check */
241 if (!IS_ERR(opp))
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500242 ret = dev_pm_opp_disable(dev, 1000000000);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200243 else
244 goto try_something_else;
245 }
246
2475. OPP Data Retrieval Functions
248===============================
249Since OPP library abstracts away the OPP information, a set of functions to pull
250information from the OPP structure is necessary. Once an OPP pointer is
251retrieved using the search functions, the following functions can be used by SoC
252framework to retrieve the information represented inside the OPP layer.
253
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300254dev_pm_opp_get_voltage
255 Retrieve the voltage represented by the opp pointer.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200256 Example: At a cpufreq transition to a different frequency, SoC
257 framework requires to set the voltage represented by the OPP using
258 the regulator framework to the Power Management chip providing the
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300259 voltage::
260
Nishanth Menone1f60b22010-10-13 00:13:10 +0200261 soc_switch_to_freq_voltage(freq)
262 {
263 /* do things */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500264 opp = dev_pm_opp_find_freq_ceil(dev, &freq);
265 v = dev_pm_opp_get_voltage(opp);
Viresh Kumar6185dea2017-01-23 10:11:52 +0530266 dev_pm_opp_put(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200267 if (v)
268 regulator_set_voltage(.., v);
269 /* do other things */
270 }
271
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300272dev_pm_opp_get_freq
273 Retrieve the freq represented by the opp pointer.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200274 Example: Lets say the SoC framework uses a couple of helper functions
275 we could pass opp pointers instead of doing additional parameters to
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300276 handle quiet a bit of data parameters::
277
Nishanth Menone1f60b22010-10-13 00:13:10 +0200278 soc_cpufreq_target(..)
279 {
280 /* do things.. */
281 max_freq = ULONG_MAX;
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500282 max_opp = dev_pm_opp_find_freq_floor(dev,&max_freq);
283 requested_opp = dev_pm_opp_find_freq_ceil(dev,&freq);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200284 if (!IS_ERR(max_opp) && !IS_ERR(requested_opp))
285 r = soc_test_validity(max_opp, requested_opp);
Viresh Kumar6185dea2017-01-23 10:11:52 +0530286 dev_pm_opp_put(max_opp);
287 dev_pm_opp_put(requested_opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200288 /* do other things */
289 }
290 soc_test_validity(..)
291 {
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500292 if(dev_pm_opp_get_voltage(max_opp) < dev_pm_opp_get_voltage(requested_opp))
Nishanth Menone1f60b22010-10-13 00:13:10 +0200293 return -EINVAL;
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500294 if(dev_pm_opp_get_freq(max_opp) < dev_pm_opp_get_freq(requested_opp))
Nishanth Menone1f60b22010-10-13 00:13:10 +0200295 return -EINVAL;
296 /* do things.. */
297 }
298
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300299dev_pm_opp_get_opp_count
300 Retrieve the number of available opps for a device
Nishanth Menone1f60b22010-10-13 00:13:10 +0200301 Example: Lets say a co-processor in the SoC needs to know the available
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300302 frequencies in a table, the main processor can notify as following::
303
Nishanth Menone1f60b22010-10-13 00:13:10 +0200304 soc_notify_coproc_available_frequencies()
305 {
306 /* Do things */
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500307 num_available = dev_pm_opp_get_opp_count(dev);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200308 speeds = kzalloc(sizeof(u32) * num_available, GFP_KERNEL);
309 /* populate the table in increasing order */
310 freq = 0;
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500311 while (!IS_ERR(opp = dev_pm_opp_find_freq_ceil(dev, &freq))) {
Nishanth Menone1f60b22010-10-13 00:13:10 +0200312 speeds[i] = freq;
313 freq++;
314 i++;
Viresh Kumar6185dea2017-01-23 10:11:52 +0530315 dev_pm_opp_put(opp);
Nishanth Menone1f60b22010-10-13 00:13:10 +0200316 }
Nishanth Menone1f60b22010-10-13 00:13:10 +0200317
318 soc_notify_coproc(AVAILABLE_FREQs, speeds, num_available);
319 /* Do other things */
320 }
321
Nishanth Menona0dd7b72014-05-05 08:33:50 -05003226. Data Structures
Nishanth Menone1f60b22010-10-13 00:13:10 +0200323==================
324Typically an SoC contains multiple voltage domains which are variable. Each
325domain is represented by a device pointer. The relationship to OPP can be
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300326represented as follows::
327
328 SoC
329 |- device 1
330 | |- opp 1 (availability, freq, voltage)
331 | |- opp 2 ..
332 ... ...
333 | `- opp n ..
334 |- device 2
335 ...
336 `- device m
Nishanth Menone1f60b22010-10-13 00:13:10 +0200337
338OPP library maintains a internal list that the SoC framework populates and
339accessed by various functions as described above. However, the structures
340representing the actual OPPs and domains are internal to the OPP library itself
341to allow for suitable abstraction reusable across systems.
342
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300343struct dev_pm_opp
344 The internal data structure of OPP library which is used to
Nishanth Menone1f60b22010-10-13 00:13:10 +0200345 represent an OPP. In addition to the freq, voltage, availability
346 information, it also contains internal book keeping information required
347 for the OPP library to operate on. Pointer to this structure is
348 provided back to the users such as SoC framework to be used as a
349 identifier for OPP in the interactions with OPP layer.
350
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300351 WARNING:
352 The struct dev_pm_opp pointer should not be parsed or modified by the
353 users. The defaults of for an instance is populated by
354 dev_pm_opp_add, but the availability of the OPP can be modified
355 by dev_pm_opp_enable/disable functions.
Nishanth Menone1f60b22010-10-13 00:13:10 +0200356
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300357struct device
358 This is used to identify a domain to the OPP layer. The
Bjorn Helgaas1992b662019-11-19 08:09:23 -0600359 nature of the device and its implementation is left to the user of
Nishanth Menone1f60b22010-10-13 00:13:10 +0200360 OPP library such as the SoC framework.
361
362Overall, in a simplistic view, the data structure operations is represented as
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300363following::
Nishanth Menone1f60b22010-10-13 00:13:10 +0200364
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300365 Initialization / modification:
366 +-----+ /- dev_pm_opp_enable
367 dev_pm_opp_add --> | opp | <-------
368 | +-----+ \- dev_pm_opp_disable
369 \-------> domain_info(device)
Nishanth Menone1f60b22010-10-13 00:13:10 +0200370
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300371 Search functions:
372 /-- dev_pm_opp_find_freq_ceil ---\ +-----+
373 domain_info<---- dev_pm_opp_find_freq_exact -----> | opp |
374 \-- dev_pm_opp_find_freq_floor ---/ +-----+
Nishanth Menone1f60b22010-10-13 00:13:10 +0200375
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300376 Retrieval functions:
377 +-----+ /- dev_pm_opp_get_voltage
378 | opp | <---
379 +-----+ \- dev_pm_opp_get_freq
Nishanth Menone1f60b22010-10-13 00:13:10 +0200380
Mauro Carvalho Chehab151f4e22019-06-13 07:10:36 -0300381 domain_info <- dev_pm_opp_get_opp_count