mbox series

[GIT,PULL] thermal for v5.15-rc1

Message ID 1fc67de6-86b4-3ed5-cab0-cb8412c8e22a@linaro.org (mailing list archive)
State Mainlined, archived
Headers show
Series [GIT,PULL] thermal for v5.15-rc1 | expand

Pull-request

ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git tags/thermal-v5.15-rc1

Message

Daniel Lezcano Sept. 11, 2021, 11:32 a.m. UTC
Hi Linus,

The following changes since commit e73f0f0ee7541171d89f2e2491130c7771ba58d3:

  Linux 5.14-rc1 (2021-07-11 15:07:40 -0700)

are available in the Git repository at:


ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
tags/thermal-v5.15-rc1

for you to fetch changes up to 70ee251ded6ba24c15537f4abb8a318e233d0d1a:

  thermal/drivers/qcom/spmi-adc-tm5: Don't abort probing if a sensor is
not used (2021-09-09 16:33:29 +0200)

----------------------------------------------------------------
- Add the tegra3 thermal sensor and fix the compilation testing on
  tegra by adding a dependency on ARCH_TEGRA along with COMPILE_TEST
  (Dmitry Osipenko)

- Fix the error code for the exynos when devm_get_clk() fails (Dan
  Carpenter)

- Add the TCC cooling support for AlderLake platform (Sumeet Pawnikar)

- Add support for hardware trip points for the rcar gen3 thermal
  driver and store TSC id as unsigned int (Niklas Söderlund)

- Replace the deprecated CPU-hotplug functions get_online_cpus() and
  put_online_cpus (Sebastian Andrzej Siewior)

- Add the thermal tools directory in the MAINTAINERS file (Daniel
  Lezcano)

- Fix the Makefile and the cross compilation flags for the userspace
  'tmon' tool (Rolf Eike Beer)

- Allow to use the IMOK independently from the GDDV on Int340x (Sumeet
  Pawnikar)

- Fix the stub thermal_cooling_device_register() function prototype
  which does not match the real function (Arnd Bergmann)

- Make the thermal trip point optional in the DT bindings (Maxime
  Ripard)

- Fix a typo in a comment in the core code (Geert Uytterhoeven)

- Reduce the verbosity of the trace in the SoC thermal tegra driver
  (Dmitry Osipenko)

- Add the support for the LMh (Limit Management hardware) driver on
  the QCom platforms (Thara Gopinath)

- Allow processing of HWP interrupt by adding a weak function in the
  Intel driver (Srinivas Pandruvada)

- Prevent an abort of the sensor probe is a channel is not used
  (Matthias Kaehlcke)

----------------------------------------------------------------
Arnd Bergmann (1):
      thermal/core: Fix thermal_cooling_device_register() prototype

Dan Carpenter (1):
      thermal/drivers/exynos: Fix an error code in exynos_tmu_probe()

Daniel Lezcano (1):
      MAINTAINERS: Add missing userspace thermal tools to the thermal
section

Dmitry Osipenko (3):
      thermal/drivers/tegra: Add driver for Tegra30 thermal sensor
      thermal/drivers/tegra: Correct compile-testing of drivers
      thermal/drivers/tegra-soctherm: Silence message about clamped
temperature

Geert Uytterhoeven (1):
      thermal: Spelling s/scallbacks/callbacks/

Matthias Kaehlcke (1):
      thermal/drivers/qcom/spmi-adc-tm5: Don't abort probing if a sensor
is not used

Maxime Ripard (1):
      dt-bindings: thermal: Make trips node optional

Niklas Söderlund (2):
      thermal/drivers/rcar_gen3_thermal: Add support for hardware trip
points
      thermal/drivers/rcar_gen3_thermal: Store TSC id as unsigned int

Rolf Eike Beer (2):
      thermal/tools/tmon: Improve the Makefile
      tools/thermal/tmon: Add cross compiling support

Sebastian Andrzej Siewior (1):
      thermal/drivers/intel_powerclamp: Replace deprecated CPU-hotplug
functions.

Srinivas Pandruvada (1):
      thermal/drivers/intel: Allow processing of HWP interrupt

Sumeet Pawnikar (2):
      drivers/thermal/intel: Add TCC cooling support for AlderLake platform
      thermal/drivers/int340x: Use IMOK independently

Thara Gopinath (3):
      firmware: qcom_scm: Introduce SCM calls to access LMh
      thermal/drivers/qcom: Add support for LMh driver
      dt-bindings: thermal: Add dt binding for QCOM LMh

 .../devicetree/bindings/thermal/qcom-lmh.yaml      |  82 +++
 .../devicetree/bindings/thermal/thermal-zones.yaml |   2 +-
 MAINTAINERS                                        |   1 +
 drivers/firmware/qcom_scm.c                        |  58 ++
 drivers/firmware/qcom_scm.h                        |   4 +
 .../intel/int340x_thermal/int3400_thermal.c        |  14 +-
 drivers/thermal/intel/intel_powerclamp.c           |   4 +-
 drivers/thermal/intel/intel_tcc_cooling.c          |   2 +
 drivers/thermal/intel/therm_throt.c                |   7 +-
 drivers/thermal/intel/thermal_interrupt.h          |   3 +
 drivers/thermal/qcom/Kconfig                       |  10 +
 drivers/thermal/qcom/Makefile                      |   1 +
 drivers/thermal/qcom/lmh.c                         | 232 +++++++
 drivers/thermal/qcom/qcom-spmi-adc-tm5.c           |   6 +
 drivers/thermal/rcar_gen3_thermal.c                | 110 +++-
 drivers/thermal/samsung/exynos_tmu.c               |   1 +
 drivers/thermal/tegra/Kconfig                      |   9 +-
 drivers/thermal/tegra/Makefile                     |   1 +
 drivers/thermal/tegra/soctherm.c                   |   4 +-
 drivers/thermal/tegra/tegra30-tsensor.c            | 673
+++++++++++++++++++++
 include/linux/qcom_scm.h                           |  14 +
 include/linux/thermal.h                            |   7 +-
 tools/thermal/tmon/Makefile                        |  10 +-
 23 files changed, 1230 insertions(+), 25 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/thermal/qcom-lmh.yaml
 create mode 100644 drivers/thermal/qcom/lmh.c
 create mode 100644 drivers/thermal/tegra/tegra30-tsensor.c

Comments

pr-tracker-bot@kernel.org Sept. 11, 2021, 5:30 p.m. UTC | #1
The pull request you sent on Sat, 11 Sep 2021 13:32:43 +0200:

> ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git tags/thermal-v5.15-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/dd4703876ea83b5fb5f4f0a1ec58f786143f5064

Thank you!