linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] thermal for v5.15-rc1
@ 2021-09-11 11:32 Daniel Lezcano
  2021-09-11 17:30 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Lezcano @ 2021-09-11 11:32 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Linux Kernel Mailing List, Linux PM mailing list,
	Dmitry Osipenko, Dan Carpenter, Sumeet Pawnikar,
	Niklas Söderlund, Daniel Lezcano, Sebastian Andrzej Siewior,
	Maxime Ripard, Arnd Bergmann, Geert Uytterhoeven, Thara Gopinath,
	Matthias Kaehlcke, Zhang Rui, Rafael J. Wysocki


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

-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] thermal for v5.15-rc1
  2021-09-11 11:32 [GIT PULL] thermal for v5.15-rc1 Daniel Lezcano
@ 2021-09-11 17:30 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-09-11 17:30 UTC (permalink / raw)
  To: Daniel Lezcano
  Cc: Linus Torvalds, Linux Kernel Mailing List, Linux PM mailing list,
	Dmitry Osipenko, Dan Carpenter, Sumeet Pawnikar,
	Niklas Söderlund, Daniel Lezcano, Sebastian Andrzej Siewior,
	Maxime Ripard, Arnd Bergmann, Geert Uytterhoeven, Thara Gopinath,
	Matthias Kaehlcke, Zhang Rui, Rafael J. Wysocki

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!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-11 17:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-11 11:32 [GIT PULL] thermal for v5.15-rc1 Daniel Lezcano
2021-09-11 17:30 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).