2024-03-13 14:12:55

by Daniel Lezcano

[permalink] [raw]
Subject: [GIT PULL] Thermal material for v6.9-rc1


Hi Rafael,

The following changes since commit dcb497ec993265dfc5fffa60b486c1ad353e9ad5:

Merge branches 'thermal-core' and 'thermal-intel' (2024-03-07
21:05:12 +0100)

are available in the Git repository at:


ssh://[email protected]/pub/scm/linux/kernel/git/thermal/linux.git
tags/thermal-v6.9-rc1

for you to fetch changes up to 1828c1c17bb2adf3a3f26abc69cb3fe971eac0e4:

thermal/drivers/rcar_gen3: Add support for R-Car V4M (2024-03-11
17:14:46 +0100)

----------------------------------------------------------------
- Fix memory leak in the error path at probe time in the Mediatek LVTS
driver (Christophe Jaillet)

- Fix control buffer enablement regression on Meditek MT7896 (Frank
Wunderlich)

- Drop spaces before TABs in different places: thermal-of, ST drivers
and Makefile (Geert Uytterhoeven)

- Adjust DT binding for NXP as fsl,tmu-range min/maxItems can vary
among several SoC versions (Fabio Estevam)

- Add support for H616 THS controller for the Sun8i platforms. Note
that this change relies on another change in the SoC specific code
which is included in this branch (Martin Botka)

- Don't fail probe due to zone registration failure because there is
no trip points defined in the DT (Mark Brown)

- Support variable TMU array size for new platforms (Peng Fan)

- Adjust the DT binding for thermal-of and make the polling time not
required and assume it is zero when not found in the DT (Konrad
Dybcio)

- Add r8a779h0 support in both the DT and the driver (Geert Uytterhoeven)

----------------------------------------------------------------
Andre Przywara (3):
soc: sunxi: sram: export register 0 for THS on H616
thermal/drivers/sun8i: Explain unknown H6 register value
thermal/drivers/sun8i: Add SRAM register access code

Christophe JAILLET (1):
thermal/drivers/mediatek/lvts_thermal: Fix a memory leak in an
error handling path

Duy Nguyen (1):
dt-bindings: thermal: rcar-gen3-thermal: Add r8a779h0 support

Fabio Estevam (1):
dt-bindings: thermal: qoriq-thermal: Adjust fsl,tmu-range
min/maxItems

Frank Wunderlich (1):
thermal/drivers/mediatek: Fix control buffer enablement on MT7896

Geert Uytterhoeven (2):
thermal: Drop spaces before TABs
thermal/drivers/rcar_gen3: Add support for R-Car V4M

Konrad Dybcio (2):
dt-bindings: thermal-zones: Don't require polling-delay(-passive)
thermal/of: Assume polling-delay(-passive) 0 when absent

Maksim Kiselev (1):
thermal/drivers/sun8i: Extend H6 calibration to support 4 sensors

Mark Brown (1):
thermal/drivers/sun8i: Don't fail probe due to zone registration
failure

Martin Botka (2):
dt-bindings: thermal: sun8i: Add H616 THS controller
thermal/drivers/sun8i: Add support for H616 THS controller

Peng Fan (1):
thermal/drivers/qoriq: Fix getting tmu range

.../bindings/thermal/allwinner,sun8i-a83t-ths.yaml | 34 +++--
.../devicetree/bindings/thermal/qoriq-thermal.yaml | 3 +-
.../bindings/thermal/rcar-gen3-thermal.yaml | 2 +
.../devicetree/bindings/thermal/thermal-zones.yaml | 2 -
drivers/soc/sunxi/sunxi_sram.c | 22 ++++
drivers/thermal/Makefile | 2 +-
drivers/thermal/mediatek/auxadc_thermal.c | 3 +
drivers/thermal/mediatek/lvts_thermal.c | 4 +-
drivers/thermal/qoriq_thermal.c | 12 +-
drivers/thermal/rcar_gen3_thermal.c | 4 +
drivers/thermal/st/st_thermal.h | 18 +--
drivers/thermal/st/st_thermal_memmap.c | 2 +-
drivers/thermal/sun8i_thermal.c | 139
+++++++++++++++++----
drivers/thermal/thermal_of.c | 14 ++-
14 files changed, 203 insertions(+), 58 deletions(-)

--
<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


2024-03-13 14:37:06

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [GIT PULL] Thermal material for v6.9-rc1

Hi Daniel,

