mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PULL] Thermal control updates for v6.19-rc1
@ 2025-11-28 20:35 Rafael J. Wysocki
  2025-12-03  1:50 ` pr-tracker-bot
  2025-12-03 15:28 ` Rob Herring
  0 siblings, 2 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2025-11-28 20:35 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Linux PM, ACPI Devel Maling List, Linux Kernel Mailing List,
	Daniel Lezcano

Hi Linus,

I am sending this in advance because I am not expecting to make any changes
to it before next week.

Please pull from the tag

 git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git \
 thermal-6.19-rc1

with top-most commit 63d26c3811421ceeb5b82a85489b88bf545e33c7

 Merge tag 'thermal-v6.19-rc1' of
ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/thermal/linux

on top of commit 6146a0f1dfae5d37442a9ddcba012add260bceb0

 Linux 6.18-rc4

to receive thermal control updates for 6.19-rc1.

These add Nova Lake processor support to the Intel thermal drivers
and DPTF code, update thermal control documentation, simplify the ACPI
DPTF code related to thermal control, add QCS8300 compatible to the
tsens thermal DT bindings, add DT bindings for NXP i.MX91 thermal
module and add support for it to the imx91 thermal driver, update
a few other thermal drivers and fix a format string issue in a thermal
utility:

 - Add Nova Lake processor thermal device to the int340x
   processor_thermal driver, add DLVR support for Nova Lake to it,
   add Nova Lake support to the ACPI DPTF code, document thermal
   throttling on Intel platforms, and update workload type hint
   interface documentation (Srinivas Pandruvada)

 - Remove int340x thermal scan handler from the ACPI DPTF code
   because it turned out to be unnecessary (Slawomir Rosek)

 - Clean up the Intel int340x thermal driver (Kaushlendra Kumar)

 - Document the RZ/V2H TSU DT bindings (Ovidiu Panait)

 - Document the Kaanapali Temperature Sensor (Manaf Meethalavalappu
   Pallikunhi)

 - Document R-Car Gen4 and RZ/G2 support in driver comment (Marek Vasut)

 - Convert to DEFINE_SIMPLE_DEV_PM_OPS() in R-Car [Gen3] (Geert
   Uytterhoeven)

 - Fix format string bug in thermal-engine (Malaya Kumar Rout)

 - Make ipq5018 tsens standalone compatible (George Moussalem)

 - Add the QCS8300 compatible for QCom Tsens (Gaurav Kohli)

 - Add support for the NXP i.MX91 thermal module, including the DT
   bindings (Pengfei Li)

Thanks!


---------------

Gaurav Kohli (1):
      dt-bindings: thermal: tsens: Add QCS8300 compatible

Geert Uytterhoeven (2):
      thermal/drivers/rcar: Convert to DEFINE_SIMPLE_DEV_PM_OPS()
      thermal/drivers/rcar_gen3: Convert to DEFINE_SIMPLE_DEV_PM_OPS()

George Moussalem (1):
      dt-bindings: thermal: qcom-tsens: make ipq5018 tsens standalone compatible

Kaushlendra Kumar (2):
      thermal: intel: int340x: Use symbolic constant for UUID comparison
      thermal: intel: int340x: Replace sprintf() with sysfs_emit()

Malaya Kumar Rout (1):
      tools/thermal/thermal-engine: Fix format string bug in thermal-engine

Manaf Meethalavalappu Pallikunhi (1):
      dt-bindings: thermal: qcom-tsens: document the Kaanapali
Temperature Sensor

Marek Vasut (1):
      thermal/drivers/rcar_gen3: Document R-Car Gen4 and RZ/G2 support
in driver comment

Ovidiu Panait (1):
      dt-bindings: thermal: r9a09g047-tsu: Document RZ/V2H TSU

Pengfei Li (2):
      dt-bindings: thermal: fsl,imx91-tmu: add bindings for NXP i.MX91
thermal module
      thermal/drivers/imx91: Add support for i.MX91 thermal monitoring unit

Slawomir Rosek (2):
      thermal: intel: Select INT340X_THERMAL from INTEL_SOC_DTS_THERMAL
      ACPI: DPTF: Remove int340x thermal scan handler

Srinivas Pandruvada (5):
      thermal: int340x: processor_thermal: Add Nova Lake processor
thermal device
      thermal: intel: int340x: Add DLVR support for Nova Lake
      ACPI: DPTF: Support Nova Lake
      Documentation: thermal: Document thermal throttling on Intel platforms
      docs: driver-api/thermal/intel_dptf: Add new workload type hint

