All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/2] ARM: multi_v7_defconfig: Make USB support modular
Date: Tue, 26 May 2015 12:26:40 +0000	[thread overview]
Message-ID: <11285144.SLyHNBFeg0@avalon> (raw)
In-Reply-To: <1432637918-8946-2-git-send-email-geert+renesas@glider.be>

Hi Geert,

Thank you for the patch.

On Tuesday 26 May 2015 12:58:38 Geert Uytterhoeven wrote:
> Make USB support modular to reduce kernel size:

This means we lose support for NFS root on USB-based ethernet controllers. I'm 
not sure that's a very good idea.

>        text    data     bss     dec     hex   filename
>     12979266 1433908  335640 14748814  e10c8e vmlinux.before
>     12237024 1386396  333592 13957012  d4f794 vmlinux.after
> 
> USB_GSPCA, USB_EHCI_HCD_PLATFORM, USB_OHCI_HCD_PLATFORM, and
> PHY_SAMSUNG_USB2 are now enabled automatically by Kconfig logic, so they
> are dropped.
> 
> Tested on r8a7791/koelsch, which can't boot vmlinux.before anymore.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> Against next-20150526
> ---
>  arch/arm/configs/multi_v7_defconfig | 40  ++++++++++++++++-----------------
>  1 file changed, 18 insertions(+), 22 deletions(-)
> 
> diff --git a/arch/arm/configs/multi_v7_defconfig
> b/arch/arm/configs/multi_v7_defconfig index
> e3fc9799972367c3..5df66b3671946378 100644
> --- a/arch/arm/configs/multi_v7_defconfig
> +++ b/arch/arm/configs/multi_v7_defconfig
> @@ -215,10 +215,10 @@ CONFIG_SMSC_PHY=y
>  CONFIG_BROADCOM_PHY=y
>  CONFIG_ICPLUS_PHY=y
>  CONFIG_MICREL_PHY=y
> -CONFIG_USB_PEGASUS=y
> -CONFIG_USB_USBNET=y
> -CONFIG_USB_NET_SMSC75XX=y
> -CONFIG_USB_NET_SMSC95XX=y
> +CONFIG_USB_PEGASUS=m
> +CONFIG_USB_USBNET=m
> +CONFIG_USB_NET_SMSC75XX=m
> +CONFIG_USB_NET_SMSC95XX=m
>  CONFIG_BRCMFMAC=m
>  CONFIG_RT2X00=m
>  CONFIG_RT2800USB=m
> @@ -417,8 +417,7 @@ CONFIG_MEDIA_CAMERA_SUPPORT=y
>  CONFIG_MEDIA_CONTROLLER=y
>  CONFIG_VIDEO_V4L2_SUBDEV_API=y
>  CONFIG_MEDIA_USB_SUPPORT=y
> -CONFIG_USB_VIDEO_CLASS=y
> -CONFIG_USB_GSPCA=y
> +CONFIG_USB_VIDEO_CLASS=m
>  CONFIG_V4L_PLATFORM_DRIVERS=y
>  CONFIG_SOC_CAMERA=m
>  CONFIG_SOC_CAMERA_PLATFORM=m
> @@ -452,7 +451,7 @@ CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
>  CONFIG_SOUND=y
>  CONFIG_SND=y
>  CONFIG_SND_DYNAMIC_MINORS=y
> -CONFIG_SND_USB_AUDIO=y
> +CONFIG_SND_USB_AUDIO=m
>  CONFIG_SND_SOC=y
>  CONFIG_SND_ATMEL_SOC=m
>  CONFIG_SND_ATMEL_SOC_WM8904=m
> @@ -467,24 +466,22 @@ CONFIG_SND_SOC_TEGRA_ALC5632=y
>  CONFIG_SND_SOC_TEGRA_MAX98090=y
>  CONFIG_SND_SOC_AK4642=m
>  CONFIG_SND_SOC_WM8978=m
> -CONFIG_USB=y
> -CONFIG_USB_XHCI_HCD=y
> -CONFIG_USB_XHCI_MVEBU=y
> -CONFIG_USB_EHCI_HCD=y
> -CONFIG_USB_EHCI_EXYNOS=y
> -CONFIG_USB_EHCI_TEGRA=y
> -CONFIG_USB_EHCI_HCD_STI=y
> -CONFIG_USB_EHCI_HCD_PLATFORM=y
> -CONFIG_USB_ISP1760=y
> -CONFIG_USB_OHCI_HCD=y
> -CONFIG_USB_OHCI_HCD_STI=y
> -CONFIG_USB_OHCI_HCD_PLATFORM=y
> +CONFIG_USB=m
> +CONFIG_USB_XHCI_HCD=m
> +CONFIG_USB_XHCI_MVEBU=m
> +CONFIG_USB_EHCI_HCD=m
> +CONFIG_USB_EHCI_HCD_STI=m
> +CONFIG_USB_EHCI_TEGRA=m
> +CONFIG_USB_EHCI_EXYNOS=m
> +CONFIG_USB_ISP1760=m
> +CONFIG_USB_OHCI_HCD=m
> +CONFIG_USB_OHCI_HCD_STI=m
>  CONFIG_USB_OHCI_EXYNOS=m
>  CONFIG_USB_R8A66597_HCD=m
>  CONFIG_USB_RENESAS_USBHS=m
> -CONFIG_USB_STORAGE=y
> +CONFIG_USB_STORAGE=m
>  CONFIG_USB_DWC3=y
> -CONFIG_USB_CHIPIDEA=y
> +CONFIG_USB_CHIPIDEA=m
>  CONFIG_USB_CHIPIDEA_HOST=y
>  CONFIG_AB8500_USB=y
>  CONFIG_KEYSTONE_USB_PHY=y
> @@ -632,7 +629,6 @@ CONFIG_PHY_STIH41X_USB=y
>  CONFIG_PHY_STIH407_USB=y
>  CONFIG_PHY_SUN4I_USB=y
>  CONFIG_PHY_SUN9I_USB=y
> -CONFIG_PHY_SAMSUNG_USB2=m
>  CONFIG_EXT4_FS=y
>  CONFIG_AUTOFS4_FS=y
>  CONFIG_MSDOS_FS=y