On Wed, Mar 13, 2024 at 3:06 PM Daniel Lezcano
<[email protected]> wrote:
>
>
> Hi Rafael,
>
> The following changes since commit dcb497ec993265dfc5fffa60b486c1ad353e9ad5:
>
> Merge branches 'thermal-core' and 'thermal-intel' (2024-03-07
> 21:05:12 +0100)
>
> are available in the Git repository at:
>
>
> ssh://[email protected]/pub/scm/linux/kernel/git/thermal/linux.git
> tags/thermal-v6.9-rc1
>
> for you to fetch changes up to 1828c1c17bb2adf3a3f26abc69cb3fe971eac0e4:
>
> thermal/drivers/rcar_gen3: Add support for R-Car V4M (2024-03-11
> 17:14:46 +0100)
>
> ----------------------------------------------------------------
> - Fix memory leak in the error path at probe time in the Mediatek LVTS
> driver (Christophe Jaillet)
>
> - Fix control buffer enablement regression on Meditek MT7896 (Frank
> Wunderlich)
>
> - Drop spaces before TABs in different places: thermal-of, ST drivers
> and Makefile (Geert Uytterhoeven)
>
> - Adjust DT binding for NXP as fsl,tmu-range min/maxItems can vary
> among several SoC versions (Fabio Estevam)
>
> - Add support for H616 THS controller for the Sun8i platforms. Note
> that this change relies on another change in the SoC specific code
> which is included in this branch (Martin Botka)
>
> - Don't fail probe due to zone registration failure because there is
> no trip points defined in the DT (Mark Brown)
>
> - Support variable TMU array size for new platforms (Peng Fan)
>
> - Adjust the DT binding for thermal-of and make the polling time not
> required and assume it is zero when not found in the DT (Konrad
> Dybcio)
>
> - Add r8a779h0 support in both the DT and the driver (Geert Uytterhoeven)
>
> ----------------------------------------------------------------
> Andre Przywara (3):
> soc: sunxi: sram: export register 0 for THS on H616
> thermal/drivers/sun8i: Explain unknown H6 register value
> thermal/drivers/sun8i: Add SRAM register access code
>
> Christophe JAILLET (1):
> thermal/drivers/mediatek/lvts_thermal: Fix a memory leak in an
> error handling path
>
> Duy Nguyen (1):
> dt-bindings: thermal: rcar-gen3-thermal: Add r8a779h0 support
>
> Fabio Estevam (1):
> dt-bindings: thermal: qoriq-thermal: Adjust fsl,tmu-range
> min/maxItems
>
> Frank Wunderlich (1):
> thermal/drivers/mediatek: Fix control buffer enablement on MT7896
>
> Geert Uytterhoeven (2):
> thermal: Drop spaces before TABs
> thermal/drivers/rcar_gen3: Add support for R-Car V4M
>
> Konrad Dybcio (2):
> dt-bindings: thermal-zones: Don't require polling-delay(-passive)
> thermal/of: Assume polling-delay(-passive) 0 when absent
>
> Maksim Kiselev (1):
> thermal/drivers/sun8i: Extend H6 calibration to support 4 sensors
>
> Mark Brown (1):
> thermal/drivers/sun8i: Don't fail probe due to zone registration
> failure
>
> Martin Botka (2):
> dt-bindings: thermal: sun8i: Add H616 THS controller
> thermal/drivers/sun8i: Add support for H616 THS controller
>
> Peng Fan (1):
> thermal/drivers/qoriq: Fix getting tmu range
>
> .../bindings/thermal/allwinner,sun8i-a83t-ths.yaml | 34 +++--
> .../devicetree/bindings/thermal/qoriq-thermal.yaml | 3 +-
> .../bindings/thermal/rcar-gen3-thermal.yaml | 2 +
> .../devicetree/bindings/thermal/thermal-zones.yaml | 2 -
> drivers/soc/sunxi/sunxi_sram.c | 22 ++++
> drivers/thermal/Makefile | 2 +-
> drivers/thermal/mediatek/auxadc_thermal.c | 3 +
> drivers/thermal/mediatek/lvts_thermal.c | 4 +-
> drivers/thermal/qoriq_thermal.c | 12 +-
> drivers/thermal/rcar_gen3_thermal.c | 4 +
> drivers/thermal/st/st_thermal.h | 18 +--
> drivers/thermal/st/st_thermal_memmap.c | 2 +-
> drivers/thermal/sun8i_thermal.c | 139
> +++++++++++++++++----
> drivers/thermal/thermal_of.c | 14 ++-
> 14 files changed, 203 insertions(+), 58 deletions(-)
>
> --

Pulled, thanks!