public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH v2] arm64: dts: ti: k3-j721s2-common-proc-board: Add QSPI flash partition details
@ 2026-02-26  9:17 Anurag Dutta
  2026-02-26 17:48 ` Kumar, Udit
  2026-03-13  7:45 ` Vignesh Raghavendra
  0 siblings, 2 replies; 3+ messages in thread
From: Anurag Dutta @ 2026-02-26  9:17 UTC (permalink / raw)
  To: nm, vigneshr, kristo
  Cc: u-kumar1, gehariprasath, a-dutta, linux-arm-kernel, linux-kernel,
	devicetree

J721S2 EVM has MT25QU512AB 64 MiB Quad SPI NOR flash connected
to OSPI1. Add the partition information as per bootloader.

Signed-off-by: Anurag Dutta <a-dutta@ti.com>
---

changelog : v2:
1.  Added bootph-all to qspi.phypattern

Link to v1 : https://lore.kernel.org/all/20260121051855.5890-1-a-dutta@ti.com/

 .../dts/ti/k3-j721s2-common-proc-board.dts    | 42 +++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts b/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
index 4fea99519113..1b48294e47ac 100644
--- a/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
+++ b/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
@@ -530,6 +530,48 @@ flash@0 {
 		cdns,tchsh-ns = <60>;
 		cdns,tslch-ns = <60>;
 		cdns,read-delay = <2>;
+
+		partitions {
+			compatible = "fixed-partitions";
+			#address-cells = <1>;
+			#size-cells = <1>;
+
+			partition@0 {
+				label = "qspi.tiboot3";
+				reg = <0x0 0x80000>;
+			};
+
+			partition@80000 {
+				label = "qspi.tispl";
+				reg = <0x80000 0x200000>;
+			};
+
+			partition@280000 {
+				label = "qspi.u-boot";
+				reg = <0x280000 0x400000>;
+			};
+
+			partition@680000 {
+				label = "qspi.env";
+				reg = <0x680000 0x40000>;
+			};
+
+			partition@6c0000 {
+				label = "qspi.env.backup";
+				reg = <0x6c0000 0x40000>;
+			};
+
+			partition@800000 {
+				label = "qspi.rootfs";
+				reg = <0x800000 0x37c0000>;
+			};
+
+			partition@3fc0000 {
+				bootph-all;
+				label = "qspi.phypattern";
+				reg = <0x3fc0000 0x40000>;
+			};
+		};
 	};
 };
 
-- 
2.34.1



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

* Re: [PATCH v2] arm64: dts: ti: k3-j721s2-common-proc-board: Add QSPI flash partition details
  2026-02-26  9:17 [PATCH v2] arm64: dts: ti: k3-j721s2-common-proc-board: Add QSPI flash partition details Anurag Dutta
@ 2026-02-26 17:48 ` Kumar, Udit
  2026-03-13  7:45 ` Vignesh Raghavendra
  1 sibling, 0 replies; 3+ messages in thread
From: Kumar, Udit @ 2026-02-26 17:48 UTC (permalink / raw)
  To: Anurag Dutta, nm, vigneshr, kristo
  Cc: gehariprasath, linux-arm-kernel, linux-kernel, devicetree,
	u-kumar1

Thanks for updating bootph

On 2/26/2026 2:47 PM, Anurag Dutta wrote:
> J721S2 EVM has MT25QU512AB 64 MiB Quad SPI NOR flash connected
> to OSPI1. Add the partition information as per bootloader.
> 
> Signed-off-by: Anurag Dutta <a-dutta@ti.com>
> ---
> 
> changelog : v2:
> 1.  Added bootph-all to qspi.phypattern
> 
> Link to v1 : https://lore.kernel.org/all/20260121051855.5890-1-a-dutta@ti.com/
> 
>  .../dts/ti/k3-j721s2-common-proc-board.dts    | 42 +++++++++++++++++++
>  1 file changed, 42 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts b/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
> index 4fea99519113..1b48294e47ac 100644
> --- a/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
> +++ b/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
> @@ -530,6 +530,48 @@ flash@0 {
>  		cdns,tchsh-ns = <60>;
>  		cdns,tslch-ns = <60>;
>  		cdns,read-delay = <2>;
> +
> +		partitions {
> +			compatible = "fixed-partitions";
> +			#address-cells = <1>;
> +			#size-cells = <1>;
> +
> +			partition@0 {
> +				label = "qspi.tiboot3";
> +				reg = <0x0 0x80000>;
> +			};
> +
> +			partition@80000 {
> +				label = "qspi.tispl";
> +				reg = <0x80000 0x200000>;
> +			};
> +
> +			partition@280000 {
> +				label = "qspi.u-boot";
> +				reg = <0x280000 0x400000>;
> +			};
> +
> +			partition@680000 {
> +				label = "qspi.env";
> +				reg = <0x680000 0x40000>;
> +			};
> +
> +			partition@6c0000 {
> +				label = "qspi.env.backup";
> +				reg = <0x6c0000 0x40000>;
> +			};
> +
> +			partition@800000 {
> +				label = "qspi.rootfs";
> +				reg = <0x800000 0x37c0000>;
> +			};
> +
> +			partition@3fc0000 {
> +				bootph-all;
> +				label = "qspi.phypattern";
> +				reg = <0x3fc0000 0x40000>;

Reviewed-by: Udit Kumar <u-kumar1@ti.com>


> +			};
> +		};
>  	};
>  };
>  



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

* Re: [PATCH v2] arm64: dts: ti: k3-j721s2-common-proc-board: Add QSPI flash partition details
  2026-02-26  9:17 [PATCH v2] arm64: dts: ti: k3-j721s2-common-proc-board: Add QSPI flash partition details Anurag Dutta
  2026-02-26 17:48 ` Kumar, Udit
@ 2026-03-13  7:45 ` Vignesh Raghavendra
  1 sibling, 0 replies; 3+ messages in thread
From: Vignesh Raghavendra @ 2026-03-13  7:45 UTC (permalink / raw)
  To: nm, kristo, Anurag Dutta
  Cc: Vignesh Raghavendra, u-kumar1, gehariprasath, linux-arm-kernel,
	linux-kernel, devicetree

Hi Anurag Dutta,

On Thu, 26 Feb 2026 14:47:30 +0530, Anurag Dutta wrote:
> J721S2 EVM has MT25QU512AB 64 MiB Quad SPI NOR flash connected
> to OSPI1. Add the partition information as per bootloader.
> 
> 

I have applied the following to branch ti-k3-dts-next on [1].
Thank you!

[1/1] arm64: dts: ti: k3-j721s2-common-proc-board: Add QSPI flash partition details
      commit: 0625c6af7f91d4739a2508bc9fa5f1a48fd98a8a

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
--
Vignesh



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

end of thread, other threads:[~2026-03-13  7:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-26  9:17 [PATCH v2] arm64: dts: ti: k3-j721s2-common-proc-board: Add QSPI flash partition details Anurag Dutta
2026-02-26 17:48 ` Kumar, Udit
2026-03-13  7:45 ` Vignesh Raghavendra

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