diff mbox series

[v3,6/9] arm64: dts: ti: Split k3-j784s4-j742s2-evm-common.dtsi

Message ID 20240731-b4-upstream-j742s2-v3-6-da7fe3aa9e90@ti.com (mailing list archive)
State New, archived
Headers show
Series Introduce J742S2 SoC and EVM | expand

Commit Message

Manorit Chawdhry July 31, 2024, 5:10 p.m. UTC
k3-j784s4-j742s2-evm-common.dtsi will be included in k3-j742s2-evm.dts
at a later point so move j784s4 related stuff to k3-j784s4-evm.dts

Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
---
 arch/arm64/boot/dts/ti/k3-j784s4-evm.dts           | 49 ++++++++++++++++++++++
 .../boot/dts/ti/k3-j784s4-j742s2-evm-common.dtsi   | 42 -------------------
 2 files changed, 49 insertions(+), 42 deletions(-)

Comments

Nishanth Menon Aug. 7, 2024, 1:06 p.m. UTC | #1
On 22:40-20240731, Manorit Chawdhry wrote:
> k3-j784s4-j742s2-evm-common.dtsi will be included in k3-j742s2-evm.dts
> at a later point so move j784s4 related stuff to k3-j784s4-evm.dts

How about this:

Refactor J784s2-evm to a common file which uses the
superset device to allow reuse in j742s2-evm which uses the subset part.

Use a similar style commit message in other refactoring patches as well.

