[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <60a16c62-d14d-6943-f163-b2cc3d05c3b0@linaro.org>
Date: Fri, 22 Oct 2021 16:32:22 +0200
From: Daniel Lezcano <daniel.lezcano@...aro.org>
To: "Rafael J. Wysocki" <rafael@...nel.org>
Cc: Linux PM mailing list <linux-pm@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Zhang Rui <rui.zhang@...el.com>,
Ansuel Smith <ansuelsmth@...il.com>,
Antoine Tenart <antoine.tenart@...tlin.com>,
Bjorn Andersson <bjorn.andersson@...aro.org>,
Daniel Lezcano <daniel.lezcano@...aro.org>,
liuyun01@...inos.cn, Johan Jonker <jbx6244@...il.com>,
Kunihiko Hayashi <hayashi.kunihiko@...ionext.com>,
Niklas Söderlund
<niklas.soderlund+renesas@...natech.se>,
Rikard Falkeborn <rikard.falkeborn@...il.com>,
Yuanzheng Song <songyuanzheng@...wei.com>,
Ziyang Xuan <william.xuanziyang@...wei.com>
Subject: [GIT PULL] thermal for v5.16
The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
are available in the Git repository at:
ssh://git@...olite.kernel.org/pub/scm/linux/kernel/git/thermal/linux.git
tags/thermal-v5.16-rc1
for you to fetch changes up to a67a46af4ad6342378e332b7420c1d1a2818c53f:
thermal/core: Deprecate changing cooling device state from userspace
(2021-10-21 17:35:11 +0200)
----------------------------------------------------------------
- Constify a variable in thermal mmio driver (Rikard Falkeborn)
- Add the current temperature in the netlink message when crossing a
trip point in order to prevent useless back and forth reading from
userspace (Daniel Lezcano)
- Add support for the 'HC' variant on PM8998 pmic in order to support
vadc channels on recent QCom boards (Bjorn Andersson)
- Add support of calibration values from hardware when they are fused
(Niklas Söderlund)
- Fix NULL pointer dereference from the thermal_release callback when
an error occured in the thermal_zone_device_register() function
(Yuanzheng Song)
- Fix use after free call in the __thermal_cooling_device_register()
function in the error path (Ziyang Xuan)
- Fix compilation error for the LMh driver when CONFIG_QCOM_SCM is not
set (Jackie Liu)
- Add a timeout when reading a register which can block forever under
certain circumstances in the tsens driver (Ansuel Smith)
- Add DT binding for the reset lines and use them in the rockchip
sensor driver (Johan Jonker)
- Add new uniphier NX1 SoC temperature sensor (Kunihiko Hayashi)
- Save and restore the TCC value in the int340x driver (Antoine
Tenart)
- Deprecate the cooling device state sysfs file writable and the user
space governor (Daniel Lezcano)
----------------------------------------------------------------
Ansuel Smith (1):
thermal/drivers/tsens: Add timeout to get_temp_tsens_valid
Antoine Tenart (1):
thermal/drivers/int340x: Improve the tcc offset saving for
suspend/resume
Bjorn Andersson (2):
dt-bindings: thermal: qcom: add HC variant of adc-thermal monitor
bindings
thermal/drivers/qcom/spmi-adc-tm5: Add support for HC variant
Daniel Lezcano (3):
thermal/drivers/netlink: Add the temperature when crossing a trip
point
thermal/core: Make the userspace governor deprecated
thermal/core: Deprecate changing cooling device state from userspace
Jackie Liu (1):
thermal/drivers/qcom/lmh: make QCOM_LMH depends on QCOM_SCM
Johan Jonker (3):
dt-bindings: thermal: allow more resets for tsadc node in
rockchip-thermal.yaml
dt-bindings: thermal: remove redundant comments from
rockchip-thermal.yaml
thermal/drivers/rockchip_thermal: Allow more resets for tsadc node
Kunihiko Hayashi (2):
dt-bindings: thermal: uniphier: Add binding for NX1 SoC
thermal/drivers/uniphier: Add compatible string for NX1 SoC
Niklas Söderlund (2):
thermal: rcar_gen3_thermal: Store thcode and ptat in priv data
thermal: rcar_gen3_thermal: Read calibration from hardware
Rikard Falkeborn (1):
thermal/drivers/thermal_mmio: Constify static struct thermal_mmio_ops
Yuanzheng Song (1):
thermal/core: Fix null pointer dereference in thermal_release()
Ziyang Xuan (1):
thermal/core: fix a UAF bug in __thermal_cooling_device_register()
Documentation/devicetree/bindings/thermal/qcom-spmi-adc-tm-hc.yaml
| 149
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Documentation/devicetree/bindings/thermal/rockchip-thermal.yaml
| 23 +++++++++++++----------
Documentation/devicetree/bindings/thermal/socionext,uniphier-thermal.yaml | 1 +
drivers/thermal/gov_user_space.c
| 9 +++++++++
drivers/thermal/intel/int340x_thermal/int3401_thermal.c
| 8 +++++++-
drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
| 36 ++++++++++++++++++++++++++++--------
drivers/thermal/intel/int340x_thermal/processor_thermal_device.h
| 1 +
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci.c
| 18 +++++++++++++++++-
drivers/thermal/intel/int340x_thermal/processor_thermal_device_pci_legacy.c | 8 +++++++-
drivers/thermal/qcom/Kconfig
| 2 +-
drivers/thermal/qcom/qcom-spmi-adc-tm5.c
| 41 ++++++++++++++++++++++++++++++++++++++++-
drivers/thermal/qcom/tsens.c
| 29 ++++++++++++++---------------
drivers/thermal/rcar_gen3_thermal.c
| 113
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------
drivers/thermal/rockchip_thermal.c
| 2 +-
drivers/thermal/thermal_core.c
| 22 ++++++++++++++++------
drivers/thermal/thermal_mmio.c
| 2 +-
drivers/thermal/thermal_netlink.c
| 11 ++++++-----
drivers/thermal/thermal_netlink.h
| 8 ++++----
drivers/thermal/thermal_sysfs.c
| 3 +++
drivers/thermal/uniphier_thermal.c
| 4 ++++
20 files changed, 408 insertions(+), 82 deletions(-)
create mode 100644
Documentation/devicetree/bindings/thermal/qcom-spmi-adc-tm-hc.yaml
--
<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