linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: socfgpa: remove ethernet aliases from dtsi
@ 2018-10-08 10:56 Steffen Trumtrar
  2018-10-09 18:08 ` Dinh Nguyen
  0 siblings, 1 reply; 3+ messages in thread
From: Steffen Trumtrar @ 2018-10-08 10:56 UTC (permalink / raw)
  To: linux-arm-kernel

Not all boards use two ethernet devices and/or use them in different
order. As almost all in-tree boards already define their own ethernet
aliases, remove them from the dtsi and add the aliases to the two boards,
that are missing their own definition.

Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
---
 arch/arm/boot/dts/socfpga.dtsi                    | 2 --
 arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts | 4 ++++
 arch/arm/boot/dts/socfpga_cyclone5_socrates.dts   | 4 ++++
 3 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/socfpga.dtsi b/arch/arm/boot/dts/socfpga.dtsi
index b38f8c240558..068aefa15391 100644
--- a/arch/arm/boot/dts/socfpga.dtsi
+++ b/arch/arm/boot/dts/socfpga.dtsi
@@ -22,8 +22,6 @@
 	#size-cells = <1>;
 
 	aliases {
-		ethernet0 = &gmac0;
-		ethernet1 = &gmac1;
 		serial0 = &uart0;
 		serial1 = &uart1;
 		timer0 = &timer0;
diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts b/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
index b280e6494193..48821bcd3eb0 100644
--- a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
+++ b/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
@@ -20,6 +20,10 @@
 	model = "Terasic DE-0(Atlas)";
 	compatible = "terasic,de0-atlas", "altr,socfpga-cyclone5", "altr,socfpga";
 
+	aliases {
+		ethernet0 = &gmac1;
+	};
+
 	chosen {
 		bootargs = "earlyprintk";
 		stdout-path = "serial0:115200n8";
diff --git a/arch/arm/boot/dts/socfpga_cyclone5_socrates.dts b/arch/arm/boot/dts/socfpga_cyclone5_socrates.dts
index 53bf99eef66d..d0aede5ed558 100644
--- a/arch/arm/boot/dts/socfpga_cyclone5_socrates.dts
+++ b/arch/arm/boot/dts/socfpga_cyclone5_socrates.dts
@@ -21,6 +21,10 @@
 	model = "EBV SOCrates";
 	compatible = "ebv,socrates", "altr,socfpga-cyclone5", "altr,socfpga";
 
+	aliases {
+		ethernet0 = &gmac1;
+	};
+
 	chosen {
 		bootargs = "console=ttyS0,115200";
 	};
-- 
2.19.0

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

* [PATCH] ARM: dts: socfgpa: remove ethernet aliases from dtsi
  2018-10-08 10:56 [PATCH] ARM: dts: socfgpa: remove ethernet aliases from dtsi Steffen Trumtrar
@ 2018-10-09 18:08 ` Dinh Nguyen
  2018-10-10  5:49   ` Steffen Trumtrar
  0 siblings, 1 reply; 3+ messages in thread
From: Dinh Nguyen @ 2018-10-09 18:08 UTC (permalink / raw)
  To: linux-arm-kernel



On 10/08/2018 05:56 AM, Steffen Trumtrar wrote:
> Not all boards use two ethernet devices and/or use them in different
> order. As almost all in-tree boards already define their own ethernet
> aliases, remove them from the dtsi and add the aliases to the two boards,
> that are missing their own definition.
> 
> Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> ---
>  arch/arm/boot/dts/socfpga.dtsi                    | 2 --
>  arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts | 4 ++++
>  arch/arm/boot/dts/socfpga_cyclone5_socrates.dts   | 4 ++++
>  3 files changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/socfpga.dtsi b/arch/arm/boot/dts/socfpga.dtsi
> index b38f8c240558..068aefa15391 100644
> --- a/arch/arm/boot/dts/socfpga.dtsi
> +++ b/arch/arm/boot/dts/socfpga.dtsi
> @@ -22,8 +22,6 @@
>  	#size-cells = <1>;
>  
>  	aliases {
> -		ethernet0 = &gmac0;
> -		ethernet1 = &gmac1;
>  		serial0 = &uart0;
>  		serial1 = &uart1;
>  		timer0 = &timer0;
> diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts b/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> index b280e6494193..48821bcd3eb0 100644
> --- a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> +++ b/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts

This file was renamed to socfpga_cyclone5_de0_nano_soc.dts.

error: arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts: No such file
or directory
error: patch failed: arch/arm/boot/dts/socfpga_cyclone5_socrates.dts:21
error: arch/arm/boot/dts/socfpga_cyclone5_socrates.dts: patch does not apply


Do you mind if I rebase this patch based on the updated arm-soc tree?

Thanks,
Dinh

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

* [PATCH] ARM: dts: socfgpa: remove ethernet aliases from dtsi
  2018-10-09 18:08 ` Dinh Nguyen
@ 2018-10-10  5:49   ` Steffen Trumtrar
  0 siblings, 0 replies; 3+ messages in thread
From: Steffen Trumtrar @ 2018-10-10  5:49 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Oct 09, 2018 at 01:08:26PM -0500, Dinh Nguyen wrote:
> 
> 
> On 10/08/2018 05:56 AM, Steffen Trumtrar wrote:
> > Not all boards use two ethernet devices and/or use them in different
> > order. As almost all in-tree boards already define their own ethernet
> > aliases, remove them from the dtsi and add the aliases to the two boards,
> > that are missing their own definition.
> > 
> > Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> > ---
> >  arch/arm/boot/dts/socfpga.dtsi                    | 2 --
> >  arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts | 4 ++++
> >  arch/arm/boot/dts/socfpga_cyclone5_socrates.dts   | 4 ++++
> >  3 files changed, 8 insertions(+), 2 deletions(-)
> > 
> > diff --git a/arch/arm/boot/dts/socfpga.dtsi b/arch/arm/boot/dts/socfpga.dtsi
> > index b38f8c240558..068aefa15391 100644
> > --- a/arch/arm/boot/dts/socfpga.dtsi
> > +++ b/arch/arm/boot/dts/socfpga.dtsi
> > @@ -22,8 +22,6 @@
> >  	#size-cells = <1>;
> >  
> >  	aliases {
> > -		ethernet0 = &gmac0;
> > -		ethernet1 = &gmac1;
> >  		serial0 = &uart0;
> >  		serial1 = &uart1;
> >  		timer0 = &timer0;
> > diff --git a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts b/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > index b280e6494193..48821bcd3eb0 100644
> > --- a/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> > +++ b/arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts
> 
> This file was renamed to socfpga_cyclone5_de0_nano_soc.dts.
> 
> error: arch/arm/boot/dts/socfpga_cyclone5_de0_sockit.dts: No such file
> or directory
> error: patch failed: arch/arm/boot/dts/socfpga_cyclone5_socrates.dts:21
> error: arch/arm/boot/dts/socfpga_cyclone5_socrates.dts: patch does not apply
> 

:(

> 
> Do you mind if I rebase this patch based on the updated arm-soc tree?
> 

No, go ahead.

Thanks,
Steffen

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

end of thread, other threads:[~2018-10-10  5:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-08 10:56 [PATCH] ARM: dts: socfgpa: remove ethernet aliases from dtsi Steffen Trumtrar
2018-10-09 18:08 ` Dinh Nguyen
2018-10-10  5:49   ` Steffen Trumtrar

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