1 Operating Performance Points (OPP) Library
2 ==========================================
4 (C) 2009-2010 Nishanth Menon <nm@ti.com>, Texas Instruments Incorporated
9 2. Initial OPP List Registration
10 3. OPP Search Functions
11 4. OPP Availability Control Functions
12 5. OPP Data Retrieval Functions
13 6. Cpufreq Table Generation
18 1.1 What is an Operating Performance Point (OPP)?
20 Complex SoCs of today consists of a multiple sub-modules working in conjunction.
21 In an operational system executing varied use cases, not all modules in the SoC
22 need to function at their highest performing frequency all the time. To
23 facilitate this, sub-modules in a SoC are grouped into domains, allowing some
24 domains to run at lower voltage and frequency while other domains run at
25 voltage/frequency pairs that are higher.
27 The set of discrete tuples consisting of frequency and voltage pairs that
28 the device will support per domain are called Operating Performance Points or
32 Let us consider an MPU device which supports the following:
33 {300MHz at minimum voltage of 1V}, {800MHz at minimum voltage of 1.2V},
34 {1GHz at minimum voltage of 1.3V}
36 We can represent these as three OPPs as the following {Hz, uV} tuples:
41 1.2 Operating Performance Points Library
43 OPP library provides a set of helper functions to organize and query the OPP
44 information. The library is located in drivers/base/power/opp.c and the header
45 is located in include/linux/opp.h. OPP library can be enabled by enabling
46 CONFIG_PM_OPP from power management menuconfig menu. OPP library depends on
47 CONFIG_PM as certain SoCs such as Texas Instrument's OMAP framework allows to
48 optionally boot at a certain OPP without needing cpufreq.
50 Typical usage of the OPP library is as follows:
51 (users) -> registers a set of default OPPs -> (library)
52 SoC framework -> modifies on required cases certain OPPs -> OPP layer
53 -> queries to search/retrieve information ->
55 Architectures that provide a SoC framework for OPP should select ARCH_HAS_OPP
56 to make the OPP layer available.
58 OPP layer expects each domain to be represented by a unique device pointer. SoC
59 framework registers a set of initial OPPs per device with the OPP layer. This
60 list is expected to be an optimally small number typically around 5 per device.
61 This initial list contains a set of OPPs that the framework expects to be safely
62 enabled by default in the system.
64 Note on OPP Availability:
65 ------------------------
66 As the system proceeds to operate, SoC framework may choose to make certain
67 OPPs available or not available on each device based on various external
68 factors. Example usage: Thermal management or other exceptional situations where
69 SoC framework might choose to disable a higher frequency OPP to safely continue
70 operations until that OPP could be re-enabled if possible.
72 OPP library facilitates this concept in it's implementation. The following
73 operational functions operate only on available opps:
74 opp_find_freq_{ceil, floor}, opp_get_voltage, opp_get_freq, opp_get_opp_count
75 and opp_init_cpufreq_table
77 opp_find_freq_exact is meant to be used to find the opp pointer which can then
78 be used for opp_enable/disable functions to make an opp available as required.
80 WARNING: Users of OPP library should refresh their availability count using
81 get_opp_count if opp_enable/disable functions are invoked for a device, the
82 exact mechanism to trigger these or the notification mechanism to other
83 dependent subsystems such as cpufreq are left to the discretion of the SoC
84 specific framework which uses the OPP library. Similar care needs to be taken
85 care to refresh the cpufreq table in cases of these operations.
87 WARNING on OPP List locking mechanism:
88 -------------------------------------------------
89 OPP library uses RCU for exclusivity. RCU allows the query functions to operate
90 in multiple contexts and this synchronization mechanism is optimal for a read
91 intensive operations on data structure as the OPP library caters to.
93 To ensure that the data retrieved are sane, the users such as SoC framework
94 should ensure that the section of code operating on OPP queries are locked
95 using RCU read locks. The opp_find_freq_{exact,ceil,floor},
96 opp_get_{voltage, freq, opp_count} fall into this category.
98 opp_{add,enable,disable} are updaters which use mutex and implement it's own
99 RCU locking mechanisms. opp_init_cpufreq_table acts as an updater and uses
100 mutex to implment RCU updater strategy. These functions should *NOT* be called
101 under RCU locks and other contexts that prevent blocking functions in RCU or
102 mutex operations from working.
104 2. Initial OPP List Registration
105 ================================
106 The SoC implementation calls opp_add function iteratively to add OPPs per
107 device. It is expected that the SoC framework will register the OPP entries
108 optimally- typical numbers range to be less than 5. The list generated by
109 registering the OPPs is maintained by OPP library throughout the device
110 operation. The SoC framework can subsequently control the availability of the
111 OPPs dynamically using the opp_enable / disable functions.
113 opp_add - Add a new OPP for a specific domain represented by the device pointer.
114 The OPP is defined using the frequency and voltage. Once added, the OPP
115 is assumed to be available and control of it's availability can be done
116 with the opp_enable/disable functions. OPP library internally stores
117 and manages this information in the opp struct. This function may be
118 used by SoC framework to define a optimal list as per the demands of
119 SoC usage environment.
121 WARNING: Do not use this function in interrupt context.
127 r = opp_add(mpu_dev, 1000000, 900000);
129 pr_err("%s: unable to register mpu opp(%d)\n", r);
132 /* Do cpufreq things */
134 /* Do remaining things */
137 3. OPP Search Functions
138 =======================
139 High level framework such as cpufreq operates on frequencies. To map the
140 frequency back to the corresponding OPP, OPP library provides handy functions
141 to search the OPP list that OPP library internally manages. These search
142 functions return the matching pointer representing the opp if a match is
143 found, else returns error. These errors are expected to be handled by standard
144 error checks such as IS_ERR() and appropriate actions taken by the caller.
146 opp_find_freq_exact - Search for an OPP based on an *exact* frequency and
147 availability. This function is especially useful to enable an OPP which
148 is not available by default.
149 Example: In a case when SoC framework detects a situation where a
150 higher frequency could be made available, it can use this function to
151 find the OPP prior to call the opp_enable to actually make it available.
153 opp = opp_find_freq_exact(dev, 1000000000, false);
155 /* dont operate on the pointer.. just do a sanity check.. */
157 pr_err("frequency not disabled!\n");
158 /* trigger appropriate actions.. */
160 opp_enable(dev,1000000000);
163 NOTE: This is the only search function that operates on OPPs which are
166 opp_find_freq_floor - Search for an available OPP which is *at most* the
167 provided frequency. This function is useful while searching for a lesser
168 match OR operating on OPP information in the order of decreasing
170 Example: To find the highest opp for a device:
173 opp_find_freq_floor(dev, &freq);
176 opp_find_freq_ceil - Search for an available OPP which is *at least* the
177 provided frequency. This function is useful while searching for a
178 higher match OR operating on OPP information in the order of increasing
180 Example 1: To find the lowest opp for a device:
183 opp_find_freq_ceil(dev, &freq);
185 Example 2: A simplified implementation of a SoC cpufreq_driver->target:
186 soc_cpufreq_target(..)
188 /* Do stuff like policy checks etc. */
189 /* Find the best frequency match for the req */
191 opp = opp_find_freq_ceil(dev, &freq);
194 soc_switch_to_freq_voltage(freq);
196 /* do something when we can't satisfy the req */
200 4. OPP Availability Control Functions
201 =====================================
202 A default OPP list registered with the OPP library may not cater to all possible
203 situation. The OPP library provides a set of functions to modify the
204 availability of a OPP within the OPP list. This allows SoC frameworks to have
205 fine grained dynamic control of which sets of OPPs are operationally available.
206 These functions are intended to *temporarily* remove an OPP in conditions such
207 as thermal considerations (e.g. don't use OPPx until the temperature drops).
209 WARNING: Do not use these functions in interrupt context.
211 opp_enable - Make a OPP available for operation.
212 Example: Lets say that 1GHz OPP is to be made available only if the
213 SoC temperature is lower than a certain threshold. The SoC framework
214 implementation might choose to do something as follows:
215 if (cur_temp < temp_low_thresh) {
216 /* Enable 1GHz if it was disabled */
218 opp = opp_find_freq_exact(dev, 1000000000, false);
220 /* just error check */
222 ret = opp_enable(dev, 1000000000);
224 goto try_something_else;
227 opp_disable - Make an OPP to be not available for operation
228 Example: Lets say that 1GHz OPP is to be disabled if the temperature
229 exceeds a threshold value. The SoC framework implementation might
230 choose to do something as follows:
231 if (cur_temp > temp_high_thresh) {
232 /* Disable 1GHz if it was enabled */
234 opp = opp_find_freq_exact(dev, 1000000000, true);
236 /* just error check */
238 ret = opp_disable(dev, 1000000000);
240 goto try_something_else;
243 5. OPP Data Retrieval Functions
244 ===============================
245 Since OPP library abstracts away the OPP information, a set of functions to pull
246 information from the OPP structure is necessary. Once an OPP pointer is
247 retrieved using the search functions, the following functions can be used by SoC
248 framework to retrieve the information represented inside the OPP layer.
250 opp_get_voltage - Retrieve the voltage represented by the opp pointer.
251 Example: At a cpufreq transition to a different frequency, SoC
252 framework requires to set the voltage represented by the OPP using
253 the regulator framework to the Power Management chip providing the
255 soc_switch_to_freq_voltage(freq)
259 opp = opp_find_freq_ceil(dev, &freq);
260 v = opp_get_voltage(opp);
263 regulator_set_voltage(.., v);
264 /* do other things */
267 opp_get_freq - Retrieve the freq represented by the opp pointer.
268 Example: Lets say the SoC framework uses a couple of helper functions
269 we could pass opp pointers instead of doing additional parameters to
270 handle quiet a bit of data parameters.
271 soc_cpufreq_target(..)
274 max_freq = ULONG_MAX;
276 max_opp = opp_find_freq_floor(dev,&max_freq);
277 requested_opp = opp_find_freq_ceil(dev,&freq);
278 if (!IS_ERR(max_opp) && !IS_ERR(requested_opp))
279 r = soc_test_validity(max_opp, requested_opp);
281 /* do other things */
283 soc_test_validity(..)
285 if(opp_get_voltage(max_opp) < opp_get_voltage(requested_opp))
287 if(opp_get_freq(max_opp) < opp_get_freq(requested_opp))
292 opp_get_opp_count - Retrieve the number of available opps for a device
293 Example: Lets say a co-processor in the SoC needs to know the available
294 frequencies in a table, the main processor can notify as following:
295 soc_notify_coproc_available_frequencies()
299 num_available = opp_get_opp_count(dev);
300 speeds = kzalloc(sizeof(u32) * num_available, GFP_KERNEL);
301 /* populate the table in increasing order */
303 while (!IS_ERR(opp = opp_find_freq_ceil(dev, &freq))) {
310 soc_notify_coproc(AVAILABLE_FREQs, speeds, num_available);
311 /* Do other things */
314 6. Cpufreq Table Generation
315 ===========================
316 opp_init_cpufreq_table - cpufreq framework typically is initialized with
317 cpufreq_frequency_table_cpuinfo which is provided with the list of
318 frequencies that are available for operation. This function provides
319 a ready to use conversion routine to translate the OPP layer's internal
320 information about the available frequencies into a format readily
321 providable to cpufreq.
323 WARNING: Do not use this function in interrupt context.
329 r = opp_init_cpufreq_table(dev, &freq_table);
331 cpufreq_frequency_table_cpuinfo(policy, freq_table);
332 /* Do other things */
335 NOTE: This function is available only if CONFIG_CPU_FREQ is enabled in
336 addition to CONFIG_PM as power management feature is required to
337 dynamically scale voltage and frequency in a system.
339 opp_free_cpufreq_table - Free up the table allocated by opp_init_cpufreq_table
343 Typically an SoC contains multiple voltage domains which are variable. Each
344 domain is represented by a device pointer. The relationship to OPP can be
345 represented as follows:
348 | |- opp 1 (availability, freq, voltage)
356 OPP library maintains a internal list that the SoC framework populates and
357 accessed by various functions as described above. However, the structures
358 representing the actual OPPs and domains are internal to the OPP library itself
359 to allow for suitable abstraction reusable across systems.
361 struct opp - The internal data structure of OPP library which is used to
362 represent an OPP. In addition to the freq, voltage, availability
363 information, it also contains internal book keeping information required
364 for the OPP library to operate on. Pointer to this structure is
365 provided back to the users such as SoC framework to be used as a
366 identifier for OPP in the interactions with OPP layer.
368 WARNING: The struct opp pointer should not be parsed or modified by the
369 users. The defaults of for an instance is populated by opp_add, but the
370 availability of the OPP can be modified by opp_enable/disable functions.
372 struct device - This is used to identify a domain to the OPP layer. The
373 nature of the device and it's implementation is left to the user of
374 OPP library such as the SoC framework.
376 Overall, in a simplistic view, the data structure operations is represented as
379 Initialization / modification:
380 +-----+ /- opp_enable
381 opp_add --> | opp | <-------
382 | +-----+ \- opp_disable
383 \-------> domain_info(device)
386 /-- opp_find_freq_ceil ---\ +-----+
387 domain_info<---- opp_find_freq_exact -----> | opp |
388 \-- opp_find_freq_floor ---/ +-----+
391 +-----+ /- opp_get_voltage
393 +-----+ \- opp_get_freq
395 domain_info <- opp_get_opp_count