diff mbox series

[LEDE-DEV] uboot-sunxi: Backport fix for stale CONFIG_SUNXIG_GMAC references

Message ID 20171014202612.19139-1-f.fainelli@gmail.com
State Accepted
Delegated to: Florian Fainelli
Headers show
Series [LEDE-DEV] uboot-sunxi: Backport fix for stale CONFIG_SUNXIG_GMAC references | expand

Commit Message

Florian Fainelli Oct. 14, 2017, 8:26 p.m. UTC
This backports the upstream commit fixing stale references to
CONFIG_SUNXI_GMAC which have been later replaced by CONFIG_SUN7I_GMAC.
This fixes the designware MAC pinmuxing on e.g: Lamobo R1.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 ...02-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch | 93 ++++++++++++++++++++++
 1 file changed, 93 insertions(+)
 create mode 100644 package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch

Comments

Zoltan Herpai Oct. 15, 2017, 9:05 a.m. UTC | #1
On Sat, 14 Oct 2017, Florian Fainelli wrote:

> This backports the upstream commit fixing stale references to
> CONFIG_SUNXI_GMAC which have been later replaced by CONFIG_SUN7I_GMAC.
> This fixes the designware MAC pinmuxing on e.g: Lamobo R1.
>
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

Acked-by: Zoltan HERPAI <wigyori@uid0.hu>

