mbox series

[GIT,PULL] OPP updates for 5.18

Message ID 20220322060900.jbghsxop4xe7x6wi@vireshk-i7
State New
Headers show
Series [GIT,PULL] OPP updates for 5.18 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git opp/linux-next

Message

Viresh Kumar March 22, 2022, 6:09 a.m. UTC
Hi Rafael,

Please pull OPP changes for 5.18. The request:

- introduces opp-microwatt property to the OPP core, bindings, etc (Lukasz Luba).

- Converts DT bindings to schema format and various related fixes (Yassine
  Oudjana).

- Expose OPP's OF node in debugfs (Viresh Kumar).

Thanks.

-------------------------8<-------------------------

The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:

  Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git opp/linux-next

for you to fetch changes up to f48a0c475c2aec8f2274703e1dc7be503f40f7cc:

  Documentation: EM: Describe new registration method using DT (2022-03-03 09:35:04 +0530)

----------------------------------------------------------------
Lukasz Luba (5):
      dt-bindings: opp: Add "opp-microwatt" entry in the OPP
      OPP: Add "opp-microwatt" supporting code
      PM: EM: add macro to set .active_power() callback conditionally
      OPP: Add support of "opp-microwatt" for EM registration
      Documentation: EM: Describe new registration method using DT

Viresh Kumar (1):
      opp: Expose of-node's name in debugfs

Yassine Oudjana (7):
      dt-bindings: arm: qcom: Add msm8996 and apq8096 compatibles
      arm64: dts: qcom: msm8996-mtp: Add msm8996 compatible
      dt-bindings: opp: qcom-opp: Convert to DT schema
      dt-bindings: opp: Convert qcom-nvmem-cpufreq to DT schema
      arm64: dts: qcom: msm8996: Rename cluster OPP tables
      arm64: dts: qcom: qcs404: Rename CPU and CPR OPP tables
      dt-bindings: power: avs: qcom,cpr: Convert to DT schema

 Documentation/devicetree/bindings/arm/qcom.yaml    |  16 +-
 .../bindings/cpufreq/qcom-cpufreq-nvmem.yaml       | 166 +++++
 .../devicetree/bindings/opp/opp-v2-base.yaml       |  23 +
 .../devicetree/bindings/opp/opp-v2-kryo-cpu.yaml   | 257 +++++++
 .../devicetree/bindings/opp/opp-v2-qcom-level.yaml |  60 ++
 .../devicetree/bindings/opp/qcom-nvmem-cpufreq.txt | 796 ---------------------
 Documentation/devicetree/bindings/opp/qcom-opp.txt |  19 -
 .../devicetree/bindings/power/avs/qcom,cpr.txt     | 130 ----
 .../devicetree/bindings/power/avs/qcom,cpr.yaml    | 160 +++++
 Documentation/power/energy-model.rst               |  10 +
 MAINTAINERS                                        |   5 +-
 arch/arm64/boot/dts/qcom/msm8996-mtp.dts           |   2 +-
 arch/arm64/boot/dts/qcom/msm8996.dtsi              |   4 +-
 arch/arm64/boot/dts/qcom/qcs404.dtsi               |   4 +-
 drivers/opp/core.c                                 |  25 +
 drivers/opp/debugfs.c                              |   8 +
 drivers/opp/of.c                                   | 108 ++-
 drivers/opp/opp.h                                  |   1 +
 include/linux/energy_model.h                       |   2 +
 include/linux/pm_opp.h                             |  12 +-
 20 files changed, 851 insertions(+), 957 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
 create mode 100644 Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
 create mode 100644 Documentation/devicetree/bindings/opp/opp-v2-qcom-level.yaml
 delete mode 100644 Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
 delete mode 100644 Documentation/devicetree/bindings/opp/qcom-opp.txt
 delete mode 100644 Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
 create mode 100644 Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml