lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Sat, 11 Sep 2021 13:32:43 +0200
From:   Daniel Lezcano <daniel.lezcano@...aro.org>
To:     Linus Torvalds <torvalds@...ux-foundation.org>
Cc:     Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Linux PM mailing list <linux-pm@...r.kernel.org>,
        Dmitry Osipenko <digetx@...il.com>,
        Dan Carpenter <dan.carpenter@...cle.com>,
        Sumeet Pawnikar <sumeet.r.pawnikar@...el.com>,
        Niklas Söderlund 
        <niklas.soderlund+renesas@...natech.se>,
        Daniel Lezcano <daniel.lezcano@...aro.org>,
        Sebastian Andrzej Siewior <bigeasy@...utronix.de>,
        Maxime Ripard <maxime.ripard@...tlin.com>,
        Arnd Bergmann <arnd@...db.de>,
        Geert Uytterhoeven <geert+renesas@...der.be>,
        Thara Gopinath <thara.gopinath@...aro.org>,
        Matthias Kaehlcke <mka@...omium.org>,
        Zhang Rui <rui.zhang@...el.com>,
        "Rafael J. Wysocki" <rjw@...ysocki.net>
Subject: [GIT PULL] thermal for v5.15-rc1


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@...olite.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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