> ---
> ...02-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch | 93 ++++++++++++++++++++++
> 1 file changed, 93 insertions(+)
> create mode 100644 package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
>
> diff --git a/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch b/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
> new file mode 100644
> index 000000000000..6e8a1ec8509b
> --- /dev/null
> +++ b/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
> @@ -0,0 +1,93 @@
> +From 6ff005cf19363382fc867d7876a75fd8a386e894 Mon Sep 17 00:00:00 2001
> +From: Dave Prue <dave@prue.com>
> +Date: Thu, 31 Aug 2017 19:21:01 +0200
> +Subject: [PATCH] sunxi: Fix CONFIG_SUNXI_GMAC references
> +
> +SUNXI_GMAC was still used to configure the code where as the
> +same has been renamed and moved to Kconfig in below commit
> +"sunxi: Move SUNXI_GMAC to Kconfig"
> +(sha1: 4d43d065db3262f9a9918ba72457bf36dfb8e0bb)
> +
> +Signed-off-by: Dave Prue <dave@prue.com>
> +Reviewed-by: Simon Glass <sjg@chromium.org>
> +Reviewed-by: Jagan Teki <jagan@openedev.com>
> +Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
> +Tested-by: Mark Kettenis <kettenis@openbsd.org>
> +[Tweek commit message, config_whitelist.txt, build-whitelist.sh]
> +Signed-off-by: Jagan Teki <jagan@openedev.com>
> +---
> + arch/arm/include/asm/arch-sunxi/sys_proto.h | 2 +-
> + board/sunxi/Makefile                        | 2 +-
> + include/configs/sunxi-common.h              | 2 +-
> + scripts/build-whitelist.sh                  | 4 ++--
> + scripts/config_whitelist.txt                | 1 -
> + 5 files changed, 5 insertions(+), 6 deletions(-)
> +
> +Index: u-boot-2017.07/arch/arm/include/asm/arch-sunxi/sys_proto.h
> +===================================================================
> +--- u-boot-2017.07.orig/arch/arm/include/asm/arch-sunxi/sys_proto.h
> ++++ u-boot-2017.07/arch/arm/include/asm/arch-sunxi/sys_proto.h
> +@@ -24,7 +24,7 @@ void sdelay(unsigned long);
> + void return_to_fel(uint32_t lr, uint32_t sp);
> +
> + /* Board / SoC level designware gmac init */
> +-#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUNXI_GMAC
> ++#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUN7I_GMAC
> + void eth_init_board(void);
> + #else
> + static inline void eth_init_board(void) {}
> +Index: u-boot-2017.07/board/sunxi/Makefile
> +===================================================================
> +--- u-boot-2017.07.orig/board/sunxi/Makefile
> ++++ u-boot-2017.07/board/sunxi/Makefile
> +@@ -9,7 +9,7 @@
> + # SPDX-License-Identifier:	GPL-2.0+
> + #
> + obj-y	+= board.o
> +-obj-$(CONFIG_SUNXI_GMAC)	+= gmac.o
> ++obj-$(CONFIG_SUN7I_GMAC)	+= gmac.o
> + obj-$(CONFIG_SUNXI_AHCI)	+= ahci.o
> + obj-$(CONFIG_MACH_SUN4I)	+= dram_sun4i_auto.o
> + obj-$(CONFIG_MACH_SUN5I)	+= dram_sun5i_auto.o
> +Index: u-boot-2017.07/include/configs/sunxi-common.h
> +===================================================================
> +--- u-boot-2017.07.orig/include/configs/sunxi-common.h
> ++++ u-boot-2017.07/include/configs/sunxi-common.h
> +@@ -302,7 +302,7 @@ extern int soft_i2c_gpio_scl;
> + #define CONFIG_PHYLIB
> + #endif
> +
> +-#ifdef CONFIG_SUNXI_GMAC
> ++#ifdef CONFIG_SUN7I_GMAC
> + #define CONFIG_PHY_GIGE			/* GMAC can use gigabit PHY	*/
> + #define CONFIG_PHY_ADDR		1
> + #define CONFIG_MII			/* MII PHY management		*/
> +Index: u-boot-2017.07/scripts/build-whitelist.sh
> +===================================================================
> +--- u-boot-2017.07.orig/scripts/build-whitelist.sh
> ++++ u-boot-2017.07/scripts/build-whitelist.sh
> +@@ -13,10 +13,10 @@ export LC_ALL=C LC_COLLATE=C
> + # There are two independent greps. The first pulls out the component parts
> + # of CONFIG_SYS_EXTRA_OPTIONS. An example is:
> + #
> +-#	SUNXI_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
> ++#	SUN7I_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
> + #
> + # We want this to produce:
> +-#	CONFIG_SUNXI_GMAC
> ++#	CONFIG_SUN7I_GMAC
> + #	CONFIG_AHCI
> + #	CONFIG_SATAPWR
> + #
> +Index: u-boot-2017.07/scripts/config_whitelist.txt
> +===================================================================
> +--- u-boot-2017.07.orig/scripts/config_whitelist.txt
> ++++ u-boot-2017.07/scripts/config_whitelist.txt
> +@@ -2371,7 +2371,6 @@ CONFIG_STV0991_HZ_CLOCK
> + CONFIG_ST_SMI
> + CONFIG_SUNXI_AHCI
> + CONFIG_SUNXI_EMAC
> +-CONFIG_SUNXI_GMAC
> + CONFIG_SUNXI_GPIO
> + CONFIG_SUNXI_MAX_FB_SIZE
> + CONFIG_SUNXI_USB_PHYS
> -- 
> 2.11.0
>
>
> _______________________________________________
> Lede-dev mailing list
> Lede-dev@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/lede-dev
>
Hauke Mehrtens Oct. 15, 2017, 10:16 p.m. UTC | #2
On 10/15/2017 11:05 AM, Zoltan HERPAI wrote:
> On Sat, 14 Oct 2017, Florian Fainelli wrote:
> 
>> This backports the upstream commit fixing stale references to
>> CONFIG_SUNXI_GMAC which have been later replaced by CONFIG_SUN7I_GMAC.
>> This fixes the designware MAC pinmuxing on e.g: Lamobo R1.
>>
>> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> 
> Acked-by: Zoltan HERPAI <wigyori@uid0.hu>

Please refresh the patch and then

Acked-by: Hauke Mehrtens <hauke@hauke-m.de>

> 
>> ---
>> ...02-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch | 93
>> ++++++++++++++++++++++
>> 1 file changed, 93 insertions(+)
>> create mode 100644
>> package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
>>
>>
>> diff --git
>> a/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
>> b/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
>>
>> new file mode 100644
>> index 000000000000..6e8a1ec8509b
>> --- /dev/null
>> +++
>> b/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
>>
>> @@ -0,0 +1,93 @@
>> +From 6ff005cf19363382fc867d7876a75fd8a386e894 Mon Sep 17 00:00:00 2001
>> +From: Dave Prue <dave@prue.com>
>> +Date: Thu, 31 Aug 2017 19:21:01 +0200
>> +Subject: [PATCH] sunxi: Fix CONFIG_SUNXI_GMAC references
>> +
>> +SUNXI_GMAC was still used to configure the code where as the
>> +same has been renamed and moved to Kconfig in below commit
>> +"sunxi: Move SUNXI_GMAC to Kconfig"
>> +(sha1: 4d43d065db3262f9a9918ba72457bf36dfb8e0bb)
>> +
>> +Signed-off-by: Dave Prue <dave@prue.com>
>> +Reviewed-by: Simon Glass <sjg@chromium.org>
>> +Reviewed-by: Jagan Teki <jagan@openedev.com>
>> +Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
>> +Tested-by: Mark Kettenis <kettenis@openbsd.org>
>> +[Tweek commit message, config_whitelist.txt, build-whitelist.sh]
>> +Signed-off-by: Jagan Teki <jagan@openedev.com>
>> +---
>> + arch/arm/include/asm/arch-sunxi/sys_proto.h | 2 +-
>> + board/sunxi/Makefile                        | 2 +-
>> + include/configs/sunxi-common.h              | 2 +-
>> + scripts/build-whitelist.sh                  | 4 ++--
>> + scripts/config_whitelist.txt                | 1 -
>> + 5 files changed, 5 insertions(+), 6 deletions(-)
>> +
>> +Index: u-boot-2017.07/arch/arm/include/asm/arch-sunxi/sys_proto.h
>> +===================================================================
>> +--- u-boot-2017.07.orig/arch/arm/include/asm/arch-sunxi/sys_proto.h
>> ++++ u-boot-2017.07/arch/arm/include/asm/arch-sunxi/sys_proto.h
>> +@@ -24,7 +24,7 @@ void sdelay(unsigned long);
>> + void return_to_fel(uint32_t lr, uint32_t sp);
>> +
>> + /* Board / SoC level designware gmac init */
>> +-#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUNXI_GMAC
>> ++#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUN7I_GMAC
>> + void eth_init_board(void);
>> + #else
>> + static inline void eth_init_board(void) {}
>> +Index: u-boot-2017.07/board/sunxi/Makefile
>> +===================================================================
>> +--- u-boot-2017.07.orig/board/sunxi/Makefile
>> ++++ u-boot-2017.07/board/sunxi/Makefile
>> +@@ -9,7 +9,7 @@
>> + # SPDX-License-Identifier:    GPL-2.0+
>> + #
>> + obj-y    += board.o
>> +-obj-$(CONFIG_SUNXI_GMAC)    += gmac.o
>> ++obj-$(CONFIG_SUN7I_GMAC)    += gmac.o
>> + obj-$(CONFIG_SUNXI_AHCI)    += ahci.o
>> + obj-$(CONFIG_MACH_SUN4I)    += dram_sun4i_auto.o
>> + obj-$(CONFIG_MACH_SUN5I)    += dram_sun5i_auto.o
>> +Index: u-boot-2017.07/include/configs/sunxi-common.h
>> +===================================================================
>> +--- u-boot-2017.07.orig/include/configs/sunxi-common.h
>> ++++ u-boot-2017.07/include/configs/sunxi-common.h
>> +@@ -302,7 +302,7 @@ extern int soft_i2c_gpio_scl;
>> + #define CONFIG_PHYLIB
>> + #endif
>> +
>> +-#ifdef CONFIG_SUNXI_GMAC
>> ++#ifdef CONFIG_SUN7I_GMAC
>> + #define CONFIG_PHY_GIGE            /* GMAC can use gigabit PHY    */
>> + #define CONFIG_PHY_ADDR        1
>> + #define CONFIG_MII            /* MII PHY management        */
>> +Index: u-boot-2017.07/scripts/build-whitelist.sh
>> +===================================================================
>> +--- u-boot-2017.07.orig/scripts/build-whitelist.sh
>> ++++ u-boot-2017.07/scripts/build-whitelist.sh
>> +@@ -13,10 +13,10 @@ export LC_ALL=C LC_COLLATE=C
>> + # There are two independent greps. The first pulls out the component
>> parts
>> + # of CONFIG_SYS_EXTRA_OPTIONS. An example is:
>> + #
>> +-#    SUNXI_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
>> ++#    SUN7I_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
>> + #
>> + # We want this to produce:
>> +-#    CONFIG_SUNXI_GMAC
>> ++#    CONFIG_SUN7I_GMAC
>> + #    CONFIG_AHCI
>> + #    CONFIG_SATAPWR
>> + #
>> +Index: u-boot-2017.07/scripts/config_whitelist.txt
>> +===================================================================
>> +--- u-boot-2017.07.orig/scripts/config_whitelist.txt
>> ++++ u-boot-2017.07/scripts/config_whitelist.txt
>> +@@ -2371,7 +2371,6 @@ CONFIG_STV0991_HZ_CLOCK
>> + CONFIG_ST_SMI
>> + CONFIG_SUNXI_AHCI
>> + CONFIG_SUNXI_EMAC
>> +-CONFIG_SUNXI_GMAC
>> + CONFIG_SUNXI_GPIO
>> + CONFIG_SUNXI_MAX_FB_SIZE
>> + CONFIG_SUNXI_USB_PHYS
>> -- 
>> 2.11.0
Florian Fainelli Oct. 24, 2017, 1:46 a.m. UTC | #3
Le 10/15/17 à 15:16, Hauke Mehrtens a écrit :
> On 10/15/2017 11:05 AM, Zoltan HERPAI wrote:
>> On Sat, 14 Oct 2017, Florian Fainelli wrote:
>>
>>> This backports the upstream commit fixing stale references to
>>> CONFIG_SUNXI_GMAC which have been later replaced by CONFIG_SUN7I_GMAC.
>>> This fixes the designware MAC pinmuxing on e.g: Lamobo R1.
>>>
>>> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
>>
>> Acked-by: Zoltan HERPAI <wigyori@uid0.hu>
> 
> Please refresh the patch and then
> 
> Acked-by: Hauke Mehrtens <hauke@hauke-m.de>

