[GIT PULL] More power management updates for v6.13-rc1

From: Rafael J. Wysocki
Date: Fri Nov 22 2024 - 15:27:02 EST


Hi Linus,

Please pull from the tag

git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git \
pm-6.13-rc1-2

with top-most commit f3e66e78f2ecb18a55374f7d58030556b751dd79

Merge branch 'pm-cpuidle'

on top of commit ad52c55e1d3a2e85e05e47b6d7056c662a9c0246

Merge tag 'pm-6.13-rc1' of
git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

to receive more power management updates for 6.13-rc1.

These mostly are updates of cpufreq drivers used on ARM platforms plus
one new DT-based cpufreq driver for virtualized guests and two cpuidle
changes that should not make any difference on systems currently in
the field, but will be needed for future development:

- Add virtual cpufreq driver for guest kernels (David Dai).

- Minor cleanup to various cpufreq drivers (Andy Shevchenko, Dhruva
Gole, Jie Zhan, Jinjie Ruan, Shuosheng Huang, Sibi Sankar, and Yuan
Can).

- Revert "cpufreq: brcmstb-avs-cpufreq: Fix initial command check" (Colin
Ian King).

- Improve DT bindings for qcom-hw driver (Dmitry Baryshkov, Konrad
Dybcio, and Nikunj Kela).

- Make cpuidle_play_dead() try all idle states with :enter_dead()
callbacks and change their return type to void (Rafael Wysocki).

Thanks!


---------------

Andy Shevchenko (1):
cpufreq: loongson3: Check for error code from devm_mutex_init() call

Colin Ian King (1):
Revert "cpufreq: brcmstb-avs-cpufreq: Fix initial command check"

David Dai (2):
dt-bindings: cpufreq: add virtual cpufreq device
cpufreq: add virtual-cpufreq driver

Dhruva Gole (2):
cpufreq: ti-cpufreq: Allow backward compatibility for efuse syscon
cpufreq: ti-cpufreq: Remove revision offsets in AM62 family

Dmitry Baryshkov (1):
dt-bindings: cpufreq: cpufreq-qcom-hw: Add SAR2130P compatible

Jie Zhan (2):
cppc_cpufreq: Use desired perf if feedback ctrs are 0 or unchanged
cppc_cpufreq: Remove HiSilicon CPPC workaround

Jinjie Ruan (5):
cpufreq: CPPC: Fix possible null-ptr-deref for cpufreq_cpu_get_raw()
cpufreq: CPPC: Fix possible null-ptr-deref for cppc_get_cpu_cost()
cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_cost()
cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_power()
cpufreq: mediatek-hw: Fix wrong return value in
mtk_cpufreq_get_cpu_power()

Konrad Dybcio (2):
dt-bindings: cpufreq: cpufreq-qcom-hw: Add SC8180X compatible
arm64: dts: qcom: sc8180x: Add a SoC-specific compatible to cpufreq-hw

Nikunj Kela (1):
dt-bindings: cpufreq: qcom-hw: document support for SA8255p

Rafael J. Wysocki (2):
cpuidle: Do not return from cpuidle_play_dead() on callback failures
cpuidle: Change :enter_dead() driver callback return type to void

Shuosheng Huang (1):
cpufreq: sun50i: add a100 cpufreq support

Sibi Sankar (1):
cpufreq: scmi: Fix cleanup path when boost enablement fails

Yuan Can (1):
cpufreq: loongson2: Unregister platform_driver on failure

---------------

.../bindings/cpufreq/cpufreq-qcom-hw.yaml | 6 +
.../bindings/cpufreq/qemu,virtual-cpufreq.yaml | 48 +++
arch/arm64/boot/dts/qcom/sc8180x.dtsi | 2 +-
drivers/acpi/processor_idle.c | 7 +-
drivers/cpufreq/Kconfig | 14 +
drivers/cpufreq/Makefile | 1 +
drivers/cpufreq/brcmstb-avs-cpufreq.c | 4 +-
drivers/cpufreq/cppc_cpufreq.c | 136 ++++-----
drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
drivers/cpufreq/loongson2_cpufreq.c | 4 +-
drivers/cpufreq/loongson3_cpufreq.c | 7 +-
drivers/cpufreq/mediatek-cpufreq-hw.c | 2 +-
drivers/cpufreq/scmi-cpufreq.c | 4 +-
drivers/cpufreq/sun50i-cpufreq-nvmem.c | 28 ++
drivers/cpufreq/ti-cpufreq.c | 10 +-
drivers/cpufreq/virtual-cpufreq.c | 333 +++++++++++++++++++++
drivers/cpuidle/cpuidle.c | 10 +-
include/linux/arch_topology.h | 1 +
include/linux/cpuidle.h | 2 +-
19 files changed, 517 insertions(+), 103 deletions(-)