devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/7] add VTM nodes to TI's K3 SoCs
@ 2023-04-05 21:53 Bryan Brattlof
  2023-04-05 21:53 ` [PATCH v3 1/7] arm64: dts: ti: k3-am64-main: add VTM node Bryan Brattlof
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Bryan Brattlof @ 2023-04-05 21:53 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo
  Cc: Rob Herring, Krzysztof Kozlowski, Keerthy,
	Device Tree Mailing List, ARM Linux Mailing List,
	Linux Kernel Mailing List, Bryan Brattlof

Hello again everyone!

This patch series adds in basic VTM nodes for all of TI's K3 SoCs. As of
right now these do not do much other than add thermal entries into the
sysfs directory and power down the device once it exceeds a critical
temperature.

Changes from v1: [0]
- Fixed indexing of thermal nodes[0]

Changes from v2: [1]
- Updated unit address for am62x's &cbass_wakeup
- Dropped my j7* patches and cherry-picked Keerthy's

[0] https://lore.kernel.org/all/20230119221322.12563-1-bb@ti.com/
[1] https://lore.kernel.org/all/20230120003051.9100-1-bb@ti.com/

Thanks for reviewing!
~Bryan

Bryan Brattlof (3):
  arm64: dts: ti: k3-am64-main: add VTM node
  arm64: dts: ti: k3-am62-wakeup: add VTM node
  arm64: dts: ti: k3-am62a-wakeup: add VTM node

Keerthy (4):
  arm64: dts: ti: j784s4: Add VTM node
  arm64: dts: ti: j721e: Add VTM node
  arm64: dts: ti: j7200: Add VTM node
  arm64: dts: ti: j721s2: Add VTM node

 arch/arm64/boot/dts/ti/k3-am62-thermal.dtsi   |  33 ++++++
 arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi    |   8 ++
 arch/arm64/boot/dts/ti/k3-am62.dtsi           |   8 +-
 arch/arm64/boot/dts/ti/k3-am62a-thermal.dtsi  |  47 ++++++++
 arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi   |   8 ++
 arch/arm64/boot/dts/ti/k3-am62a.dtsi          |   2 +
 arch/arm64/boot/dts/ti/k3-am64-main.dtsi      |   8 ++
 arch/arm64/boot/dts/ti/k3-am64-thermal.dtsi   |  33 ++++++
 arch/arm64/boot/dts/ti/k3-am64.dtsi           |   3 +
 .../boot/dts/ti/k3-j7200-mcu-wakeup.dtsi      |   9 ++
 arch/arm64/boot/dts/ti/k3-j7200-thermal.dtsi  |  47 ++++++++
 arch/arm64/boot/dts/ti/k3-j7200.dtsi          |   2 +
 .../boot/dts/ti/k3-j721e-mcu-wakeup.dtsi      |   9 ++
 arch/arm64/boot/dts/ti/k3-j721e-thermal.dtsi  |  75 +++++++++++++
 arch/arm64/boot/dts/ti/k3-j721e.dtsi          |   2 +
 .../boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi     |   9 ++
 arch/arm64/boot/dts/ti/k3-j721s2-thermal.dtsi | 101 ++++++++++++++++++
 arch/arm64/boot/dts/ti/k3-j721s2.dtsi         |   4 +
 .../boot/dts/ti/k3-j784s4-mcu-wakeup.dtsi     |   9 ++
 arch/arm64/boot/dts/ti/k3-j784s4-thermal.dtsi | 101 ++++++++++++++++++
 arch/arm64/boot/dts/ti/k3-j784s4.dtsi         |   4 +
 21 files changed, 520 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm64/boot/dts/ti/k3-am62-thermal.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-am62a-thermal.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-am64-thermal.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-j7200-thermal.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-j721e-thermal.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-j721s2-thermal.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-j784s4-thermal.dtsi


base-commit: 891db0c48efb48c3af334006f9d7ea6a0aa49cb9
-- 
2.40.0


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

end of thread, other threads:[~2023-05-22 12:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-05 21:53 [PATCH v3 0/7] add VTM nodes to TI's K3 SoCs Bryan Brattlof
2023-04-05 21:53 ` [PATCH v3 1/7] arm64: dts: ti: k3-am64-main: add VTM node Bryan Brattlof
2023-04-05 21:53 ` [PATCH v3 2/7] arm64: dts: ti: k3-am62-wakeup: " Bryan Brattlof
2023-04-05 21:53 ` [PATCH v3 3/7] arm64: dts: ti: k3-am62a-wakeup: " Bryan Brattlof
2023-04-05 21:53 ` [PATCH v3 4/7] arm64: dts: ti: j784s4: Add " Bryan Brattlof
2023-04-05 21:53 ` [PATCH v3 5/7] arm64: dts: ti: j721e: " Bryan Brattlof
2023-04-05 21:53 ` [PATCH v3 6/7] arm64: dts: ti: j7200: " Bryan Brattlof
2023-04-05 21:53 ` [PATCH v3 7/7] arm64: dts: ti: j721s2: " Bryan Brattlof
2023-05-22 12:01 ` [PATCH v3 0/7] add VTM nodes to TI's K3 SoCs Christian Gmeiner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).