linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: defconfig: Enable Boradcom's GENET Ethernet controller
@ 2020-01-14 16:48 Nicolas Saenz Julienne
  2020-01-14 17:20 ` Florian Fainelli
  2020-01-17 20:03 ` Florian Fainelli
  0 siblings, 2 replies; 4+ messages in thread
From: Nicolas Saenz Julienne @ 2020-01-14 16:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: f.fainelli, Catalin Marinas, Nicolas Saenz Julienne,
	linux-rpi-kernel, Will Deacon, linux-arm-kernel

Currently used on the Raspberry Pi 4.

Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 38b4f998e24a..245d52a4d009 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -256,6 +256,7 @@ CONFIG_VIRTIO_NET=y
 CONFIG_AMD_XGBE=y
 CONFIG_NET_XGENE=y
 CONFIG_ATL1C=m
+CONFIG_BCMGENET=m
 CONFIG_BNX2X=m
 CONFIG_MACB=y
 CONFIG_THUNDER_NIC_PF=y
-- 
2.24.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] arm64: defconfig: Enable Boradcom's GENET Ethernet controller
  2020-01-14 16:48 [PATCH] arm64: defconfig: Enable Boradcom's GENET Ethernet controller Nicolas Saenz Julienne
@ 2020-01-14 17:20 ` Florian Fainelli
  2020-01-14 18:03   ` Nicolas Saenz Julienne
  2020-01-17 20:03 ` Florian Fainelli
  1 sibling, 1 reply; 4+ messages in thread
From: Florian Fainelli @ 2020-01-14 17:20 UTC (permalink / raw)
  To: Nicolas Saenz Julienne, linux-kernel
  Cc: Catalin Marinas, Will Deacon, linux-rpi-kernel, linux-arm-kernel

On 1/14/20 8:48 AM, Nicolas Saenz Julienne wrote:
> Currently used on the Raspberry Pi 4.
> 
> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>

Typo in the subject: s/Boradcom/Broadcom/ other than that, do you want
me to pick that up now for 5.6?

> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index 38b4f998e24a..245d52a4d009 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -256,6 +256,7 @@ CONFIG_VIRTIO_NET=y
>  CONFIG_AMD_XGBE=y
>  CONFIG_NET_XGENE=y
>  CONFIG_ATL1C=m
> +CONFIG_BCMGENET=m
>  CONFIG_BNX2X=m
>  CONFIG_MACB=y
>  CONFIG_THUNDER_NIC_PF=y
> 


-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] arm64: defconfig: Enable Boradcom's GENET Ethernet controller
  2020-01-14 17:20 ` Florian Fainelli
@ 2020-01-14 18:03   ` Nicolas Saenz Julienne
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Saenz Julienne @ 2020-01-14 18:03 UTC (permalink / raw)
  To: Florian Fainelli, linux-kernel
  Cc: Catalin Marinas, Will Deacon, linux-rpi-kernel, linux-arm-kernel


[-- Attachment #1.1: Type: text/plain, Size: 1112 bytes --]

On Tue, 2020-01-14 at 09:20 -0800, Florian Fainelli wrote:
> On 1/14/20 8:48 AM, Nicolas Saenz Julienne wrote:
> > Currently used on the Raspberry Pi 4.
> > 
> > Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
> 
> Typo in the subject: s/Boradcom/Broadcom/ other than that

Ouch, my bad.

> do you want me to pick that up now for 5.6?

Yes please. BTW sorry for the late submission, but I just realized we were
missing the config option. All the genet related code is already in place so
it's a shame it doesn't work out of the box.

Regards,
Nicolas

> 
> > ---
> >  arch/arm64/configs/defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > index 38b4f998e24a..245d52a4d009 100644
> > --- a/arch/arm64/configs/defconfig
> > +++ b/arch/arm64/configs/defconfig
> > @@ -256,6 +256,7 @@ CONFIG_VIRTIO_NET=y
> >  CONFIG_AMD_XGBE=y
> >  CONFIG_NET_XGENE=y
> >  CONFIG_ATL1C=m
> > +CONFIG_BCMGENET=m
> >  CONFIG_BNX2X=m
> >  CONFIG_MACB=y
> >  CONFIG_THUNDER_NIC_PF=y
> > 
> 
> 


[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] arm64: defconfig: Enable Boradcom's GENET Ethernet controller
  2020-01-14 16:48 [PATCH] arm64: defconfig: Enable Boradcom's GENET Ethernet controller Nicolas Saenz Julienne
  2020-01-14 17:20 ` Florian Fainelli
@ 2020-01-17 20:03 ` Florian Fainelli
  1 sibling, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2020-01-17 20:03 UTC (permalink / raw)
  To: Nicolas Saenz Julienne, linux-kernel
  Cc: Catalin Marinas, Will Deacon, linux-rpi-kernel, linux-arm-kernel

On 1/14/20 8:48 AM, Nicolas Saenz Julienne wrote:
> Currently used on the Raspberry Pi 4.
> 
> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>

Applied to defconfig-arm64/next with the subject typo corrected and a
mention that other SoCs from Broadcom use this controller. Thanks!
-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-01-17 20:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-14 16:48 [PATCH] arm64: defconfig: Enable Boradcom's GENET Ethernet controller Nicolas Saenz Julienne
2020-01-14 17:20 ` Florian Fainelli
2020-01-14 18:03   ` Nicolas Saenz Julienne
2020-01-17 20:03 ` Florian Fainelli

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