Thanks, applied with a patches refresh (I did not take this from
patchwork so it's missing both of your Acks...).
diff mbox series

Patch

diff --git a/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch b/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
new file mode 100644
index 000000000000..6e8a1ec8509b
--- /dev/null
+++ b/package/boot/uboot-sunxi/patches/302-sunxi-Fix-CONFIG_SUNXI_GMAC-references.patch
@@ -0,0 +1,93 @@ 
+From 6ff005cf19363382fc867d7876a75fd8a386e894 Mon Sep 17 00:00:00 2001
+From: Dave Prue <dave@prue.com>
+Date: Thu, 31 Aug 2017 19:21:01 +0200
+Subject: [PATCH] sunxi: Fix CONFIG_SUNXI_GMAC references
+
+SUNXI_GMAC was still used to configure the code where as the
+same has been renamed and moved to Kconfig in below commit
+"sunxi: Move SUNXI_GMAC to Kconfig"
+(sha1: 4d43d065db3262f9a9918ba72457bf36dfb8e0bb)
+
+Signed-off-by: Dave Prue <dave@prue.com>
+Reviewed-by: Simon Glass <sjg@chromium.org>
+Reviewed-by: Jagan Teki <jagan@openedev.com>
+Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
+Tested-by: Mark Kettenis <kettenis@openbsd.org>
+[Tweek commit message, config_whitelist.txt, build-whitelist.sh]
+Signed-off-by: Jagan Teki <jagan@openedev.com>
+---
+ arch/arm/include/asm/arch-sunxi/sys_proto.h | 2 +-
+ board/sunxi/Makefile                        | 2 +-
+ include/configs/sunxi-common.h              | 2 +-
+ scripts/build-whitelist.sh                  | 4 ++--
+ scripts/config_whitelist.txt                | 1 -
+ 5 files changed, 5 insertions(+), 6 deletions(-)
+
+Index: u-boot-2017.07/arch/arm/include/asm/arch-sunxi/sys_proto.h
+===================================================================
+--- u-boot-2017.07.orig/arch/arm/include/asm/arch-sunxi/sys_proto.h
++++ u-boot-2017.07/arch/arm/include/asm/arch-sunxi/sys_proto.h
+@@ -24,7 +24,7 @@ void sdelay(unsigned long);
+ void return_to_fel(uint32_t lr, uint32_t sp);
+ 
+ /* Board / SoC level designware gmac init */
+-#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUNXI_GMAC
++#if !defined CONFIG_SPL_BUILD && defined CONFIG_SUN7I_GMAC
+ void eth_init_board(void);
+ #else
+ static inline void eth_init_board(void) {}
+Index: u-boot-2017.07/board/sunxi/Makefile
+===================================================================
+--- u-boot-2017.07.orig/board/sunxi/Makefile
++++ u-boot-2017.07/board/sunxi/Makefile
+@@ -9,7 +9,7 @@
+ # SPDX-License-Identifier:	GPL-2.0+
+ #
+ obj-y	+= board.o
+-obj-$(CONFIG_SUNXI_GMAC)	+= gmac.o
++obj-$(CONFIG_SUN7I_GMAC)	+= gmac.o
+ obj-$(CONFIG_SUNXI_AHCI)	+= ahci.o
+ obj-$(CONFIG_MACH_SUN4I)	+= dram_sun4i_auto.o
+ obj-$(CONFIG_MACH_SUN5I)	+= dram_sun5i_auto.o
+Index: u-boot-2017.07/include/configs/sunxi-common.h
+===================================================================
+--- u-boot-2017.07.orig/include/configs/sunxi-common.h
++++ u-boot-2017.07/include/configs/sunxi-common.h
+@@ -302,7 +302,7 @@ extern int soft_i2c_gpio_scl;
+ #define CONFIG_PHYLIB
+ #endif
+ 
+-#ifdef CONFIG_SUNXI_GMAC
++#ifdef CONFIG_SUN7I_GMAC
+ #define CONFIG_PHY_GIGE			/* GMAC can use gigabit PHY	*/
+ #define CONFIG_PHY_ADDR		1
+ #define CONFIG_MII			/* MII PHY management		*/
+Index: u-boot-2017.07/scripts/build-whitelist.sh
+===================================================================
+--- u-boot-2017.07.orig/scripts/build-whitelist.sh
++++ u-boot-2017.07/scripts/build-whitelist.sh
+@@ -13,10 +13,10 @@ export LC_ALL=C LC_COLLATE=C
+ # There are two independent greps. The first pulls out the component parts
+ # of CONFIG_SYS_EXTRA_OPTIONS. An example is:
+ #
+-#	SUNXI_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
++#	SUN7I_GMAC,AHCI,SATAPWR=SUNXI_GPB(8)
+ #
+ # We want this to produce:
+-#	CONFIG_SUNXI_GMAC
++#	CONFIG_SUN7I_GMAC
+ #	CONFIG_AHCI
+ #	CONFIG_SATAPWR
+ #
+Index: u-boot-2017.07/scripts/config_whitelist.txt
+===================================================================
+--- u-boot-2017.07.orig/scripts/config_whitelist.txt
++++ u-boot-2017.07/scripts/config_whitelist.txt
+@@ -2371,7 +2371,6 @@ CONFIG_STV0991_HZ_CLOCK
+ CONFIG_ST_SMI
+ CONFIG_SUNXI_AHCI
+ CONFIG_SUNXI_EMAC
+-CONFIG_SUNXI_GMAC
+ CONFIG_SUNXI_GPIO
+ CONFIG_SUNXI_MAX_FB_SIZE
+ CONFIG_SUNXI_USB_PHYS