devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Patrice Chotard <patrice.chotard@foss.st.com>
To: Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Maxime Coquelin <mcoquelin.stm32@gmail.com>,
	Alexandre Torgue <alexandre.torgue@foss.st.com>
Cc: <devicetree@vger.kernel.org>,
	<linux-stm32@st-md-mailman.stormreply.com>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>,
	Patrice Chotard <patrice.chotard@foss.st.com>
Subject: [PATCH 01/16] ARM: dts: stm32: reorder nodes for stm32429i-eval
Date: Wed, 12 Nov 2025 15:40:18 +0100	[thread overview]
Message-ID: <20251112-upstream_update_led_nodes-v1-1-f6c77739113c@foss.st.com> (raw)
In-Reply-To: <20251112-upstream_update_led_nodes-v1-0-f6c77739113c@foss.st.com>

Reorder nodes by alphabetical order.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
---
 arch/arm/boot/dts/st/stm32429i-eval.dts | 57 +++++++++++++++++----------------
 1 file changed, 29 insertions(+), 28 deletions(-)

diff --git a/arch/arm/boot/dts/st/stm32429i-eval.dts b/arch/arm/boot/dts/st/stm32429i-eval.dts
index afa417b34b25..aa224d7a9e2b 100644
--- a/arch/arm/boot/dts/st/stm32429i-eval.dts
+++ b/arch/arm/boot/dts/st/stm32429i-eval.dts
@@ -82,27 +82,6 @@ soc {
 		dma-ranges = <0xc0000000 0x0 0x10000000>;
 	};
 
-	vdda: regulator-vdda {
-		compatible = "regulator-fixed";
-		regulator-name = "vdda";
-		regulator-min-microvolt = <3300000>;
-		regulator-max-microvolt = <3300000>;
-	};
-
-	vref: regulator-vref {
-		compatible = "regulator-fixed";
-		regulator-name = "vref";
-		regulator-min-microvolt = <3300000>;
-		regulator-max-microvolt = <3300000>;
-	};
-
-	vdd_panel: vdd-panel {
-		compatible = "regulator-fixed";
-		regulator-name = "vdd_panel";
-		regulator-min-microvolt = <3300000>;
-		regulator-max-microvolt = <3300000>;
-	};
-
 	leds {
 		compatible = "gpio-leds";
 		led-green {
@@ -135,11 +114,12 @@ button-1 {
 		};
 	};
 
-	usbotg_hs_phy: usbphy {
-		#phy-cells = <0>;
-		compatible = "usb-nop-xceiv";
-		clocks = <&rcc 0 STM32F4_AHB1_CLOCK(OTGHSULPI)>;
-		clock-names = "main_clk";
+	mmc_vcard: mmc_vcard {
+		compatible = "regulator-fixed";
+		regulator-name = "mmc_vcard";
+		regulator-min-microvolt = <3300000>;
+		regulator-max-microvolt = <3300000>;
+	};
 	};
 
 	panel_rgb: panel-rgb {
@@ -153,9 +133,30 @@ panel_in_rgb: endpoint {
 		};
 	};
 
-	mmc_vcard: mmc_vcard {
+	vdda: regulator-vdda {
 		compatible = "regulator-fixed";
-		regulator-name = "mmc_vcard";
+		regulator-name = "vdda";
+		regulator-min-microvolt = <3300000>;
+		regulator-max-microvolt = <3300000>;
+	};
+
+	vref: regulator-vref {
+		compatible = "regulator-fixed";
+		regulator-name = "vref";
+		regulator-min-microvolt = <3300000>;
+		regulator-max-microvolt = <3300000>;
+	};
+
+	usbotg_hs_phy: usbphy {
+		#phy-cells = <0>;
+		compatible = "usb-nop-xceiv";
+		clocks = <&rcc 0 STM32F4_AHB1_CLOCK(OTGHSULPI)>;
+		clock-names = "main_clk";
+	};
+
+	vdd_panel: vdd-panel {
+		compatible = "regulator-fixed";
+		regulator-name = "vdd_panel";
 		regulator-min-microvolt = <3300000>;
 		regulator-max-microvolt = <3300000>;
 	};

-- 
2.43.0


  reply	other threads:[~2025-11-12 14:40 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-12 14:40 [PATCH 00/16] Led update for STMicrolectronics boards Patrice Chotard
2025-11-12 14:40 ` Patrice Chotard [this message]
2025-11-12 14:40 ` [PATCH 02/16] ARM: dts: stm32: Update LED nodes for stm32429i-eval Patrice Chotard
2025-11-12 14:40 ` [PATCH 03/16] ARM: dts: stm32: Update LED nodes for stm32f429-disco Patrice Chotard
2025-11-12 14:40 ` [PATCH 04/16] ARM: dts: stm32: Update LED nodes for stm32f469-disco Patrice Chotard
2025-11-12 14:40 ` [PATCH 05/16] ARM: dts: stm32: Update LED node for stm32f746-disco Patrice Chotard
2025-11-12 14:40 ` [PATCH 06/16] ARM: dts: stm32: Update LED nodes for stm32f769-disco Patrice Chotard
2025-11-12 14:40 ` [PATCH 07/16] ARM: dts: stm32: Update LED nodes for stm32746g-eval Patrice Chotard
2025-11-12 14:40 ` [PATCH 08/16] ARM: dts: stm32: Add LED support for stm32h743i-disco Patrice Chotard
2025-11-12 14:40 ` [PATCH 09/16] ARM: dts: stm32: Add LED support for stm32h743i-eval Patrice Chotard
2025-11-12 14:40 ` [PATCH 10/16] ARM: dts: stm32: Update LED nodes for stm32h747i-disco Patrice Chotard
2025-11-12 14:40 ` [PATCH 11/16] ARM: dts: stm32: Add red LED for stm32mp135f-dk board Patrice Chotard
2025-11-12 14:40 ` [PATCH 12/16] ARM: dts: stm32: Add red LED for stm32mp157c-ed1 board Patrice Chotard
2025-11-12 14:40 ` [PATCH 13/16] ARM: dts: stm32: Update LED node for stm32mp15xx-dkx board Patrice Chotard
2025-11-12 14:40 ` [PATCH 14/16] arm64: dts: st: Add green and orange LED for stm32mp235f-dk Patrice Chotard
2025-11-12 14:40 ` [PATCH 15/16] arm64: dts: st: Add green and orange LED for stm32mp257f-dk Patrice Chotard
2025-11-12 14:40 ` [PATCH 16/16] arm64: dts: st: Add green and orange LED for stm32mp235f-dk Patrice Chotard
2025-11-13 13:29 ` [PATCH 00/16] Led update for STMicrolectronics boards Rob Herring (Arm)

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=20251112-upstream_update_led_nodes-v1-1-f6c77739113c@foss.st.com \
    --to=patrice.chotard@foss.st.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=robh@kernel.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 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).