All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zhang Rui <rui.zhang@intel.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Linux PM list <linux-pm@vger.kernel.org>,
	Eduardo Valentin <edubezval@gmail.com>
Subject: [GIT PULL] Thermal management updates for v4.18-rc1 #2
Date: Wed, 13 Jun 2018 00:23:16 +0800	[thread overview]
Message-ID: <1528820596.2661.34.camel@intel.com> (raw)

Hi, Linus,

Please pull from
  git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-
thermal.git linus

to receive the latest Thermal SoC management updates for v4.18-rc1 with
top-most commit 6d7c70d1cd6526dc79e3d3b3faae1c40c1681168:

  thermal: qcom: tsens: Allow number of sensors to come from DT (2018-
06-01 15:09:15 -0700)

on top of commit 701e39d05119229b92ecca4add7b7ed2193622c3:

  Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
(2018-05-06 05:46:29 -1000)

Specifics:

- imx thermal driver now supports i.MX7 thermal sensor (Anson Huang).

- exynos thermal driver dropped support for exynos 5440 (Krzysztof
Kozlowski).

- rcar_thermal now supports r8a77995 (Yoshihiro Kaneko).

- rcar_gen3_thermal now supports r8a77965 (Niklas Söderlund).

- qcom-spmi-temp-alarm now supports GEN2 PMIC peripherals (David
Collins).

- uniphier thermal now supports UniPhier PXs3 (Kunihiko Hayashi).

- mediatek thermal now supports MT7622 SoC (Sean Wang).

- considerable refactoring of exynos driver (Bartlomiej
Zolnierkiewicz).

- Small fixes all over the place on different drivers.

thanks,
rui

----------------------------------------------------------------
Anson Huang (1):
      thermal: imx: add i.MX7 thermal sensor support

Bartlomiej Zolnierkiewicz (28):
      thermal: exynos: remove unused "type" field from struct
exynos_tmu_platform_data
      thermal: exynos: remove parsing of samsung,
tmu_default_temp_offset property
      thermal: exynos: remove parsing of samsung, tmu_[first,
second]_point_trim properties
      thermal: exynos: remove parsing of samsung, tmu_noise_cancel_mode
property
      thermal: exynos: remove parsing of samsung, tmu[_min,
_max]_efuse_value properties
      thermal: exynos: remove parsing of samsung, tmu_reference_voltage
property
      thermal: exynos: remove parsing of samsung,tmu_gain property
      thermal: exynos: remove parsing of samsung, tmu_cal_type property
      thermal: exynos: remove separate exynos_tmu.h header file
      thermal: exynos: fix setting rising_threshold for Exynos5433
      thermal: exynos: always check for trips points existence
      thermal: exynos: always check for critical trip points existence
      thermal: exynos: check STATUS register in exynos_tmu_initialize()
      thermal: exynos: use sanitize_temp_error() in
exynos7_tmu_initialize()
      thermal: exynos: fix trips limit checking in get_th_reg()
      thermal: exynos: remove threshold_code checking from
exynos4210_tmu_initialize()
      thermal: exynos: make ->tmu_initialize method void
      thermal: exynos: clear IRQs later in exynos4412_tmu_initialize()
      thermal: exynos: move IRQs clearing to exynos_tmu_initialize()
      thermal: exynos: add exynos*_tmu_set_[trip,hyst]() helpers
      thermal: exynos: do not use trips structure directly in
->tmu_initialize
      thermal: exynos: set trips in ascending order in
exynos7_tmu_initialize()
      thermal: exynos: move trips setting to exynos_tmu_initialize()
      thermal: exynos: check return values of ->get_trip_[temp, hyst]
methods
      thermal: exynos: cleanup code for enabling threshold interrupts
      thermal: exynos: remove unused defines for Exynos5433
      thermal: exynos: remove trip reporting to user-space
      thermal: ti-soc-thermal: fix incorrect entry in
omap5430_adc_to_temp[]

Bjorn Andersson (1):
      thermal: qcom: tsens: Allow number of sensors to come from DT

David Collins (1):
      thermal: qcom-spmi-temp-alarm: add support for GEN2 PMIC
peripherals

Ezequiel Garcia (1):
      thermal: tegra: Nuke clk_{readl,writel} helpers

Fabio Estevam (1):
      thermal: imx: Switch to SPDX identifier

Hien Dang (1):
      thermal: rcar_gen3_thermal: Update calculation formula due to HW
evaluation

Krzysztof Kozlowski (2):
      thermal: samsung: Remove support for Exynos5440
      thermal: exynos: Reduce severity of too early temperature read

Kunihiko Hayashi (2):
      dt-bindings: thermal: uniphier: add a compatible string for PXs3
      thermal: uniphier: add UniPhier PXs3 support

Maciej Purski (1):
      thermal: exynos: Read soc_type from match data

Marek Szyprowski (2):
      thermal: exynos: Reading temperature makes sense only when TMU is
turned on
      thermal: exynos: Propagate error value from tmu_read()

Niklas Söderlund (3):
      thermal: rcar_gen3_thermal: update max temperature clamp
      dt-bindings: thermal: rcar-gen3-thermal: add r8a77965
      thermal: rcar_gen3_thermal: add r8a77965 support

Ryder Lee (1):
      thermal: mediatek: use of_device_get_match_data()

Sean Wang (2):
      dt-bindings: thermal: add binding for MT7622 SoC
      thermal: mediatek: add support for MT7622 SoC

Yoshihiro Kaneko (2):
      dt-bindings: thermal: rcar-thermal: add R8A77995 support
      thermal: rcar_thermal: add r8a77995 support

srplinux2008 (1):
      thermal: tegra: soctherm: add const to struct
thermal_cooling_device_ops

 .../devicetree/bindings/thermal/exynos-thermal.txt |  14 +-
 .../devicetree/bindings/thermal/imx-thermal.txt    |   9 +-
 .../bindings/thermal/mediatek-thermal.txt          |   1 +
 .../devicetree/bindings/thermal/qcom-tsens.txt     |   1 +
 .../bindings/thermal/rcar-gen3-thermal.txt         |   3 +-
 .../devicetree/bindings/thermal/rcar-thermal.txt   |   7 +-
 .../bindings/thermal/uniphier-thermal.txt          |   1 +
 drivers/thermal/imx_thermal.c                      | 306 +++++--
 drivers/thermal/mtk_thermal.c                      |  40 +-
 drivers/thermal/qcom-spmi-temp-alarm.c             |  92 +-
 drivers/thermal/qcom/tsens.c                       |  12 +-
 drivers/thermal/rcar_gen3_thermal.c                |  17 +-
 drivers/thermal/rcar_thermal.c                     | 158 +++-
 drivers/thermal/samsung/exynos_tmu.c               | 971 ++++++++-----
--------
 drivers/thermal/samsung/exynos_tmu.h               |  75 --
 drivers/thermal/tegra/soctherm.c                   |  31 +-
 .../thermal/ti-soc-thermal/omap5-thermal-data.c    |   2 +-
 drivers/thermal/uniphier_thermal.c                 |   4 +
 18 files changed, 861 insertions(+), 883 deletions(-)
 delete mode 100644 drivers/thermal/samsung/exynos_tmu.h

                 reply	other threads:[~2018-06-12 16:23 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1528820596.2661.34.camel@intel.com \
    --to=rui.zhang@intel.com \
    --cc=edubezval@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.