diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2020-06-10 17:10:30 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2020-06-10 17:10:30 +0200 |
commit | 4c277e2f859694291245701f054962e05c1ca16d (patch) | |
tree | a138d1a6460d2887ed3edc83bed55be9c7cdf8b0 /drivers/cpufreq | |
parent | PM: hibernate: Add __init annotation to swsusp_header_init() (diff) | |
parent | Merge branch 'opp/linux-next' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
download | linux-4c277e2f859694291245701f054962e05c1ca16d.tar.xz linux-4c277e2f859694291245701f054962e05c1ca16d.zip |
Merge branch 'pm-opp'
* pm-opp:
opp: Don't parse icc paths unnecessarily
opp: Remove bandwidth votes when target_freq is zero
opp: core: add regulators enable and disable
opp: Reorder the code for !target_freq case
opp: Expose bandwidth information via debugfs
cpufreq: dt: Add support for interconnect bandwidth scaling
opp: Update the bandwidth on OPP frequency changes
opp: Add sanity checks in _read_opp_key()
opp: Add support for parsing interconnect bandwidth
interconnect: Remove unused module exit code from core
interconnect: Disallow interconnect core to be built as a module
interconnect: Add of_icc_get_by_index() helper function
OPP: Add helpers for reading the binding properties
dt-bindings: opp: Introduce opp-peak-kBps and opp-avg-kBps bindings
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq-dt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq-dt.c b/drivers/cpufreq/cpufreq-dt.c index 26fe8dfb9ce6..79742bbd221f 100644 --- a/drivers/cpufreq/cpufreq-dt.c +++ b/drivers/cpufreq/cpufreq-dt.c @@ -121,6 +121,10 @@ static int resources_available(void) clk_put(cpu_clk); + ret = dev_pm_opp_of_find_icc_paths(cpu_dev, NULL); + if (ret) + return ret; + name = find_supply_name(cpu_dev); /* Platform doesn't require regulator */ if (!name) |