u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm: dts: k3-j721e-sk-u-boot: Resync dts file and binding with Linux Kernel
@ 2023-03-31  6:39 Sinthu Raja
  2023-04-06  5:07 ` Sinthu Raja M
  0 siblings, 1 reply; 3+ messages in thread
From: Sinthu Raja @ 2023-03-31  6:39 UTC (permalink / raw)
  To: u-boot, Tom Rini, Simon Glass, Vignesh Raghavendra; +Cc: Sinthu Raja

From: Sinthu Raja <sinthu.raja@ti.com>

This resyncs the dts file of j721e-sk with the currently in-tree K3
platforms. Of note are that the main-navss/mcu-navss nodes were renamed
to main_navss / mcu_navss and so the u-boot.dtsi file needed to be
updated to match.

Also, disable the HBMC which is not supported in the j721e-sk board.

Fixes: 58d61fb5a7 ("arm: dts: k3-j721e-sk: Add initial A72 specific dts support")
Signed-off-by: Sinthu Raja <sinthu.raja@ti.com>
---
 arch/arm/dts/k3-j721e-sk-u-boot.dtsi | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/arch/arm/dts/k3-j721e-sk-u-boot.dtsi b/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
index 0949caa129..31f979f3bb 100644
--- a/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
+++ b/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
@@ -33,7 +33,7 @@
 &cbass_main{
 	bootph-pre-ram;
 
-	main_navss {
+	main_navss: bus@30000000 {
 		bootph-pre-ram;
 	};
 };
@@ -49,7 +49,7 @@
 		bootph-pre-ram;
 	};
 
-	mcu-navss {
+	mcu_navss: bus@28380000 {
 		bootph-pre-ram;
 
 		ringacc@2b800000 {
@@ -237,6 +237,10 @@
 	bootph-pre-ram;
 };
 
+&hbmc {
+	status = "disabled";
+};
+
 &ospi0 {
 	bootph-pre-ram;
 
-- 
2.36.1


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

* Re: [PATCH] arm: dts: k3-j721e-sk-u-boot: Resync dts file and binding with Linux Kernel
  2023-03-31  6:39 [PATCH] arm: dts: k3-j721e-sk-u-boot: Resync dts file and binding with Linux Kernel Sinthu Raja
@ 2023-04-06  5:07 ` Sinthu Raja M
  2023-04-11 22:59   ` Sinthu Raja M
  0 siblings, 1 reply; 3+ messages in thread
From: Sinthu Raja M @ 2023-04-06  5:07 UTC (permalink / raw)
  To: u-boot, Tom Rini, Simon Glass, Vignesh Raghavendra; +Cc: Sinthu Raja

Hi,


On Fri, Mar 31, 2023 at 12:09 PM Sinthu Raja
<sinthu.raja@mistralsolutions.com> wrote:
>
> From: Sinthu Raja <sinthu.raja@ti.com>
>
> This resyncs the dts file of j721e-sk with the currently in-tree K3
> platforms. Of note are that the main-navss/mcu-navss nodes were renamed
> to main_navss / mcu_navss and so the u-boot.dtsi file needed to be
> updated to match.
>
> Also, disable the HBMC which is not supported in the j721e-sk board.
>
> Fixes: 58d61fb5a7 ("arm: dts: k3-j721e-sk: Add initial A72 specific dts support")
> Signed-off-by: Sinthu Raja <sinthu.raja@ti.com>
> ---
>  arch/arm/dts/k3-j721e-sk-u-boot.dtsi | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/dts/k3-j721e-sk-u-boot.dtsi b/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
> index 0949caa129..31f979f3bb 100644
> --- a/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
> +++ b/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
> @@ -33,7 +33,7 @@
>  &cbass_main{
>         bootph-pre-ram;
>
> -       main_navss {
> +       main_navss: bus@30000000 {
>                 bootph-pre-ram;
>         };
>  };
> @@ -49,7 +49,7 @@
>                 bootph-pre-ram;
>         };
>
> -       mcu-navss {
> +       mcu_navss: bus@28380000 {
>                 bootph-pre-ram;
>
>                 ringacc@2b800000 {
> @@ -237,6 +237,10 @@
>         bootph-pre-ram;
>  };
>
> +&hbmc {
> +       status = "disabled";
> +};
> +
Please review and let me know your comments.
>  &ospi0 {
>         bootph-pre-ram;
>
> --
> 2.36.1
>


-- 
With Regards
Sinthu Raja

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

* Re: [PATCH] arm: dts: k3-j721e-sk-u-boot: Resync dts file and binding with Linux Kernel
  2023-04-06  5:07 ` Sinthu Raja M
@ 2023-04-11 22:59   ` Sinthu Raja M
  0 siblings, 0 replies; 3+ messages in thread
From: Sinthu Raja M @ 2023-04-11 22:59 UTC (permalink / raw)
  To: u-boot, Tom Rini, Simon Glass, Vignesh Raghavendra, Kumar, Udit
  Cc: Sinthu Raja

+Kumar, Udit <u-kumar1@ti.com>

On Thu, Apr 6, 2023 at 10:37 AM Sinthu Raja M <
sinthu.raja@mistralsolutions.com> wrote:

> Hi,
>
>
> On Fri, Mar 31, 2023 at 12:09 PM Sinthu Raja
> <sinthu.raja@mistralsolutions.com> wrote:
> >
> > From: Sinthu Raja <sinthu.raja@ti.com>
> >
> > This resyncs the dts file of j721e-sk with the currently in-tree K3
> > platforms. Of note are that the main-navss/mcu-navss nodes were renamed
> > to main_navss / mcu_navss and so the u-boot.dtsi file needed to be
> > updated to match.
> >
> > Also, disable the HBMC which is not supported in the j721e-sk board.
> >
> > Fixes: 58d61fb5a7 ("arm: dts: k3-j721e-sk: Add initial A72 specific dts
> support")
> > Signed-off-by: Sinthu Raja <sinthu.raja@ti.com>
> > ---
> >  arch/arm/dts/k3-j721e-sk-u-boot.dtsi | 8 ++++++--
> >  1 file changed, 6 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
> b/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
> > index 0949caa129..31f979f3bb 100644
> > --- a/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
> > +++ b/arch/arm/dts/k3-j721e-sk-u-boot.dtsi
> > @@ -33,7 +33,7 @@
> >  &cbass_main{
> >         bootph-pre-ram;
> >
> > -       main_navss {
> > +       main_navss: bus@30000000 {
> >                 bootph-pre-ram;
> >         };
> >  };
> > @@ -49,7 +49,7 @@
> >                 bootph-pre-ram;
> >         };
> >
> > -       mcu-navss {
> > +       mcu_navss: bus@28380000 {
> >                 bootph-pre-ram;
> >
> >                 ringacc@2b800000 {
> > @@ -237,6 +237,10 @@
> >         bootph-pre-ram;
> >  };
> >
> > +&hbmc {
> > +       status = "disabled";
> > +};
> > +
> Please review and let me know your comments.
> >  &ospi0 {
> >         bootph-pre-ram;
> >
> > --
> > 2.36.1
> >
>
>
> --
> With Regards
> Sinthu Raja
>


-- 
With Regards
Sinthu Raja

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

end of thread, other threads:[~2023-04-12  4:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-31  6:39 [PATCH] arm: dts: k3-j721e-sk-u-boot: Resync dts file and binding with Linux Kernel Sinthu Raja
2023-04-06  5:07 ` Sinthu Raja M
2023-04-11 22:59   ` Sinthu Raja M

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).