> 
> Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
> ---
>  arch/arm64/boot/dts/ti/k3-j784s4-evm.dts           | 49 ++++++++++++++++++++++
>  .../boot/dts/ti/k3-j784s4-j742s2-evm-common.dtsi   | 42 -------------------
>  2 files changed, 49 insertions(+), 42 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts b/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
> index e3730b2bca92..2543983b7fe7 100644
> --- a/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
> +++ b/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
> @@ -5,4 +5,53 @@
>   * EVM Board Schematics: https://www.ti.com/lit/zip/sprr458
>   */
>  
> +/dts-v1/;
> +
> +#include <dt-bindings/net/ti-dp83867.h>
> +#include <dt-bindings/gpio/gpio.h>
> +#include "k3-j784s4.dtsi"
>  #include "k3-j784s4-j742s2-evm-common.dtsi"
> +
> +/ {
> +	compatible = "ti,j784s4-evm", "ti,j784s4";
> +	model = "Texas Instruments J784S4 EVM";
> +
> +	memory@80000000 {
> +		device_type = "memory";
> +		bootph-all;
> +		/* 32G RAM */
> +		reg = <0x00000000 0x80000000 0x00000000 0x80000000>,
> +		      <0x00000008 0x80000000 0x00000007 0x80000000>;
I understand you are moving the nodes in and it is just copy paste, but
we have an opportunity to clean the nodes up a bit here.

Same as https://lore.kernel.org/all/20240807120629.3bo2cu3wlpkixwrp@flattered/

> +	};
> +
> +	reserved_memory: reserved-memory {
> +		#address-cells = <2>;
> +		#size-cells = <2>;
> +
> +		c71_3_dma_memory_region: c71-dma-memory@ab000000 {
> +			compatible = "shared-dma-pool";
> +			reg = <0x00 0xab000000 0x00 0x100000>;
> +			no-map;
> +		};
> +
> +		c71_3_memory_region: c71-memory@ab100000 {
> +			compatible = "shared-dma-pool";
> +			reg = <0x00 0xab100000 0x00 0xf00000>;
> +			no-map;
> +		};
> +	};
> +};
> +
> +&mailbox0_cluster5 {
> +	mbox_c71_3: mbox-c71-3 {
> +		ti,mbox-rx = <2 0 0>;
> +		ti,mbox-tx = <3 0 0>;
> +	};
> +};
> +
> +&c71_3 {
> +	status = "okay";

Status comes last. I know that these coding standards are new, and it
takes a little getting used to and one wishes there was a linting tool
of some sort to make this easier.. but for now, eyes are the only way
out :(.


> +	mboxes = <&mailbox0_cluster5 &mbox_c71_3>;
> +	memory-region = <&c71_3_dma_memory_region>,
> +			<&c71_3_memory_region>;
> +};
diff mbox series

Patch

diff --git a/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts b/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
index e3730b2bca92..2543983b7fe7 100644
--- a/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
+++ b/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
@@ -5,4 +5,53 @@ 
  * EVM Board Schematics: https://www.ti.com/lit/zip/sprr458
  */
 
+/dts-v1/;
+
+#include <dt-bindings/net/ti-dp83867.h>
+#include <dt-bindings/gpio/gpio.h>
+#include "k3-j784s4.dtsi"
 #include "k3-j784s4-j742s2-evm-common.dtsi"
+
+/ {
+	compatible = "ti,j784s4-evm", "ti,j784s4";
+	model = "Texas Instruments J784S4 EVM";
+
+	memory@80000000 {
+		device_type = "memory";
+		bootph-all;
+		/* 32G RAM */
+		reg = <0x00000000 0x80000000 0x00000000 0x80000000>,
+		      <0x00000008 0x80000000 0x00000007 0x80000000>;
+	};
+
+	reserved_memory: reserved-memory {
+		#address-cells = <2>;
+		#size-cells = <2>;
+
+		c71_3_dma_memory_region: c71-dma-memory@ab000000 {
+			compatible = "shared-dma-pool";
+			reg = <0x00 0xab000000 0x00 0x100000>;
+			no-map;
+		};
+
+		c71_3_memory_region: c71-memory@ab100000 {
+			compatible = "shared-dma-pool";
+			reg = <0x00 0xab100000 0x00 0xf00000>;
+			no-map;
+		};
+	};
+};
+
+&mailbox0_cluster5 {
+	mbox_c71_3: mbox-c71-3 {
+		ti,mbox-rx = <2 0 0>;
+		ti,mbox-tx = <3 0 0>;
+	};
+};
+
+&c71_3 {
+	status = "okay";
+	mboxes = <&mailbox0_cluster5 &mbox_c71_3>;
+	memory-region = <&c71_3_dma_memory_region>,
+			<&c71_3_memory_region>;
+};
diff --git a/arch/arm64/boot/dts/ti/k3-j784s4-j742s2-evm-common.dtsi b/arch/arm64/boot/dts/ti/k3-j784s4-j742s2-evm-common.dtsi
index ffa38f41679d..068ceed4ea15 100644
--- a/arch/arm64/boot/dts/ti/k3-j784s4-j742s2-evm-common.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-j784s4-j742s2-evm-common.dtsi
@@ -4,17 +4,7 @@ 
  *
  * EVM Board Schematics: https://www.ti.com/lit/zip/sprr458
  */
-
-/dts-v1/;
-
-#include <dt-bindings/net/ti-dp83867.h>
-#include <dt-bindings/gpio/gpio.h>
-#include "k3-j784s4.dtsi"
-
 / {
-	compatible = "ti,j784s4-evm", "ti,j784s4";
-	model = "Texas Instruments J784S4 EVM";
-
 	chosen {
 		stdout-path = "serial2:115200n8";
 	};
@@ -31,14 +21,6 @@  aliases {
 		ethernet1 = &main_cpsw1_port1;
 	};
 
-	memory@80000000 {
-		device_type = "memory";
-		bootph-all;
-		/* 32G RAM */
-		reg = <0x00000000 0x80000000 0x00000000 0x80000000>,
-		      <0x00000008 0x80000000 0x00000007 0x80000000>;
-	};
-
 	reserved_memory: reserved-memory {
 		#address-cells = <2>;
 		#size-cells = <2>;
@@ -180,18 +162,6 @@  c71_2_memory_region: c71-memory@aa100000 {
 			reg = <0x00 0xaa100000 0x00 0xf00000>;
 			no-map;
 		};
-
-		c71_3_dma_memory_region: c71-dma-memory@ab000000 {
-			compatible = "shared-dma-pool";
-			reg = <0x00 0xab000000 0x00 0x100000>;
-			no-map;
-		};
-
-		c71_3_memory_region: c71-memory@ab100000 {
-			compatible = "shared-dma-pool";
-			reg = <0x00 0xab100000 0x00 0xf00000>;
-			no-map;
-		};
 	};
 
 	evm_12v0: regulator-evm12v0 {
@@ -1133,11 +1103,6 @@  mbox_c71_2: mbox-c71-2 {
 		ti,mbox-rx = <0 0 0>;
 		ti,mbox-tx = <1 0 0>;
 	};
-
-	mbox_c71_3: mbox-c71-3 {
-		ti,mbox-rx = <2 0 0>;
-		ti,mbox-tx = <3 0 0>;
-	};
 };
 
 &mcu_r5fss0_core0 {
@@ -1217,13 +1182,6 @@  &c71_2 {
 			<&c71_2_memory_region>;
 };
 
-&c71_3 {
-	status = "okay";
-	mboxes = <&mailbox0_cluster5 &mbox_c71_3>;
-	memory-region = <&c71_3_dma_memory_region>,
-			<&c71_3_memory_region>;
-};
-
 &tscadc0 {
 	pinctrl-0 = <&mcu_adc0_pins_default>;
 	pinctrl-names = "default";