-- 
Regards,

Laurent Pinchart


WARNING: multiple messages have this Message-ID (diff)
From: laurent.pinchart@ideasonboard.com (Laurent Pinchart)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/2] ARM: multi_v7_defconfig: Make USB support modular
Date: Tue, 26 May 2015 15:26:40 +0300	[thread overview]
Message-ID: <11285144.SLyHNBFeg0@avalon> (raw)
In-Reply-To: <1432637918-8946-2-git-send-email-geert+renesas@glider.be>

Hi Geert,

Thank you for the patch.

On Tuesday 26 May 2015 12:58:38 Geert Uytterhoeven wrote:
> Make USB support modular to reduce kernel size:

This means we lose support for NFS root on USB-based ethernet controllers. I'm 
not sure that's a very good idea.

>        text    data     bss     dec     hex   filename
>     12979266 1433908  335640 14748814  e10c8e vmlinux.before
>     12237024 1386396  333592 13957012  d4f794 vmlinux.after
> 
> USB_GSPCA, USB_EHCI_HCD_PLATFORM, USB_OHCI_HCD_PLATFORM, and
> PHY_SAMSUNG_USB2 are now enabled automatically by Kconfig logic, so they
> are dropped.
> 
> Tested on r8a7791/koelsch, which can't boot vmlinux.before anymore.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> Against next-20150526
> ---
>  arch/arm/configs/multi_v7_defconfig | 40  ++++++++++++++++-----------------
>  1 file changed, 18 insertions(+), 22 deletions(-)
> 
> diff --git a/arch/arm/configs/multi_v7_defconfig
> b/arch/arm/configs/multi_v7_defconfig index
> e3fc9799972367c3..5df66b3671946378 100644
> --- a/arch/arm/configs/multi_v7_defconfig
> +++ b/arch/arm/configs/multi_v7_defconfig
> @@ -215,10 +215,10 @@ CONFIG_SMSC_PHY=y
>  CONFIG_BROADCOM_PHY=y
>  CONFIG_ICPLUS_PHY=y
>  CONFIG_MICREL_PHY=y
> -CONFIG_USB_PEGASUS=y
> -CONFIG_USB_USBNET=y
> -CONFIG_USB_NET_SMSC75XX=y
> -CONFIG_USB_NET_SMSC95XX=y
> +CONFIG_USB_PEGASUS=m
> +CONFIG_USB_USBNET=m
> +CONFIG_USB_NET_SMSC75XX=m
> +CONFIG_USB_NET_SMSC95XX=m
>  CONFIG_BRCMFMAC=m
>  CONFIG_RT2X00=m
>  CONFIG_RT2800USB=m
> @@ -417,8 +417,7 @@ CONFIG_MEDIA_CAMERA_SUPPORT=y
>  CONFIG_MEDIA_CONTROLLER=y
>  CONFIG_VIDEO_V4L2_SUBDEV_API=y
>  CONFIG_MEDIA_USB_SUPPORT=y
> -CONFIG_USB_VIDEO_CLASS=y
> -CONFIG_USB_GSPCA=y
> +CONFIG_USB_VIDEO_CLASS=m
>  CONFIG_V4L_PLATFORM_DRIVERS=y
>  CONFIG_SOC_CAMERA=m
>  CONFIG_SOC_CAMERA_PLATFORM=m
> @@ -452,7 +451,7 @@ CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
>  CONFIG_SOUND=y
>  CONFIG_SND=y
>  CONFIG_SND_DYNAMIC_MINORS=y
> -CONFIG_SND_USB_AUDIO=y
> +CONFIG_SND_USB_AUDIO=m
>  CONFIG_SND_SOC=y
>  CONFIG_SND_ATMEL_SOC=m
>  CONFIG_SND_ATMEL_SOC_WM8904=m
> @@ -467,24 +466,22 @@ CONFIG_SND_SOC_TEGRA_ALC5632=y
>  CONFIG_SND_SOC_TEGRA_MAX98090=y
>  CONFIG_SND_SOC_AK4642=m
>  CONFIG_SND_SOC_WM8978=m
> -CONFIG_USB=y
> -CONFIG_USB_XHCI_HCD=y
> -CONFIG_USB_XHCI_MVEBU=y
> -CONFIG_USB_EHCI_HCD=y
> -CONFIG_USB_EHCI_EXYNOS=y
> -CONFIG_USB_EHCI_TEGRA=y
> -CONFIG_USB_EHCI_HCD_STI=y
> -CONFIG_USB_EHCI_HCD_PLATFORM=y
> -CONFIG_USB_ISP1760=y
> -CONFIG_USB_OHCI_HCD=y
> -CONFIG_USB_OHCI_HCD_STI=y
> -CONFIG_USB_OHCI_HCD_PLATFORM=y
> +CONFIG_USB=m
> +CONFIG_USB_XHCI_HCD=m
> +CONFIG_USB_XHCI_MVEBU=m
> +CONFIG_USB_EHCI_HCD=m
> +CONFIG_USB_EHCI_HCD_STI=m
> +CONFIG_USB_EHCI_TEGRA=m
> +CONFIG_USB_EHCI_EXYNOS=m
> +CONFIG_USB_ISP1760=m
> +CONFIG_USB_OHCI_HCD=m
> +CONFIG_USB_OHCI_HCD_STI=m
>  CONFIG_USB_OHCI_EXYNOS=m
>  CONFIG_USB_R8A66597_HCD=m
>  CONFIG_USB_RENESAS_USBHS=m
> -CONFIG_USB_STORAGE=y
> +CONFIG_USB_STORAGE=m
>  CONFIG_USB_DWC3=y
> -CONFIG_USB_CHIPIDEA=y
> +CONFIG_USB_CHIPIDEA=m
>  CONFIG_USB_CHIPIDEA_HOST=y
>  CONFIG_AB8500_USB=y
>  CONFIG_KEYSTONE_USB_PHY=y
> @@ -632,7 +629,6 @@ CONFIG_PHY_STIH41X_USB=y
>  CONFIG_PHY_STIH407_USB=y
>  CONFIG_PHY_SUN4I_USB=y
>  CONFIG_PHY_SUN9I_USB=y
> -CONFIG_PHY_SAMSUNG_USB2=m
>  CONFIG_EXT4_FS=y
>  CONFIG_AUTOFS4_FS=y
>  CONFIG_MSDOS_FS=y

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2015-05-26 12:26 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-26 10:58 [PATCH 1/2] ARM: multi_v7_defconfig: Replace CONFIG_USB_ISP1760_HCD by CONFIG_USB_ISP1760 Geert Uytterhoeven
2015-05-26 10:58 ` Geert Uytterhoeven
2015-05-26 10:58 ` [PATCH 2/2] ARM: multi_v7_defconfig: Make USB support modular Geert Uytterhoeven
2015-05-26 10:58   ` Geert Uytterhoeven
2015-05-26 12:26   ` Laurent Pinchart [this message]
2015-05-26 12:26     ` Laurent Pinchart
2015-05-27  9:07     ` Geert Uytterhoeven
2015-05-27  9:07       ` Geert Uytterhoeven
2015-05-27 10:09       ` Arnd Bergmann
2015-05-27 10:09         ` Arnd Bergmann
2015-05-28  0:39 ` [PATCH 1/2] ARM: multi_v7_defconfig: Replace CONFIG_USB_ISP1760_HCD by CONFIG_USB_ISP1760 Simon Horman
2015-05-28  0:39   ` Simon Horman
2015-05-28  8:07   ` Arnd Bergmann
2015-05-28  8:07     ` Arnd Bergmann
2015-05-29  0:40     ` Simon Horman
2015-05-29  0:40       ` Simon Horman
2015-05-29 12:32       ` Arnd Bergmann
2015-05-29 12:32         ` Arnd Bergmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=11285144.SLyHNBFeg0@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.