Home
last modified time | relevance | path

Searched hist:"25419 de1b8dda24f3e02478b12b724a9b0cc4e78" (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/drivers/opp/
H A Dcore.cdiff 25419de1b8dda24f3e02478b12b724a9b0cc4e78 Tue May 22 06:08:08 CDT 2018 Viresh Kumar <viresh.kumar@linaro.org> PM / OPP: Fix shared OPP table support in dev_pm_opp_set_supported_hw()

It should be fine to call dev_pm_opp_set_supported_hw() for all possible
CPUs, even if some of them share the OPP table as the caller may not be
aware of sharing policy.

Lets increment the reference count of the OPP table and return its
pointer. The caller need to call dev_pm_opp_put_supported_hw() the same
number of times later on to drop all the references.

To avoid adding another counter to count how many times
dev_pm_opp_set_supported_hw() is called for the same OPP table,
dev_pm_opp_put_supported_hw() frees the resources on the very first call
made to it, assuming that the caller would be calling it sequentially
for all the CPUs. We can revisit that if that assumption is broken in
the future.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>