PM / OPP: Move cpufreq specific OPP functions out of generic OPP library
[cascardo/linux.git] / drivers / base / power / opp.c
1 /*
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
14 #include <linux/kernel.h>
15 #include <linux/errno.h>
16 #include <linux/err.h>
17 #include <linux/slab.h>
18 #include <linux/device.h>
19 #include <linux/list.h>
20 #include <linux/rculist.h>
21 #include <linux/rcupdate.h>
22 #include <linux/pm_opp.h>
23 #include <linux/of.h>
24 #include <linux/export.h>
25
26 /*
27  * Internal data structure organization with the OPP layer library is as
28  * follows:
29  * dev_opp_list (root)
30  *      |- device 1 (represents voltage domain 1)
31  *      |       |- opp 1 (availability, freq, voltage)
32  *      |       |- opp 2 ..
33  *      ...     ...
34  *      |       `- opp n ..
35  *      |- device 2 (represents the next voltage domain)
36  *      ...
37  *      `- device m (represents mth voltage domain)
38  * device 1, 2.. are represented by dev_opp structure while each opp
39  * is represented by the opp structure.
40  */
41
42 /**
43  * struct dev_pm_opp - Generic OPP description structure
44  * @node:       opp list node. The nodes are maintained throughout the lifetime
45  *              of boot. It is expected only an optimal set of OPPs are
46  *              added to the library by the SoC framework.
47  *              RCU usage: opp list is traversed with RCU locks. node
48  *              modification is possible realtime, hence the modifications
49  *              are protected by the dev_opp_list_lock for integrity.
50  *              IMPORTANT: the opp nodes should be maintained in increasing
51  *              order.
52  * @available:  true/false - marks if this OPP as available or not
53  * @rate:       Frequency in hertz
54  * @u_volt:     Nominal voltage in microvolts corresponding to this OPP
55  * @dev_opp:    points back to the device_opp struct this opp belongs to
56  * @head:       RCU callback head used for deferred freeing
57  *
58  * This structure stores the OPP information for a given device.
59  */
60 struct dev_pm_opp {
61         struct list_head node;
62
63         bool available;
64         unsigned long rate;
65         unsigned long u_volt;
66
67         struct device_opp *dev_opp;
68         struct rcu_head head;
69 };
70
71 /**
72  * struct device_opp - Device opp structure
73  * @node:       list node - contains the devices with OPPs that
74  *              have been registered. Nodes once added are not modified in this
75  *              list.
76  *              RCU usage: nodes are not modified in the list of device_opp,
77  *              however addition is possible and is secured by dev_opp_list_lock
78  * @dev:        device pointer
79  * @head:       notifier head to notify the OPP availability changes.
80  * @opp_list:   list of opps
81  *
82  * This is an internal data structure maintaining the link to opps attached to
83  * a device. This structure is not meant to be shared to users as it is
84  * meant for book keeping and private to OPP library
85  */
86 struct device_opp {
87         struct list_head node;
88
89         struct device *dev;
90         struct srcu_notifier_head head;
91         struct list_head opp_list;
92 };
93
94 /*
95  * The root of the list of all devices. All device_opp structures branch off
96  * from here, with each device_opp containing the list of opp it supports in
97  * various states of availability.
98  */
99 static LIST_HEAD(dev_opp_list);
100 /* Lock to allow exclusive modification to the device and opp lists */
101 static DEFINE_MUTEX(dev_opp_list_lock);
102
103 /**
104  * find_device_opp() - find device_opp struct using device pointer
105  * @dev:        device pointer used to lookup device OPPs
106  *
107  * Search list of device OPPs for one containing matching device. Does a RCU
108  * reader operation to grab the pointer needed.
109  *
110  * Returns pointer to 'struct device_opp' if found, otherwise -ENODEV or
111  * -EINVAL based on type of error.
112  *
113  * Locking: This function must be called under rcu_read_lock(). device_opp
114  * is a RCU protected pointer. This means that device_opp is valid as long
115  * as we are under RCU lock.
116  */
117 static struct device_opp *find_device_opp(struct device *dev)
118 {
119         struct device_opp *tmp_dev_opp, *dev_opp = ERR_PTR(-ENODEV);
120
121         if (unlikely(IS_ERR_OR_NULL(dev))) {
122                 pr_err("%s: Invalid parameters\n", __func__);
123                 return ERR_PTR(-EINVAL);
124         }
125
126         list_for_each_entry_rcu(tmp_dev_opp, &dev_opp_list, node) {
127                 if (tmp_dev_opp->dev == dev) {
128                         dev_opp = tmp_dev_opp;
129                         break;
130                 }
131         }
132
133         return dev_opp;
134 }
135
136 /**
137  * dev_pm_opp_get_voltage() - Gets the voltage corresponding to an available opp
138  * @opp:        opp for which voltage has to be returned for
139  *
140  * Return voltage in micro volt corresponding to the opp, else
141  * return 0
142  *
143  * Locking: This function must be called under rcu_read_lock(). opp is a rcu
144  * protected pointer. This means that opp which could have been fetched by
145  * opp_find_freq_{exact,ceil,floor} functions is valid as long as we are
146  * under RCU lock. The pointer returned by the opp_find_freq family must be
147  * used in the same section as the usage of this function with the pointer
148  * prior to unlocking with rcu_read_unlock() to maintain the integrity of the
149  * pointer.
150  */
151 unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp)
152 {
153         struct dev_pm_opp *tmp_opp;
154         unsigned long v = 0;
155
156         tmp_opp = rcu_dereference(opp);
157         if (unlikely(IS_ERR_OR_NULL(tmp_opp)) || !tmp_opp->available)
158                 pr_err("%s: Invalid parameters\n", __func__);
159         else
160                 v = tmp_opp->u_volt;
161
162         return v;
163 }
164 EXPORT_SYMBOL_GPL(dev_pm_opp_get_voltage);
165
166 /**
167  * dev_pm_opp_get_freq() - Gets the frequency corresponding to an available opp
168  * @opp:        opp for which frequency has to be returned for
169  *
170  * Return frequency in hertz corresponding to the opp, else
171  * return 0
172  *
173  * Locking: This function must be called under rcu_read_lock(). opp is a rcu
174  * protected pointer. This means that opp which could have been fetched by
175  * opp_find_freq_{exact,ceil,floor} functions is valid as long as we are
176  * under RCU lock. The pointer returned by the opp_find_freq family must be
177  * used in the same section as the usage of this function with the pointer
178  * prior to unlocking with rcu_read_unlock() to maintain the integrity of the
179  * pointer.
180  */
181 unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp)
182 {
183         struct dev_pm_opp *tmp_opp;
184         unsigned long f = 0;
185
186         tmp_opp = rcu_dereference(opp);
187         if (unlikely(IS_ERR_OR_NULL(tmp_opp)) || !tmp_opp->available)
188                 pr_err("%s: Invalid parameters\n", __func__);
189         else
190                 f = tmp_opp->rate;
191
192         return f;
193 }
194 EXPORT_SYMBOL_GPL(dev_pm_opp_get_freq);
195
196 /**
197  * dev_pm_opp_get_opp_count() - Get number of opps available in the opp list
198  * @dev:        device for which we do this operation
199  *
200  * This function returns the number of available opps if there are any,
201  * else returns 0 if none or the corresponding error value.
202  *
203  * Locking: This function must be called under rcu_read_lock(). This function
204  * internally references two RCU protected structures: device_opp and opp which
205  * are safe as long as we are under a common RCU locked section.
206  */
207 int dev_pm_opp_get_opp_count(struct device *dev)
208 {
209         struct device_opp *dev_opp;
210         struct dev_pm_opp *temp_opp;
211         int count = 0;
212
213         dev_opp = find_device_opp(dev);
214         if (IS_ERR(dev_opp)) {
215                 int r = PTR_ERR(dev_opp);
216                 dev_err(dev, "%s: device OPP not found (%d)\n", __func__, r);
217                 return r;
218         }
219
220         list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
221                 if (temp_opp->available)
222                         count++;
223         }
224
225         return count;
226 }
227 EXPORT_SYMBOL_GPL(dev_pm_opp_get_opp_count);
228
229 /**
230  * dev_pm_opp_find_freq_exact() - search for an exact frequency
231  * @dev:                device for which we do this operation
232  * @freq:               frequency to search for
233  * @available:          true/false - match for available opp
234  *
235  * Searches for exact match in the opp list and returns pointer to the matching
236  * opp if found, else returns ERR_PTR in case of error and should be handled
237  * using IS_ERR. Error return values can be:
238  * EINVAL:      for bad pointer
239  * ERANGE:      no match found for search
240  * ENODEV:      if device not found in list of registered devices
241  *
242  * Note: available is a modifier for the search. if available=true, then the
243  * match is for exact matching frequency and is available in the stored OPP
244  * table. if false, the match is for exact frequency which is not available.
245  *
246  * This provides a mechanism to enable an opp which is not available currently
247  * or the opposite as well.
248  *
249  * Locking: This function must be called under rcu_read_lock(). opp is a rcu
250  * protected pointer. The reason for the same is that the opp pointer which is
251  * returned will remain valid for use with opp_get_{voltage, freq} only while
252  * under the locked area. The pointer returned must be used prior to unlocking
253  * with rcu_read_unlock() to maintain the integrity of the pointer.
254  */
255 struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev,
256                                               unsigned long freq,
257                                               bool available)
258 {
259         struct device_opp *dev_opp;
260         struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
261
262         dev_opp = find_device_opp(dev);
263         if (IS_ERR(dev_opp)) {
264                 int r = PTR_ERR(dev_opp);
265                 dev_err(dev, "%s: device OPP not found (%d)\n", __func__, r);
266                 return ERR_PTR(r);
267         }
268
269         list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
270                 if (temp_opp->available == available &&
271                                 temp_opp->rate == freq) {
272                         opp = temp_opp;
273                         break;
274                 }
275         }
276
277         return opp;
278 }
279 EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_exact);
280
281 /**
282  * dev_pm_opp_find_freq_ceil() - Search for an rounded ceil freq
283  * @dev:        device for which we do this operation
284  * @freq:       Start frequency
285  *
286  * Search for the matching ceil *available* OPP from a starting freq
287  * for a device.
288  *
289  * Returns matching *opp and refreshes *freq accordingly, else returns
290  * ERR_PTR in case of error and should be handled using IS_ERR. Error return
291  * values can be:
292  * EINVAL:      for bad pointer
293  * ERANGE:      no match found for search
294  * ENODEV:      if device not found in list of registered devices
295  *
296  * Locking: This function must be called under rcu_read_lock(). opp is a rcu
297  * protected pointer. The reason for the same is that the opp pointer which is
298  * returned will remain valid for use with opp_get_{voltage, freq} only while
299  * under the locked area. The pointer returned must be used prior to unlocking
300  * with rcu_read_unlock() to maintain the integrity of the pointer.
301  */
302 struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev,
303                                              unsigned long *freq)
304 {
305         struct device_opp *dev_opp;
306         struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
307
308         if (!dev || !freq) {
309                 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
310                 return ERR_PTR(-EINVAL);
311         }
312
313         dev_opp = find_device_opp(dev);
314         if (IS_ERR(dev_opp))
315                 return ERR_CAST(dev_opp);
316
317         list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
318                 if (temp_opp->available && temp_opp->rate >= *freq) {
319                         opp = temp_opp;
320                         *freq = opp->rate;
321                         break;
322                 }
323         }
324
325         return opp;
326 }
327 EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_ceil);
328
329 /**
330  * dev_pm_opp_find_freq_floor() - Search for a rounded floor freq
331  * @dev:        device for which we do this operation
332  * @freq:       Start frequency
333  *
334  * Search for the matching floor *available* OPP from a starting freq
335  * for a device.
336  *
337  * Returns matching *opp and refreshes *freq accordingly, else returns
338  * ERR_PTR in case of error and should be handled using IS_ERR. Error return
339  * values can be:
340  * EINVAL:      for bad pointer
341  * ERANGE:      no match found for search
342  * ENODEV:      if device not found in list of registered devices
343  *
344  * Locking: This function must be called under rcu_read_lock(). opp is a rcu
345  * protected pointer. The reason for the same is that the opp pointer which is
346  * returned will remain valid for use with opp_get_{voltage, freq} only while
347  * under the locked area. The pointer returned must be used prior to unlocking
348  * with rcu_read_unlock() to maintain the integrity of the pointer.
349  */
350 struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev,
351                                               unsigned long *freq)
352 {
353         struct device_opp *dev_opp;
354         struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
355
356         if (!dev || !freq) {
357                 dev_err(dev, "%s: Invalid argument freq=%p\n", __func__, freq);
358                 return ERR_PTR(-EINVAL);
359         }
360
361         dev_opp = find_device_opp(dev);
362         if (IS_ERR(dev_opp))
363                 return ERR_CAST(dev_opp);
364
365         list_for_each_entry_rcu(temp_opp, &dev_opp->opp_list, node) {
366                 if (temp_opp->available) {
367                         /* go to the next node, before choosing prev */
368                         if (temp_opp->rate > *freq)
369                                 break;
370                         else
371                                 opp = temp_opp;
372                 }
373         }
374         if (!IS_ERR(opp))
375                 *freq = opp->rate;
376
377         return opp;
378 }
379 EXPORT_SYMBOL_GPL(dev_pm_opp_find_freq_floor);
380
381 /**
382  * dev_pm_opp_add()  - Add an OPP table from a table definitions
383  * @dev:        device for which we do this operation
384  * @freq:       Frequency in Hz for this OPP
385  * @u_volt:     Voltage in uVolts for this OPP
386  *
387  * This function adds an opp definition to the opp list and returns status.
388  * The opp is made available by default and it can be controlled using
389  * dev_pm_opp_enable/disable functions.
390  *
391  * Locking: The internal device_opp and opp structures are RCU protected.
392  * Hence this function internally uses RCU updater strategy with mutex locks
393  * to keep the integrity of the internal data structures. Callers should ensure
394  * that this function is *NOT* called under RCU protection or in contexts where
395  * mutex cannot be locked.
396  */
397 int dev_pm_opp_add(struct device *dev, unsigned long freq, unsigned long u_volt)
398 {
399         struct device_opp *dev_opp = NULL;
400         struct dev_pm_opp *opp, *new_opp;
401         struct list_head *head;
402
403         /* allocate new OPP node */
404         new_opp = kzalloc(sizeof(*new_opp), GFP_KERNEL);
405         if (!new_opp) {
406                 dev_warn(dev, "%s: Unable to create new OPP node\n", __func__);
407                 return -ENOMEM;
408         }
409
410         /* Hold our list modification lock here */
411         mutex_lock(&dev_opp_list_lock);
412
413         /* Check for existing list for 'dev' */
414         dev_opp = find_device_opp(dev);
415         if (IS_ERR(dev_opp)) {
416                 /*
417                  * Allocate a new device OPP table. In the infrequent case
418                  * where a new device is needed to be added, we pay this
419                  * penalty.
420                  */
421                 dev_opp = kzalloc(sizeof(struct device_opp), GFP_KERNEL);
422                 if (!dev_opp) {
423                         mutex_unlock(&dev_opp_list_lock);
424                         kfree(new_opp);
425                         dev_warn(dev,
426                                 "%s: Unable to create device OPP structure\n",
427                                 __func__);
428                         return -ENOMEM;
429                 }
430
431                 dev_opp->dev = dev;
432                 srcu_init_notifier_head(&dev_opp->head);
433                 INIT_LIST_HEAD(&dev_opp->opp_list);
434
435                 /* Secure the device list modification */
436                 list_add_rcu(&dev_opp->node, &dev_opp_list);
437         }
438
439         /* populate the opp table */
440         new_opp->dev_opp = dev_opp;
441         new_opp->rate = freq;
442         new_opp->u_volt = u_volt;
443         new_opp->available = true;
444
445         /* Insert new OPP in order of increasing frequency */
446         head = &dev_opp->opp_list;
447         list_for_each_entry_rcu(opp, &dev_opp->opp_list, node) {
448                 if (new_opp->rate < opp->rate)
449                         break;
450                 else
451                         head = &opp->node;
452         }
453
454         list_add_rcu(&new_opp->node, head);
455         mutex_unlock(&dev_opp_list_lock);
456
457         /*
458          * Notify the changes in the availability of the operable
459          * frequency/voltage list.
460          */
461         srcu_notifier_call_chain(&dev_opp->head, OPP_EVENT_ADD, new_opp);
462         return 0;
463 }
464 EXPORT_SYMBOL_GPL(dev_pm_opp_add);
465
466 /**
467  * opp_set_availability() - helper to set the availability of an opp
468  * @dev:                device for which we do this operation
469  * @freq:               OPP frequency to modify availability
470  * @availability_req:   availability status requested for this opp
471  *
472  * Set the availability of an OPP with an RCU operation, opp_{enable,disable}
473  * share a common logic which is isolated here.
474  *
475  * Returns -EINVAL for bad pointers, -ENOMEM if no memory available for the
476  * copy operation, returns 0 if no modifcation was done OR modification was
477  * successful.
478  *
479  * Locking: The internal device_opp and opp structures are RCU protected.
480  * Hence this function internally uses RCU updater strategy with mutex locks to
481  * keep the integrity of the internal data structures. Callers should ensure
482  * that this function is *NOT* called under RCU protection or in contexts where
483  * mutex locking or synchronize_rcu() blocking calls cannot be used.
484  */
485 static int opp_set_availability(struct device *dev, unsigned long freq,
486                 bool availability_req)
487 {
488         struct device_opp *tmp_dev_opp, *dev_opp = ERR_PTR(-ENODEV);
489         struct dev_pm_opp *new_opp, *tmp_opp, *opp = ERR_PTR(-ENODEV);
490         int r = 0;
491
492         /* keep the node allocated */
493         new_opp = kmalloc(sizeof(*new_opp), GFP_KERNEL);
494         if (!new_opp) {
495                 dev_warn(dev, "%s: Unable to create OPP\n", __func__);
496                 return -ENOMEM;
497         }
498
499         mutex_lock(&dev_opp_list_lock);
500
501         /* Find the device_opp */
502         list_for_each_entry(tmp_dev_opp, &dev_opp_list, node) {
503                 if (dev == tmp_dev_opp->dev) {
504                         dev_opp = tmp_dev_opp;
505                         break;
506                 }
507         }
508         if (IS_ERR(dev_opp)) {
509                 r = PTR_ERR(dev_opp);
510                 dev_warn(dev, "%s: Device OPP not found (%d)\n", __func__, r);
511                 goto unlock;
512         }
513
514         /* Do we have the frequency? */
515         list_for_each_entry(tmp_opp, &dev_opp->opp_list, node) {
516                 if (tmp_opp->rate == freq) {
517                         opp = tmp_opp;
518                         break;
519                 }
520         }
521         if (IS_ERR(opp)) {
522                 r = PTR_ERR(opp);
523                 goto unlock;
524         }
525
526         /* Is update really needed? */
527         if (opp->available == availability_req)
528                 goto unlock;
529         /* copy the old data over */
530         *new_opp = *opp;
531
532         /* plug in new node */
533         new_opp->available = availability_req;
534
535         list_replace_rcu(&opp->node, &new_opp->node);
536         mutex_unlock(&dev_opp_list_lock);
537         kfree_rcu(opp, head);
538
539         /* Notify the change of the OPP availability */
540         if (availability_req)
541                 srcu_notifier_call_chain(&dev_opp->head, OPP_EVENT_ENABLE,
542                                          new_opp);
543         else
544                 srcu_notifier_call_chain(&dev_opp->head, OPP_EVENT_DISABLE,
545                                          new_opp);
546
547         return 0;
548
549 unlock:
550         mutex_unlock(&dev_opp_list_lock);
551         kfree(new_opp);
552         return r;
553 }
554
555 /**
556  * dev_pm_opp_enable() - Enable a specific OPP
557  * @dev:        device for which we do this operation
558  * @freq:       OPP frequency to enable
559  *
560  * Enables a provided opp. If the operation is valid, this returns 0, else the
561  * corresponding error value. It is meant to be used for users an OPP available
562  * after being temporarily made unavailable with dev_pm_opp_disable.
563  *
564  * Locking: The internal device_opp and opp structures are RCU protected.
565  * Hence this function indirectly uses RCU and mutex locks to keep the
566  * integrity of the internal data structures. Callers should ensure that
567  * this function is *NOT* called under RCU protection or in contexts where
568  * mutex locking or synchronize_rcu() blocking calls cannot be used.
569  */
570 int dev_pm_opp_enable(struct device *dev, unsigned long freq)
571 {
572         return opp_set_availability(dev, freq, true);
573 }
574 EXPORT_SYMBOL_GPL(dev_pm_opp_enable);
575
576 /**
577  * dev_pm_opp_disable() - Disable a specific OPP
578  * @dev:        device for which we do this operation
579  * @freq:       OPP frequency to disable
580  *
581  * Disables a provided opp. If the operation is valid, this returns
582  * 0, else the corresponding error value. It is meant to be a temporary
583  * control by users to make this OPP not available until the circumstances are
584  * right to make it available again (with a call to dev_pm_opp_enable).
585  *
586  * Locking: The internal device_opp and opp structures are RCU protected.
587  * Hence this function indirectly uses RCU and mutex locks to keep the
588  * integrity of the internal data structures. Callers should ensure that
589  * this function is *NOT* called under RCU protection or in contexts where
590  * mutex locking or synchronize_rcu() blocking calls cannot be used.
591  */
592 int dev_pm_opp_disable(struct device *dev, unsigned long freq)
593 {
594         return opp_set_availability(dev, freq, false);
595 }
596 EXPORT_SYMBOL_GPL(dev_pm_opp_disable);
597
598 /**
599  * dev_pm_opp_get_notifier() - find notifier_head of the device with opp
600  * @dev:        device pointer used to lookup device OPPs.
601  */
602 struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev)
603 {
604         struct device_opp *dev_opp = find_device_opp(dev);
605
606         if (IS_ERR(dev_opp))
607                 return ERR_CAST(dev_opp); /* matching type */
608
609         return &dev_opp->head;
610 }
611
612 #ifdef CONFIG_OF
613 /**
614  * of_init_opp_table() - Initialize opp table from device tree
615  * @dev:        device pointer used to lookup device OPPs.
616  *
617  * Register the initial OPP table with the OPP library for given device.
618  */
619 int of_init_opp_table(struct device *dev)
620 {
621         const struct property *prop;
622         const __be32 *val;
623         int nr;
624
625         prop = of_find_property(dev->of_node, "operating-points", NULL);
626         if (!prop)
627                 return -ENODEV;
628         if (!prop->value)
629                 return -ENODATA;
630
631         /*
632          * Each OPP is a set of tuples consisting of frequency and
633          * voltage like <freq-kHz vol-uV>.
634          */
635         nr = prop->length / sizeof(u32);
636         if (nr % 2) {
637                 dev_err(dev, "%s: Invalid OPP list\n", __func__);
638                 return -EINVAL;
639         }
640
641         val = prop->value;
642         while (nr) {
643                 unsigned long freq = be32_to_cpup(val++) * 1000;
644                 unsigned long volt = be32_to_cpup(val++);
645
646                 if (dev_pm_opp_add(dev, freq, volt)) {
647                         dev_warn(dev, "%s: Failed to add OPP %ld\n",
648                                  __func__, freq);
649                         continue;
650                 }
651                 nr -= 2;
652         }
653
654         return 0;
655 }
656 EXPORT_SYMBOL_GPL(of_init_opp_table);
657 #endif