All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: multi_v7_defconfig: Enable Ethernet Switch drivers
@ 2016-06-15 21:41 Andrew Lunn
  2016-06-15 22:11 ` Florian Fainelli
  2016-06-15 22:12 ` Kevin Hilman
  0 siblings, 2 replies; 4+ messages in thread
From: Andrew Lunn @ 2016-06-15 21:41 UTC (permalink / raw)
  To: linux-arm-kernel

Kernelci now has two boards with Ethernet switches supported by DSA.
Enable DSA and the switch drivers so we get some boot testing.

Signed-off-by: Andrew Lunn <andrew@lunn.ch>
---
 arch/arm/configs/multi_v7_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 8f857564657f..b45ac256b491 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -157,6 +157,8 @@ CONFIG_INET6_IPCOMP=m
 CONFIG_IPV6_MIP6=m
 CONFIG_IPV6_TUNNEL=m
 CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_NET_DSA=y
+CONFIG_NET_SWITCHDEV=y
 CONFIG_CAN=y
 CONFIG_CAN_RAW=y
 CONFIG_CAN_BCM=y
@@ -222,6 +224,8 @@ CONFIG_SATA_RCAR=y
 CONFIG_NETDEVICES=y
 CONFIG_VIRTIO_NET=y
 CONFIG_HIX5HD2_GMAC=y
+CONFIG_NET_DSA_MV88E6XXX=y
+CONFIG_NET_DSA_BCM_SF2=y
 CONFIG_SUN4I_EMAC=y
 CONFIG_MACB=y
 CONFIG_NET_CALXEDA_XGMAC=y
-- 
2.8.1

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

* [PATCH] ARM: multi_v7_defconfig: Enable Ethernet Switch drivers
  2016-06-15 21:41 [PATCH] ARM: multi_v7_defconfig: Enable Ethernet Switch drivers Andrew Lunn
@ 2016-06-15 22:11 ` Florian Fainelli
  2016-06-15 22:12 ` Kevin Hilman
  1 sibling, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2016-06-15 22:11 UTC (permalink / raw)
  To: linux-arm-kernel

On 06/15/2016 02:41 PM, Andrew Lunn wrote:
> Kernelci now has two boards with Ethernet switches supported by DSA.
> Enable DSA and the switch drivers so we get some boot testing.

So this is going to create some conflicts with this commit which would
be submitted for 4.8:

https://github.com/Broadcom/stblinux/commit/0fa28995465cf9f9465a1ff69e8dfff17f9734ea

So let's take yours and I will rework mine to just include the BCMGENET
and SYSTEMPORT drivers inclusion.

> 
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> ---
>  arch/arm/configs/multi_v7_defconfig | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
> index 8f857564657f..b45ac256b491 100644
> --- a/arch/arm/configs/multi_v7_defconfig
> +++ b/arch/arm/configs/multi_v7_defconfig
> @@ -157,6 +157,8 @@ CONFIG_INET6_IPCOMP=m
>  CONFIG_IPV6_MIP6=m
>  CONFIG_IPV6_TUNNEL=m
>  CONFIG_IPV6_MULTIPLE_TABLES=y
> +CONFIG_NET_DSA=y
> +CONFIG_NET_SWITCHDEV=y
>  CONFIG_CAN=y
>  CONFIG_CAN_RAW=y
>  CONFIG_CAN_BCM=y
> @@ -222,6 +224,8 @@ CONFIG_SATA_RCAR=y
>  CONFIG_NETDEVICES=y
>  CONFIG_VIRTIO_NET=y
>  CONFIG_HIX5HD2_GMAC=y
> +CONFIG_NET_DSA_MV88E6XXX=y
> +CONFIG_NET_DSA_BCM_SF2=y
>  CONFIG_SUN4I_EMAC=y
>  CONFIG_MACB=y
>  CONFIG_NET_CALXEDA_XGMAC=y
> 


-- 
Florian

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

* [PATCH] ARM: multi_v7_defconfig: Enable Ethernet Switch drivers
  2016-06-15 21:41 [PATCH] ARM: multi_v7_defconfig: Enable Ethernet Switch drivers Andrew Lunn
  2016-06-15 22:11 ` Florian Fainelli
@ 2016-06-15 22:12 ` Kevin Hilman
  2016-06-15 22:22   ` Andrew Lunn
  1 sibling, 1 reply; 4+ messages in thread
From: Kevin Hilman @ 2016-06-15 22:12 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Andrew,

Andrew Lunn <andrew@lunn.ch> writes:

> Kernelci now has two boards with Ethernet switches supported by DSA.
> Enable DSA and the switch drivers so we get some boot testing.
>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>

Any reason these can't be modules?

The default initramfs for kernelci will automatically load modules.

Kevin

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

* [PATCH] ARM: multi_v7_defconfig: Enable Ethernet Switch drivers
  2016-06-15 22:12 ` Kevin Hilman
@ 2016-06-15 22:22   ` Andrew Lunn
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Lunn @ 2016-06-15 22:22 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jun 15, 2016 at 03:12:29PM -0700, Kevin Hilman wrote:
> Hi Andrew,
> 
> Andrew Lunn <andrew@lunn.ch> writes:
> 
> > Kernelci now has two boards with Ethernet switches supported by DSA.
> > Enable DSA and the switch drivers so we get some boot testing.
> >
> > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> 
> Any reason these can't be modules?

Nodules should work, not that i test it very often.

I will respin as modules.

  Andrew

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

end of thread, other threads:[~2016-06-15 22:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-15 21:41 [PATCH] ARM: multi_v7_defconfig: Enable Ethernet Switch drivers Andrew Lunn
2016-06-15 22:11 ` Florian Fainelli
2016-06-15 22:12 ` Kevin Hilman
2016-06-15 22:22   ` Andrew Lunn

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.