linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot
@ 2020-10-30 12:46 Grygorii Strashko
  2020-11-16  9:04 ` Tony Lindgren
  2020-11-23 16:51 ` Arnd Bergmann
  0 siblings, 2 replies; 6+ messages in thread
From: Grygorii Strashko @ 2020-10-30 12:46 UTC (permalink / raw)
  To: Tony Lindgren, Nishanth Menon, soc, Arnd Bergmann
  Cc: Grygorii Strashko, Vignesh Raghavendra, Sekhar Nori,
	linux-kernel, linux-omap, linux-arm-kernel

Enable networking options required for NFS boot on TI platforms, which is
widely for automated test systems.
- enable new TI CPSW switch driver and related NET_SWITCHDEV config
- enable TI DP83867 phy
- explicitly enable PTP clock support to ensure dependent networking
drivers will stay built-in.

vmlinux size changes:
- before:
   text       data        bss        dec        hex    filename
14703736    8024602     444976    23173314    16198c2    ./omap-arm/vmlinux

- after:
   text       data        bss        dec        hex    filename
14727271    8029150     444528    23200949    16204b5    ./omap-arm/vmlinux

diff: 27635 (dec)

Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Reviewed-by: Nishanth Menon <nm@ti.com>
---

changes in v2:
- rebased on top of 5.10-rc1
- commit mesage updated

 arch/arm/configs/multi_v7_defconfig | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index e731cdf7c88c..32aaec92736b 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -154,6 +154,7 @@ CONFIG_INET6_IPCOMP=m
 CONFIG_IPV6_MIP6=m
 CONFIG_IPV6_TUNNEL=m
 CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_NET_SWITCHDEV=y
 CONFIG_NET_DSA=m
 CONFIG_CAN=y
 CONFIG_CAN_AT91=m
@@ -270,9 +271,12 @@ CONFIG_SNI_AVE=y
 CONFIG_STMMAC_ETH=y
 CONFIG_DWMAC_DWC_QOS_ETH=y
 CONFIG_TI_CPSW=y
+CONFIG_TI_CPSW_SWITCHDEV=y
+CONFIG_TI_CPTS=y
 CONFIG_XILINX_EMACLITE=y
 CONFIG_BROADCOM_PHY=y
 CONFIG_ICPLUS_PHY=y
+CONFIG_DP83867_PHY=y
 CONFIG_MARVELL_PHY=y
 CONFIG_MICREL_PHY=y
 CONFIG_AT803X_PHY=y
@@ -436,6 +440,7 @@ CONFIG_SPI_TEGRA20_SLINK=y
 CONFIG_SPI_XILINX=y
 CONFIG_SPI_SPIDEV=y
 CONFIG_SPMI=y
+CONFIG_PTP_1588_CLOCK=y
 CONFIG_PINCTRL_AS3722=y
 CONFIG_PINCTRL_RZA2=y
 CONFIG_PINCTRL_STMFX=y
-- 
2.17.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] 6+ messages in thread