---------------

 Documentation/admin-guide/thermal/index.rst        |   1 +
 .../admin-guide/thermal/intel_thermal_throttle.rst |  91 +++++
 .../devicetree/bindings/thermal/fsl,imx91-tmu.yaml |  87 +++++
 .../devicetree/bindings/thermal/qcom-tsens.yaml    |   9 +-
 .../bindings/thermal/renesas,r9a09g047-tsu.yaml    |   6 +-
 Documentation/driver-api/thermal/intel_dptf.rst    |  23 ++
 drivers/acpi/dptf/Makefile                         |   1 -
 drivers/acpi/dptf/dptf_power.c                     |   2 +
 drivers/acpi/dptf/int340x_thermal.c                |  94 -----
 drivers/acpi/fan.h                                 |   1 +
 drivers/acpi/internal.h                            |   1 -
 drivers/acpi/scan.c                                |   1 -
 drivers/thermal/Kconfig                            |  10 +
 drivers/thermal/Makefile                           |   1 +
 drivers/thermal/imx91_thermal.c                    | 384 +++++++++++++++++++++
 drivers/thermal/intel/Kconfig                      |   3 +-
 .../intel/int340x_thermal/int3400_thermal.c        |  13 +-
 .../intel/int340x_thermal/int3403_thermal.c        |   1 +
 .../int340x_thermal/processor_thermal_device.h     |   2 +
 .../int340x_thermal/processor_thermal_device_pci.c |  10 +
 .../intel/int340x_thermal/processor_thermal_rfim.c |  15 +
 drivers/thermal/renesas/rcar_gen3_thermal.c        |  10 +-
 drivers/thermal/renesas/rcar_thermal.c             |   8 +-
 tools/thermal/thermal-engine/thermal-engine.c      |   2 +-
 24 files changed, 660 insertions(+), 116 deletions(-)

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

* Re: [GIT PULL] Thermal control updates for v6.19-rc1
  2025-11-28 20:35 [GIT PULL] Thermal control updates for v6.19-rc1 Rafael J. Wysocki
@ 2025-12-03  1:50 ` pr-tracker-bot
  2025-12-03 15:28 ` Rob Herring
  1 sibling, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2025-12-03  1:50 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linus Torvalds, Linux PM, ACPI Devel Maling List,
	Linux Kernel Mailing List, Daniel Lezcano

The pull request you sent on Fri, 28 Nov 2025 21:35:41 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal-6.19-rc1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/619f4edc8d4f785dcabf564786e787fa8108deb4

Thank you!

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

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

* Re: [GIT PULL] Thermal control updates for v6.19-rc1
  2025-11-28 20:35 [GIT PULL] Thermal control updates for v6.19-rc1 Rafael J. Wysocki
  2025-12-03  1:50 ` pr-tracker-bot
@ 2025-12-03 15:28 ` Rob Herring
  1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring @ 2025-12-03 15:28 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linus Torvalds, Linux PM, ACPI Devel Maling List,
	Linux Kernel Mailing List, Daniel Lezcano

On Fri, Nov 28, 2025 at 09:35:41PM +0100, Rafael J. Wysocki wrote:
> Hi Linus,
> 
> I am sending this in advance because I am not expecting to make any changes
> to it before next week.
> 
> Please pull from the tag
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git \
>  thermal-6.19-rc1
> 
> with top-most commit 63d26c3811421ceeb5b82a85489b88bf545e33c7
> 
>  Merge tag 'thermal-v6.19-rc1' of
> ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/thermal/linux
> 
> on top of commit 6146a0f1dfae5d37442a9ddcba012add260bceb0
> 
>  Linux 6.18-rc4
> 
> to receive thermal control updates for 6.19-rc1.
> 
> These add Nova Lake processor support to the Intel thermal drivers
> and DPTF code, update thermal control documentation, simplify the ACPI
> DPTF code related to thermal control, add QCS8300 compatible to the
> tsens thermal DT bindings, add DT bindings for NXP i.MX91 thermal
> module and add support for it to the imx91 thermal driver, update
> a few other thermal drivers and fix a format string issue in a thermal
> utility:
> 
>  - Add Nova Lake processor thermal device to the int340x
>    processor_thermal driver, add DLVR support for Nova Lake to it,
>    add Nova Lake support to the ACPI DPTF code, document thermal
>    throttling on Intel platforms, and update workload type hint
>    interface documentation (Srinivas Pandruvada)
> 
>  - Remove int340x thermal scan handler from the ACPI DPTF code
>    because it turned out to be unnecessary (Slawomir Rosek)
> 
>  - Clean up the Intel int340x thermal driver (Kaushlendra Kumar)
> 
>  - Document the RZ/V2H TSU DT bindings (Ovidiu Panait)
> 
>  - Document the Kaanapali Temperature Sensor (Manaf Meethalavalappu
>    Pallikunhi)
> 
>  - Document R-Car Gen4 and RZ/G2 support in driver comment (Marek Vasut)
> 
>  - Convert to DEFINE_SIMPLE_DEV_PM_OPS() in R-Car [Gen3] (Geert
>    Uytterhoeven)
> 
>  - Fix format string bug in thermal-engine (Malaya Kumar Rout)
> 
>  - Make ipq5018 tsens standalone compatible (George Moussalem)
> 
>  - Add the QCS8300 compatible for QCom Tsens (Gaurav Kohli)
> 
>  - Add support for the NXP i.MX91 thermal module, including the DT
>    bindings (Pengfei Li)
> 
> Thanks!
> 
> 
> ---------------
> 
> Gaurav Kohli (1):
>       dt-bindings: thermal: tsens: Add QCS8300 compatible

This patch was corrupted when applied and all the automated DT testing 
broke due to that. It didn't help that it was only applied just before 
US holidays and I didn't notice til Monday.

I've sent a fix for Linus to apply[1].

Rob

[1] https://lore.kernel.org/all/20251203152437.3751325-1-robh@kernel.org/

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

end of thread, other threads:[~2025-12-03 15:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-28 20:35 [GIT PULL] Thermal control updates for v6.19-rc1 Rafael J. Wysocki
2025-12-03  1:50 ` pr-tracker-bot
2025-12-03 15:28 ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®