Message ID | 431a7a5803b4a552dfe2a71700e19b904c6d16dc.1507703370.git.viresh.kumar@linaro.org |
---|---|
State | New |
Headers | show |
Series | PM / Domains: Performance state support | expand |
On 12 October 2017 at 09:09, Viresh Kumar <viresh.kumar@linaro.org> wrote: > Some platforms have the capability to configure the performance state of > PM domains. This patch enhances the genpd core to support such > platforms. > > The performance levels (within the genpd core) are identified by > positive integer values, a lower value represents lower performance > state. > > This patch adds a new genpd API, which is called by user drivers (like > OPP framework): > > - int dev_pm_genpd_set_performance_state(struct device *dev, > unsigned int state); > > This updates the performance state constraint of the device on its PM > domain. On success, the genpd will have its performance state set to a > value which is >= "state" passed to this routine. The genpd core calls > the genpd->set_performance_state() callback, if implemented, > else -ENODEV is returned to the caller. > > The PM domain drivers need to implement the following callback if they > want to support performance states. > > - int (*set_performance_state)(struct generic_pm_domain *genpd, > unsigned int state); > > This is called internally by the genpd core on several occasions. The > genpd core passes the genpd pointer and the aggregate of the > performance states of the devices supported by that genpd to this > callback. This callback must update the performance state of the genpd > (in a platform dependent way). > > The power domains can avoid supplying above callback, if they don't > support setting performance-states. > > Currently we aren't propagating performance state changes of a subdomain > to its masters as we don't have hardware that needs it right now. Over > that, the performance states of subdomain and its masters may not have > one-to-one mapping and would require additional information. We can get > back to this once we have hardware that needs it. > > Tested-by: Rajendra Nayak <rnayak@codeaurora.org> > Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> > --- > Only the first patch has got updates (out of the first 3 patches, which > are going to get applied for now) and so I am resending only the first > one here. > > V12: > - Always allow setting performance state, even if genpd is off. Don't > call the callback in that case. > - Set performance state only when powering ON the genpd and not during > power OFF. The driver can take care of it. > - Merge several routines and remove unnecessary locking. > - Update comments and log a bit. > > drivers/base/power/domain.c | 89 +++++++++++++++++++++++++++++++++++++++++++++ > include/linux/pm_domain.h | 12 ++++++ > 2 files changed, 101 insertions(+) > > diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c > index a6e4c8d7d837..735850893882 100644 > --- a/drivers/base/power/domain.c > +++ b/drivers/base/power/domain.c > @@ -237,6 +237,86 @@ static void genpd_update_accounting(struct generic_pm_domain *genpd) > static inline void genpd_update_accounting(struct generic_pm_domain *genpd) {} > #endif > > +/** > + * dev_pm_genpd_set_performance_state- Set performance state of device's power > + * domain. > + * > + * @dev: Device for which the performance-state needs to be set. > + * @state: Target performance state of the device. This can be set as 0 when the > + * device doesn't have any performance state constraints left (And so > + * the device wouldn't participate anymore to find the target > + * performance state of the genpd). > + * > + * It is assumed that the users guarantee that the genpd wouldn't be detached > + * while this routine is getting called. > + * > + * Returns 0 on success and negative error values on failures. > + */ > +int dev_pm_genpd_set_performance_state(struct device *dev, unsigned int state) > +{ > + struct generic_pm_domain *genpd; > + struct generic_pm_domain_data *pd_data; > + struct pm_domain_data *pdd; > + int ret = 0; > + > + genpd = dev_to_genpd(dev); > + if (IS_ERR(genpd)) > + return -ENODEV; > + > + if (!genpd->set_performance_state) > + return -EINVAL; > + > + if (!dev->power.subsys_data || !dev->power.subsys_data->domain_data) { > + WARN_ON(1); > + return -EINVAL; > + } > + > + genpd_lock(genpd); > + > + /* New requested state is same as Max requested state */ > + if (state == genpd->performance_state) > + return 0; You can't just return 0 here. 1) The lock must be released. 2) You need to update the device's performance_state (pd_data->performance_state = state) > + > + /* New requested state is higher than Max requested state */ > + if (state > genpd->performance_state) > + goto update_state; > + > + /* Traverse all devices within the domain */ > + list_for_each_entry(pdd, &genpd->dev_list, list_node) { > + pd_data = to_gpd_data(pdd); > + > + if (pd_data->performance_state > state) > + state = pd_data->performance_state; > + } > + > + /* > + * We aren't propagating performance state changes of a subdomain to its > + * masters as we don't have hardware that needs it. Over that, the > + * performance states of subdomain and its masters may not have > + * one-to-one mapping and would require additional information. We can > + * get back to this once we have hardware that needs it. For that > + * reason, we don't have to consider performance state of the subdomains > + * of genpd here. > + */ > + > +update_state: > + if (genpd_status_on(genpd)) { > + ret = genpd->set_performance_state(genpd, state); > + if (ret) > + goto unlock; > + } > + > + genpd->performance_state = state; > + pd_data = to_gpd_data(dev->power.subsys_data->domain_data); > + pd_data->performance_state = state; > + > +unlock: > + genpd_unlock(genpd); > + > + return ret; > +} > +EXPORT_SYMBOL_GPL(dev_pm_genpd_set_performance_state); > + > static int _genpd_power_on(struct generic_pm_domain *genpd, bool timed) > { > unsigned int state_idx = genpd->state_idx; > @@ -256,6 +336,15 @@ static int _genpd_power_on(struct generic_pm_domain *genpd, bool timed) > return ret; > > elapsed_ns = ktime_to_ns(ktime_sub(ktime_get(), time_start)); > + > + if (unlikely(genpd->performance_state)) { If the aggregated performance_state has been decreased to 0 while the genpd was powered off, then I think you need to set the performance state to zero as well. Perhaps better to check if (genpd->set_performance_state) and if assigned, call it with whatever value genpd->performance_state has. > + ret = genpd->set_performance_state(genpd, genpd->performance_state); > + if (ret) { > + pr_warn("%s: Failed to set performance state %d (%d)\n", > + genpd->name, genpd->performance_state, ret); > + } > + } > + > if (elapsed_ns <= genpd->states[state_idx].power_on_latency_ns) > return ret; > > diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h > index 84f423d5633e..3f8de25418a8 100644 > --- a/include/linux/pm_domain.h > +++ b/include/linux/pm_domain.h > @@ -64,8 +64,11 @@ struct generic_pm_domain { > unsigned int device_count; /* Number of devices */ > unsigned int suspended_count; /* System suspend device counter */ > unsigned int prepared_count; /* Suspend counter of prepared devices */ > + unsigned int performance_state; /* Max requested performance state */ > int (*power_off)(struct generic_pm_domain *domain); > int (*power_on)(struct generic_pm_domain *domain); > + int (*set_performance_state)(struct generic_pm_domain *genpd, > + unsigned int state); > struct gpd_dev_ops dev_ops; > s64 max_off_time_ns; /* Maximum allowed "suspended" time. */ > bool max_off_time_changed; > @@ -121,6 +124,7 @@ struct generic_pm_domain_data { > struct pm_domain_data base; > struct gpd_timing_data td; > struct notifier_block nb; > + unsigned int performance_state; > void *data; > }; > > @@ -148,6 +152,8 @@ extern int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd, > extern int pm_genpd_init(struct generic_pm_domain *genpd, > struct dev_power_governor *gov, bool is_off); > extern int pm_genpd_remove(struct generic_pm_domain *genpd); > +extern int dev_pm_genpd_set_performance_state(struct device *dev, > + unsigned int state); > > extern struct dev_power_governor simple_qos_governor; > extern struct dev_power_governor pm_domain_always_on_gov; > @@ -188,6 +194,12 @@ static inline int pm_genpd_remove(struct generic_pm_domain *genpd) > return -ENOTSUPP; > } > > +static inline int dev_pm_genpd_set_performance_state(struct device *dev, > + unsigned int state) > +{ > + return -ENOTSUPP; > +} > + > #define simple_qos_governor (*(struct dev_power_governor *)(NULL)) > #define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL)) > #endif > -- > 2.15.0.rc1.236.g92ea95045093 > Kind regards Uffe
On 12 October 2017 at 11:37, Viresh Kumar <viresh.kumar@linaro.org> wrote: > Some platforms have the capability to configure the performance state of > PM domains. This patch enhances the genpd core to support such > platforms. > > The performance levels (within the genpd core) are identified by > positive integer values, a lower value represents lower performance > state. > > This patch adds a new genpd API, which is called by user drivers (like > OPP framework): > > - int dev_pm_genpd_set_performance_state(struct device *dev, > unsigned int state); > > This updates the performance state constraint of the device on its PM > domain. On success, the genpd will have its performance state set to a > value which is >= "state" passed to this routine. The genpd core calls > the genpd->set_performance_state() callback, if implemented, > else -ENODEV is returned to the caller. > > The PM domain drivers need to implement the following callback if they > want to support performance states. > > - int (*set_performance_state)(struct generic_pm_domain *genpd, > unsigned int state); > > This is called internally by the genpd core on several occasions. The > genpd core passes the genpd pointer and the aggregate of the > performance states of the devices supported by that genpd to this > callback. This callback must update the performance state of the genpd > (in a platform dependent way). > > The power domains can avoid supplying above callback, if they don't > support setting performance-states. > > Currently we aren't propagating performance state changes of a subdomain > to its masters as we don't have hardware that needs it right now. Over > that, the performance states of subdomain and its masters may not have > one-to-one mapping and would require additional information. We can get > back to this once we have hardware that needs it. > > Tested-by: Rajendra Nayak <rnayak@codeaurora.org> > Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Yeah, this looks nice a clean now! Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Kind regards Uffe > --- > V13: > - Don't return directly from a locked section, drop the lock as well. > - Update the performance_state field for the device even in the case > state == genpd->performance_state. > - Always call genpd->set_performance_state() from power-on. > - Update device's performance state before traversing the list of > devices to find highest state, otherwise we will take previous state > of the device into account. > - Check state again after traversing the list of devices to see if state > changed. > > drivers/base/power/domain.c | 98 +++++++++++++++++++++++++++++++++++++++++++++ > include/linux/pm_domain.h | 12 ++++++ > 2 files changed, 110 insertions(+) > > diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c > index a6e4c8d7d837..7e01ae364d78 100644 > --- a/drivers/base/power/domain.c > +++ b/drivers/base/power/domain.c > @@ -237,6 +237,95 @@ static void genpd_update_accounting(struct generic_pm_domain *genpd) > static inline void genpd_update_accounting(struct generic_pm_domain *genpd) {} > #endif > > +/** > + * dev_pm_genpd_set_performance_state- Set performance state of device's power > + * domain. > + * > + * @dev: Device for which the performance-state needs to be set. > + * @state: Target performance state of the device. This can be set as 0 when the > + * device doesn't have any performance state constraints left (And so > + * the device wouldn't participate anymore to find the target > + * performance state of the genpd). > + * > + * It is assumed that the users guarantee that the genpd wouldn't be detached > + * while this routine is getting called. > + * > + * Returns 0 on success and negative error values on failures. > + */ > +int dev_pm_genpd_set_performance_state(struct device *dev, unsigned int state) > +{ > + struct generic_pm_domain *genpd; > + struct generic_pm_domain_data *gpd_data, *pd_data; > + struct pm_domain_data *pdd; > + unsigned int prev; > + int ret = 0; > + > + genpd = dev_to_genpd(dev); > + if (IS_ERR(genpd)) > + return -ENODEV; > + > + if (unlikely(!genpd->set_performance_state)) > + return -EINVAL; > + > + if (unlikely(!dev->power.subsys_data || > + !dev->power.subsys_data->domain_data)) { > + WARN_ON(1); > + return -EINVAL; > + } > + > + genpd_lock(genpd); > + > + gpd_data = to_gpd_data(dev->power.subsys_data->domain_data); > + prev = gpd_data->performance_state; > + gpd_data->performance_state = state; > + > + /* New requested state is same as Max requested state */ > + if (state == genpd->performance_state) > + goto unlock; > + > + /* New requested state is higher than Max requested state */ > + if (state > genpd->performance_state) > + goto update_state; > + > + /* Traverse all devices within the domain */ > + list_for_each_entry(pdd, &genpd->dev_list, list_node) { > + pd_data = to_gpd_data(pdd); > + > + if (pd_data->performance_state > state) > + state = pd_data->performance_state; > + } > + > + if (state == genpd->performance_state) > + goto unlock; > + > + /* > + * We aren't propagating performance state changes of a subdomain to its > + * masters as we don't have hardware that needs it. Over that, the > + * performance states of subdomain and its masters may not have > + * one-to-one mapping and would require additional information. We can > + * get back to this once we have hardware that needs it. For that > + * reason, we don't have to consider performance state of the subdomains > + * of genpd here. > + */ > + > +update_state: > + if (genpd_status_on(genpd)) { > + ret = genpd->set_performance_state(genpd, state); > + if (ret) { > + gpd_data->performance_state = prev; > + goto unlock; > + } > + } > + > + genpd->performance_state = state; > + > +unlock: > + genpd_unlock(genpd); > + > + return ret; > +} > +EXPORT_SYMBOL_GPL(dev_pm_genpd_set_performance_state); > + > static int _genpd_power_on(struct generic_pm_domain *genpd, bool timed) > { > unsigned int state_idx = genpd->state_idx; > @@ -256,6 +345,15 @@ static int _genpd_power_on(struct generic_pm_domain *genpd, bool timed) > return ret; > > elapsed_ns = ktime_to_ns(ktime_sub(ktime_get(), time_start)); > + > + if (unlikely(genpd->set_performance_state)) { > + ret = genpd->set_performance_state(genpd, genpd->performance_state); > + if (ret) { > + pr_warn("%s: Failed to set performance state %d (%d)\n", > + genpd->name, genpd->performance_state, ret); > + } > + } > + > if (elapsed_ns <= genpd->states[state_idx].power_on_latency_ns) > return ret; > > diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h > index 84f423d5633e..9af0356bd69c 100644 > --- a/include/linux/pm_domain.h > +++ b/include/linux/pm_domain.h > @@ -64,8 +64,11 @@ struct generic_pm_domain { > unsigned int device_count; /* Number of devices */ > unsigned int suspended_count; /* System suspend device counter */ > unsigned int prepared_count; /* Suspend counter of prepared devices */ > + unsigned int performance_state; /* Aggregated max performance state */ > int (*power_off)(struct generic_pm_domain *domain); > int (*power_on)(struct generic_pm_domain *domain); > + int (*set_performance_state)(struct generic_pm_domain *genpd, > + unsigned int state); > struct gpd_dev_ops dev_ops; > s64 max_off_time_ns; /* Maximum allowed "suspended" time. */ > bool max_off_time_changed; > @@ -121,6 +124,7 @@ struct generic_pm_domain_data { > struct pm_domain_data base; > struct gpd_timing_data td; > struct notifier_block nb; > + unsigned int performance_state; > void *data; > }; > > @@ -148,6 +152,8 @@ extern int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd, > extern int pm_genpd_init(struct generic_pm_domain *genpd, > struct dev_power_governor *gov, bool is_off); > extern int pm_genpd_remove(struct generic_pm_domain *genpd); > +extern int dev_pm_genpd_set_performance_state(struct device *dev, > + unsigned int state); > > extern struct dev_power_governor simple_qos_governor; > extern struct dev_power_governor pm_domain_always_on_gov; > @@ -188,6 +194,12 @@ static inline int pm_genpd_remove(struct generic_pm_domain *genpd) > return -ENOTSUPP; > } > > +static inline int dev_pm_genpd_set_performance_state(struct device *dev, > + unsigned int state) > +{ > + return -ENOTSUPP; > +} > + > #define simple_qos_governor (*(struct dev_power_governor *)(NULL)) > #define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL)) > #endif > -- > 2.15.0.rc1.236.g92ea95045093 >
On 16-10-17, 03:59, Kevin Hilman wrote: > I have some usecases in mind where the performance state might need to > be selected based on OPP voltage, but that's now a change that can be > added later when that feature is needed. I will be more than happy to get that in. > Reviewed-by: Kevin Hilman <khilman@baylibre.com> Thanks. Do you think its a good time to get some bindings for this stuff now? The bindings would be required for only users and not PM domains themselves for now. Users are: - OPP core: need per-OPP entry value for performance state. - Devices: devices directly using the PM domain without OPP core (don't have DVFS). They can use the same property. It might look similar to the properties I initially started with, I can just get them refreshed. -- viresh
diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c index a6e4c8d7d837..b8360bc6a8eb 100644 --- a/drivers/base/power/domain.c +++ b/drivers/base/power/domain.c @@ -237,6 +237,169 @@ static void genpd_update_accounting(struct generic_pm_domain *genpd) static inline void genpd_update_accounting(struct generic_pm_domain *genpd) {} #endif +/* Returns negative errors or 0 on success */ +static int _genpd_set_performance_state(struct generic_pm_domain *genpd, + int state) +{ + int ret; + + ret = genpd->genpd_set_performance_state(genpd, state); + if (!ret) + genpd->performance_state = state; + + return ret; +} + +/* + * Re-evaluate performance state of a genpd. Finds the highest requested + * performance state by the devices within the genpd and then change genpd's + * performance state (if required). + * + * @genpd: PM domain whose state needs to be reevaluated. + * @state: Newly requested performance state of the device for which this + * routine is called. + * + * Returns negative errors or 0 on success. + */ +static int _genpd_reeval_performance_state(struct generic_pm_domain *genpd, + int state) +{ + struct generic_pm_domain_data *pd_data; + struct pm_domain_data *pdd; + + /* New requested state is same as Max requested state */ + if (state == genpd->performance_state) + return 0; + + /* New requested state is higher than Max requested state */ + if (state > genpd->performance_state) + goto update_state; + + /* Traverse all devices within the domain */ + list_for_each_entry(pdd, &genpd->dev_list, list_node) { + pd_data = to_gpd_data(pdd); + + if (pd_data->performance_state > state) + state = pd_data->performance_state; + } + + /* + * TODO: Traverse all subdomains of the genpd. This will be + * required once we have hardware that needs to propagate the + * performance state changes. + */ + +update_state: + return _genpd_set_performance_state(genpd, state); +} + +static void __genpd_dev_update_performance_state(struct device *dev, int state) +{ + struct generic_pm_domain_data *gpd_data; + + spin_lock_irq(&dev->power.lock); + + if (!dev->power.subsys_data || !dev->power.subsys_data->domain_data) { + WARN_ON(1); + goto unlock; + } + + gpd_data = to_gpd_data(dev->power.subsys_data->domain_data); + gpd_data->performance_state = state; + +unlock: + spin_unlock_irq(&dev->power.lock); +} + +/** + * dev_pm_genpd_set_performance_state- Set performance state of device's power + * domain. + * + * @dev: Device for which the performance-state needs to be adjusted. + * @state: Target performance state of the device. This can be set as 0 when the + * device doesn't have any performance state constraints left (And so + * the device wouldn't participate anymore to find the target + * performance state of the genpd). + * + * It is assumed that the user driver guarantees that the genpd wouldn't be + * detached while this routine is getting called. + * + * Returns 0 on success and negative error values on failures. + */ +int dev_pm_genpd_set_performance_state(struct device *dev, unsigned int state) +{ + struct generic_pm_domain *genpd; + int ret; + + genpd = dev_to_genpd(dev); + if (IS_ERR(genpd)) + return -ENODEV; + + genpd_lock(genpd); + + if (!genpd->genpd_set_performance_state) { + ret = -ENODEV; + goto unlock; + } + + if (!genpd_status_on(genpd)) { + ret = -EBUSY; + goto unlock; + } + + ret = _genpd_reeval_performance_state(genpd, state); + if (!ret) { + /* + * Since we are passing "state" as well to + * _genpd_reeval_performance_state(), we don't need to call + * __genpd_dev_update_performance_state() before updating + * genpd's state with the above call. Update it only after the + * state of master domain is updated. + */ + __genpd_dev_update_performance_state(dev, state); + } + +unlock: + genpd_unlock(genpd); + + return ret; +} +EXPORT_SYMBOL_GPL(dev_pm_genpd_set_performance_state); + +static int _genpd_on_update_performance_state(struct generic_pm_domain *genpd) +{ + int ret, prev = genpd->prev_performance_state; + + if (likely(!prev)) + return 0; + + ret = _genpd_set_performance_state(genpd, prev); + if (ret) { + pr_err("%s: Failed to restore performance state to %d (%d)\n", + genpd->name, prev, ret); + } else { + genpd->prev_performance_state = 0; + } + + return ret; +} + +static void _genpd_off_update_performance_state(struct generic_pm_domain *genpd) +{ + int ret, state = genpd->performance_state; + + if (likely(!state)) + return; + + ret = _genpd_set_performance_state(genpd, 0); + if (ret) { + pr_err("%s: Failed to set performance state to 0 (%d)\n", + genpd->name, ret); + } else { + genpd->prev_performance_state = state; + } +} + static int _genpd_power_on(struct generic_pm_domain *genpd, bool timed) { unsigned int state_idx = genpd->state_idx; @@ -388,6 +551,8 @@ static int genpd_power_off(struct generic_pm_domain *genpd, bool one_dev_on, return ret; } + _genpd_off_update_performance_state(genpd); + genpd->status = GPD_STATE_POWER_OFF; genpd_update_accounting(genpd); @@ -437,15 +602,21 @@ static int genpd_power_on(struct generic_pm_domain *genpd, unsigned int depth) } } - ret = _genpd_power_on(genpd, true); + ret = _genpd_on_update_performance_state(genpd); if (ret) goto err; + ret = _genpd_power_on(genpd, true); + if (ret) + goto err_power_on; + genpd->status = GPD_STATE_ACTIVE; genpd_update_accounting(genpd); return 0; + err_power_on: + _genpd_off_update_performance_state(genpd); err: list_for_each_entry_continue_reverse(link, &genpd->slave_links, @@ -803,6 +974,8 @@ static void genpd_sync_power_off(struct generic_pm_domain *genpd, bool use_lock, if (_genpd_power_off(genpd, false)) return; + _genpd_off_update_performance_state(genpd); + genpd->status = GPD_STATE_POWER_OFF; list_for_each_entry(link, &genpd->slave_links, slave_node) { @@ -848,7 +1021,9 @@ static void genpd_sync_power_on(struct generic_pm_domain *genpd, bool use_lock, genpd_unlock(link->master); } - _genpd_power_on(genpd, false); + if (!_genpd_on_update_performance_state(genpd)) + if (_genpd_power_on(genpd, false)) + _genpd_off_update_performance_state(genpd); genpd->status = GPD_STATE_ACTIVE; } diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h index 84f423d5633e..81d923f058fd 100644 --- a/include/linux/pm_domain.h +++ b/include/linux/pm_domain.h @@ -64,8 +64,12 @@ struct generic_pm_domain { unsigned int device_count; /* Number of devices */ unsigned int suspended_count; /* System suspend device counter */ unsigned int prepared_count; /* Suspend counter of prepared devices */ + unsigned int performance_state; /* Max requested performance state */ + unsigned int prev_performance_state; /* Performance state before power off */ int (*power_off)(struct generic_pm_domain *domain); int (*power_on)(struct generic_pm_domain *domain); + int (*genpd_set_performance_state)(struct generic_pm_domain *genpd, + unsigned int state); struct gpd_dev_ops dev_ops; s64 max_off_time_ns; /* Maximum allowed "suspended" time. */ bool max_off_time_changed; @@ -121,6 +125,7 @@ struct generic_pm_domain_data { struct pm_domain_data base; struct gpd_timing_data td; struct notifier_block nb; + unsigned int performance_state; void *data; }; @@ -148,6 +153,8 @@ extern int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd, extern int pm_genpd_init(struct generic_pm_domain *genpd, struct dev_power_governor *gov, bool is_off); extern int pm_genpd_remove(struct generic_pm_domain *genpd); +extern int dev_pm_genpd_set_performance_state(struct device *dev, + unsigned int state); extern struct dev_power_governor simple_qos_governor; extern struct dev_power_governor pm_domain_always_on_gov; @@ -188,6 +195,12 @@ static inline int pm_genpd_remove(struct generic_pm_domain *genpd) return -ENOTSUPP; } +static inline int dev_pm_genpd_set_performance_state(struct device *dev, + unsigned int state) +{ + return -ENOTSUPP; +} + #define simple_qos_governor (*(struct dev_power_governor *)(NULL)) #define pm_domain_always_on_gov (*(struct dev_power_governor *)(NULL)) #endif