public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA
@ 2023-11-14 20:28 Roger Quadros
  2023-11-15  3:34 ` Nishanth Menon
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Roger Quadros @ 2023-11-14 20:28 UTC (permalink / raw)
  To: trini, nm
  Cc: marcel.ziswiler, s-vadapalli, r-gunasekaran, vigneshr, srk,
	u-boot, Roger Quadros

BCDMA can be used at SPL for OSPI boot and mem-to-mem DMA
so add "bootph-all" to BCDMA node.

Suggested-by: Nishanth Menon <nm@ti.com>
Fixes: 9a3f2b6798b0 ("arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA/Ethernet")
Signed-off-by: Roger Quadros <rogerq@kernel.org>
---
 arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi b/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
index 75cb60b57d..588d9594a8 100644
--- a/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
+++ b/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
@@ -53,6 +53,7 @@
 	      <0x00 0x484c2000 0x00 0x2000>;
 	reg-names = "gcfg", "bchanrt", "rchanrt", "tchanrt",
 		    "ringrt" , "cfg", "tchan", "rchan";
+	bootph-all;
 };
 
 &main_pktdma {

base-commit: 92b27528d777ce85362af45e7d2974a6c856219b
-- 
2.34.1


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

* Re: [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA
  2023-11-14 20:28 [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA Roger Quadros
@ 2023-11-15  3:34 ` Nishanth Menon
  2023-11-15 17:30 ` Marcel Ziswiler
  2023-11-22 20:50 ` Tom Rini
  2 siblings, 0 replies; 4+ messages in thread
From: Nishanth Menon @ 2023-11-15  3:34 UTC (permalink / raw)
  To: Roger Quadros
  Cc: trini, marcel.ziswiler, s-vadapalli, r-gunasekaran, vigneshr, srk,
	u-boot, Francesco Dolcini

On 22:28-20231114, Roger Quadros wrote:
> BCDMA can be used at SPL for OSPI boot and mem-to-mem DMA
> so add "bootph-all" to BCDMA node.
> 
> Suggested-by: Nishanth Menon <nm@ti.com>
> Fixes: 9a3f2b6798b0 ("arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA/Ethernet")
> Signed-off-by: Roger Quadros <rogerq@kernel.org>
> ---
>  arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi b/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
> index 75cb60b57d..588d9594a8 100644
> --- a/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
> +++ b/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
> @@ -53,6 +53,7 @@
>  	      <0x00 0x484c2000 0x00 0x2000>;
>  	reg-names = "gcfg", "bchanrt", "rchanrt", "tchanrt",
>  		    "ringrt" , "cfg", "tchan", "rchan";
> +	bootph-all;

Reviewed-by: Nishanth Menon <nm@ti.com>

>  };
>  
>  &main_pktdma {
> 
> base-commit: 92b27528d777ce85362af45e7d2974a6c856219b
> -- 
> 2.34.1
> 

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

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

* Re: [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA
  2023-11-14 20:28 [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA Roger Quadros
  2023-11-15  3:34 ` Nishanth Menon
@ 2023-11-15 17:30 ` Marcel Ziswiler
  2023-11-22 20:50 ` Tom Rini
  2 siblings, 0 replies; 4+ messages in thread
From: Marcel Ziswiler @ 2023-11-15 17:30 UTC (permalink / raw)
  To: rogerq@kernel.org, trini@konsulko.com, nm@ti.com
  Cc: s-vadapalli@ti.com, r-gunasekaran@ti.com, vigneshr@ti.com,
	srk@ti.com, u-boot@lists.denx.de

Hi Roger

On Tue, 2023-11-14 at 22:28 +0200, Roger Quadros wrote:
> BCDMA can be used at SPL for OSPI boot and mem-to-mem DMA
> so add "bootph-all" to BCDMA node.

Might not be strictly required (at least we do not support OSPI boot on our HW) but also does not hurt.

> Suggested-by: Nishanth Menon <nm@ti.com>
> Fixes: 9a3f2b6798b0 ("arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA/Ethernet")
> Signed-off-by: Roger Quadros <rogerq@kernel.org>

Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>

> ---
>  arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi b/arch/arm/dts/k3-am625-verdin-wifi-dev-u-
> boot.dtsi
> index 75cb60b57d..588d9594a8 100644
> --- a/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
> +++ b/arch/arm/dts/k3-am625-verdin-wifi-dev-u-boot.dtsi
> @@ -53,6 +53,7 @@
>  	      <0x00 0x484c2000 0x00 0x2000>;
>  	reg-names = "gcfg", "bchanrt", "rchanrt", "tchanrt",
>  		    "ringrt" , "cfg", "tchan", "rchan";
> +	bootph-all;
>  };
>  
>  &main_pktdma {
> 
> base-commit: 92b27528d777ce85362af45e7d2974a6c856219b

Thanks!

Cheers

Marcel

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

* Re: [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA
  2023-11-14 20:28 [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA Roger Quadros
  2023-11-15  3:34 ` Nishanth Menon
  2023-11-15 17:30 ` Marcel Ziswiler
@ 2023-11-22 20:50 ` Tom Rini
  2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2023-11-22 20:50 UTC (permalink / raw)
  To: Roger Quadros
  Cc: nm, marcel.ziswiler, s-vadapalli, r-gunasekaran, vigneshr, srk,
	u-boot

[-- Attachment #1: Type: text/plain, Size: 507 bytes --]

On Tue, Nov 14, 2023 at 10:28:56PM +0200, Roger Quadros wrote:
> BCDMA can be used at SPL for OSPI boot and mem-to-mem DMA

> so add "bootph-all" to BCDMA node.
> 
> Suggested-by: Nishanth Menon <nm@ti.com>
> Fixes: 9a3f2b6798b0 ("arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA/Ethernet")
> Signed-off-by: Roger Quadros <rogerq@kernel.org>
> Reviewed-by: Nishanth Menon <nm@ti.com>
> Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>

Applied to u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2023-11-22 20:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-14 20:28 [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA Roger Quadros
2023-11-15  3:34 ` Nishanth Menon
2023-11-15 17:30 ` Marcel Ziswiler
2023-11-22 20:50 ` Tom Rini

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