* Re: [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot
  2020-10-30 12:46 [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot Grygorii Strashko
@ 2020-11-16  9:04 ` Tony Lindgren
  2020-11-23 16:54   ` Arnd Bergmann
  2020-11-23 16:51 ` Arnd Bergmann
  1 sibling, 1 reply; 6+ messages in thread
From: Tony Lindgren @ 2020-11-16  9:04 UTC (permalink / raw)
  To: Grygorii Strashko
  Cc: Nishanth Menon, Vignesh Raghavendra, Arnd Bergmann, Sekhar Nori,
	linux-kernel, soc, linux-omap, linux-arm-kernel

* Grygorii Strashko <grygorii.strashko@ti.com> [201030 14:47]:
> Enable networking options required for NFS boot on TI platforms, which is
> widely for automated test systems.
> - enable new TI CPSW switch driver and related NET_SWITCHDEV config
> - enable TI DP83867 phy
> - explicitly enable PTP clock support to ensure dependent networking
> drivers will stay built-in.
> 
> vmlinux size changes:
> - before:
>    text       data        bss        dec        hex    filename
> 14703736    8024602     444976    23173314    16198c2    ./omap-arm/vmlinux
> 
> - after:
>    text       data        bss        dec        hex    filename
> 14727271    8029150     444528    23200949    16204b5    ./omap-arm/vmlinux
> 
> diff: 27635 (dec)

Thanks applying into omap-for-v5.11/defconfig.

Tony

_______________________________________________
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] 6+ messages in thread

* Re: [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot
  2020-10-30 12:46 [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot Grygorii Strashko
  2020-11-16  9:04 ` Tony Lindgren
@ 2020-11-23 16:51 ` Arnd Bergmann
  1 sibling, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2020-11-23 16:51 UTC (permalink / raw)
  To: Nishanth Menon, soc, Grygorii Strashko, Tony Lindgren
  Cc: Vignesh Raghavendra, Arnd Bergmann, Sekhar Nori, linux-kernel,
	linux-omap, linux-arm-kernel

From: Arnd Bergmann <arnd@arndb.de>

On Fri, 30 Oct 2020 14:46:50 +0200, Grygorii Strashko wrote:
> Enable networking options required for NFS boot on TI platforms, which is
> widely for automated test systems.
> - enable new TI CPSW switch driver and related NET_SWITCHDEV config
> - enable TI DP83867 phy
> - explicitly enable PTP clock support to ensure dependent networking
> drivers will stay built-in.
> 
> [...]

Applied to arm/defconfig, thanks!

[1/1] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot
      commit: 8195fceca0316c36c87db25750a5c5db84ded4e7

       Arnd

_______________________________________________
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] 6+ messages in thread

* Re: [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot
  2020-11-16  9:04 ` Tony Lindgren
@ 2020-11-23 16:54   ` Arnd Bergmann
  2020-11-23 17:27     ` Tony Lindgren
  0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2020-11-23 16:54 UTC (permalink / raw)
  To: Tony Lindgren
  Cc: Nishanth Menon, Grygorii Strashko, Vignesh Raghavendra,
	Arnd Bergmann, Sekhar Nori, linux-kernel, SoC Team, linux-omap,
	Linux ARM

On Mon, Nov 16, 2020 at 10:04 AM Tony Lindgren <tony@atomide.com> wrote:
>
> * Grygorii Strashko <grygorii.strashko@ti.com> [201030 14:47]:
> > Enable networking options required for NFS boot on TI platforms, which is
> > widely for automated test systems.
> > - enable new TI CPSW switch driver and related NET_SWITCHDEV config
> > - enable TI DP83867 phy
> > - explicitly enable PTP clock support to ensure dependent networking
> > drivers will stay built-in.
> >
> > vmlinux size changes:
> > - before:
> >    text       data        bss        dec        hex    filename
> > 14703736    8024602     444976    23173314    16198c2    ./omap-arm/vmlinux
> >
> > - after:
> >    text       data        bss        dec        hex    filename
> > 14727271    8029150     444528    23200949    16204b5    ./omap-arm/vmlinux
> >
> > diff: 27635 (dec)
>
> Thanks applying into omap-for-v5.11/defconfig.

Oops, I just applied it as well (as it was sent to soc@kernel.org it appeared
in patchwork) and I  noticed too late that you already had it.
Should I remove it at my end, can you just drop your copy?

       Arnd

_______________________________________________
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] 6+ messages in thread

* Re: [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot
  2020-11-23 16:54   ` Arnd Bergmann
@ 2020-11-23 17:27     ` Tony Lindgren
  2020-11-23 18:22       ` Arnd Bergmann
  0 siblings, 1 reply; 6+ messages in thread
From: Tony Lindgren @ 2020-11-23 17:27 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Nishanth Menon, Grygorii Strashko, Vignesh Raghavendra,
	Arnd Bergmann, Sekhar Nori, linux-kernel, SoC Team, linux-omap,
	Linux ARM

* Arnd Bergmann <arnd@kernel.org> [201123 16:55]:
> On Mon, Nov 16, 2020 at 10:04 AM Tony Lindgren <tony@atomide.com> wrote:
> >
> > * Grygorii Strashko <grygorii.strashko@ti.com> [201030 14:47]:
> > > Enable networking options required for NFS boot on TI platforms, which is
> > > widely for automated test systems.
> > > - enable new TI CPSW switch driver and related NET_SWITCHDEV config
> > > - enable TI DP83867 phy
> > > - explicitly enable PTP clock support to ensure dependent networking
> > > drivers will stay built-in.
> > >
> > > vmlinux size changes:
> > > - before:
> > >    text       data        bss        dec        hex    filename
> > > 14703736    8024602     444976    23173314    16198c2    ./omap-arm/vmlinux
> > >
> > > - after:
> > >    text       data        bss        dec        hex    filename
> > > 14727271    8029150     444528    23200949    16204b5    ./omap-arm/vmlinux
> > >
> > > diff: 27635 (dec)
> >
> > Thanks applying into omap-for-v5.11/defconfig.
> 
> Oops, I just applied it as well (as it was sent to soc@kernel.org it appeared
> in patchwork) and I  noticed too late that you already had it.
> Should I remove it at my end, can you just drop your copy?

Sure no problem, I'll drop my copy.

Regards,

Tony

_______________________________________________
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] 6+ messages in thread

* Re: [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot
  2020-11-23 17:27     ` Tony Lindgren
@ 2020-11-23 18:22       ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2020-11-23 18:22 UTC (permalink / raw)
  To: Tony Lindgren
  Cc: Nishanth Menon, Grygorii Strashko, Vignesh Raghavendra,
	Arnd Bergmann, Sekhar Nori, linux-kernel, SoC Team, linux-omap,
	Linux ARM

On Mon, Nov 23, 2020 at 6:27 PM Tony Lindgren <tony@atomide.com> wrote:
>
> * Arnd Bergmann <arnd@kernel.org> [201123 16:55]:
> > On Mon, Nov 16, 2020 at 10:04 AM Tony Lindgren <tony@atomide.com> wrote:
> > >
> > > * Grygorii Strashko <grygorii.strashko@ti.com> [201030 14:47]:
> > > > Enable networking options required for NFS boot on TI platforms, which is
> > > > widely for automated test systems.
> > > > - enable new TI CPSW switch driver and related NET_SWITCHDEV config
> > > > - enable TI DP83867 phy
> > > > - explicitly enable PTP clock support to ensure dependent networking
> > > > drivers will stay built-in.
> > > >
> > > > vmlinux size changes:
> > > > - before:
> > > >    text       data        bss        dec        hex    filename
> > > > 14703736    8024602     444976    23173314    16198c2    ./omap-arm/vmlinux
> > > >
> > > > - after:
> > > >    text       data        bss        dec        hex    filename
> > > > 14727271    8029150     444528    23200949    16204b5    ./omap-arm/vmlinux
> > > >
> > > > diff: 27635 (dec)
> > >
> > > Thanks applying into omap-for-v5.11/defconfig.
> >
> > Oops, I just applied it as well (as it was sent to soc@kernel.org it appeared
> > in patchwork) and I  noticed too late that you already had it.
> > Should I remove it at my end, can you just drop your copy?
>
> Sure no problem, I'll drop my copy.

Thanks!

     Arnd

_______________________________________________
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] 6+ messages in thread

end of thread, other threads:[~2020-11-23 18:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-30 12:46 [PATCH v2] ARM: multi_v7_defconfig: ti: Enable networking options for nfs boot Grygorii Strashko
2020-11-16  9:04 ` Tony Lindgren
2020-11-23 16:54   ` Arnd Bergmann
2020-11-23 17:27     ` Tony Lindgren
2020-11-23 18:22       ` Arnd Bergmann
2020-11-23 16:51 ` Arnd Bergmann

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