* [PATCH] ARM: multi_v7_defconfig: Enable DWC2 USB driver and USB ethernet gadget
@ 2015-08-18 9:56 Marek Szyprowski
2015-08-18 10:04 ` Javier Martinez Canillas
0 siblings, 1 reply; 4+ messages in thread
From: Marek Szyprowski @ 2015-08-18 9:56 UTC (permalink / raw)
To: linux-arm-kernel
DWC2 (s3c-hsotg) hardware module is available on many Exynos based boards,
so enable DWC2 driver as well as the most common USB Ethernet gadget.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
---
arch/arm/configs/multi_v7_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index b2facab..d15f719 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -506,6 +506,7 @@ CONFIG_USB_R8A66597_HCD=m
CONFIG_USB_RENESAS_USBHS=m
CONFIG_USB_STORAGE=y
CONFIG_USB_DWC3=y
+CONFIG_USB_DWC2=y
CONFIG_USB_CHIPIDEA=y
CONFIG_USB_CHIPIDEA_HOST=y
CONFIG_AB8500_USB=y
@@ -517,6 +518,7 @@ CONFIG_USB_MXS_PHY=y
CONFIG_USB_RCAR_PHY=m
CONFIG_USB_GADGET=y
CONFIG_USB_RENESAS_USBHS_UDC=m
+CONFIG_USB_ETH=y
CONFIG_MMC=y
CONFIG_MMC_BLOCK_MINORS=16
CONFIG_MMC_ARMMMCI=y
--
1.9.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: multi_v7_defconfig: Enable DWC2 USB driver and USB ethernet gadget
2015-08-18 9:56 [PATCH] ARM: multi_v7_defconfig: Enable DWC2 USB driver and USB ethernet gadget Marek Szyprowski
@ 2015-08-18 10:04 ` Javier Martinez Canillas
2015-08-19 8:19 ` [PATCH v2] " Marek Szyprowski
0 siblings, 1 reply; 4+ messages in thread
From: Javier Martinez Canillas @ 2015-08-18 10:04 UTC (permalink / raw)
To: linux-arm-kernel
Hello Marek,
On 08/18/2015 11:56 AM, Marek Szyprowski wrote:
> DWC2 (s3c-hsotg) hardware module is available on many Exynos based boards,
> so enable DWC2 driver as well as the most common USB Ethernet gadget.
>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
> arch/arm/configs/multi_v7_defconfig | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
> index b2facab..d15f719 100644
> --- a/arch/arm/configs/multi_v7_defconfig
> +++ b/arch/arm/configs/multi_v7_defconfig
> @@ -506,6 +506,7 @@ CONFIG_USB_R8A66597_HCD=m
> CONFIG_USB_RENESAS_USBHS=m
> CONFIG_USB_STORAGE=y
> CONFIG_USB_DWC3=y
> +CONFIG_USB_DWC2=y
> CONFIG_USB_CHIPIDEA=y
> CONFIG_USB_CHIPIDEA_HOST=y
> CONFIG_AB8500_USB=y
> @@ -517,6 +518,7 @@ CONFIG_USB_MXS_PHY=y
> CONFIG_USB_RCAR_PHY=m
> CONFIG_USB_GADGET=y
> CONFIG_USB_RENESAS_USBHS_UDC=m
> +CONFIG_USB_ETH=y
> CONFIG_MMC=y
> CONFIG_MMC_BLOCK_MINORS=16
> CONFIG_MMC_ARMMMCI=y
>
Both are tristate Kconfig symbols and the current multi_v7 policy is
to build as much as possible as a module.
Other than that the patch looks good to me. So if you change that:
Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>
Best regards,
--
Javier Martinez Canillas
Open Source Group
Samsung Research America
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] ARM: multi_v7_defconfig: Enable DWC2 USB driver and USB ethernet gadget
2015-08-18 10:04 ` Javier Martinez Canillas
@ 2015-08-19 8:19 ` Marek Szyprowski
2015-08-19 8:44 ` Krzysztof Kozlowski
0 siblings, 1 reply; 4+ messages in thread
From: Marek Szyprowski @ 2015-08-19 8:19 UTC (permalink / raw)
To: linux-arm-kernel
DWC2 (s3c-hsotg) hardware module is available on many Exynos based boards,
so enable DWC2 driver as well as the most common USB Ethernet gadget.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>
---
Changes since v1: build DWC2 and USB gadget as modules
---
arch/arm/configs/multi_v7_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index b2facab..d15f719 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -506,6 +506,7 @@ CONFIG_USB_R8A66597_HCD=m
CONFIG_USB_RENESAS_USBHS=m
CONFIG_USB_STORAGE=y
CONFIG_USB_DWC3=y
+CONFIG_USB_DWC2=m
CONFIG_USB_CHIPIDEA=y
CONFIG_USB_CHIPIDEA_HOST=y
CONFIG_AB8500_USB=y
@@ -517,6 +518,7 @@ CONFIG_USB_MXS_PHY=y
CONFIG_USB_RCAR_PHY=m
CONFIG_USB_GADGET=y
CONFIG_USB_RENESAS_USBHS_UDC=m
+CONFIG_USB_ETH=m
CONFIG_MMC=y
CONFIG_MMC_BLOCK_MINORS=16
CONFIG_MMC_ARMMMCI=y
--
1.9.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2] ARM: multi_v7_defconfig: Enable DWC2 USB driver and USB ethernet gadget
2015-08-19 8:19 ` [PATCH v2] " Marek Szyprowski
@ 2015-08-19 8:44 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2015-08-19 8:44 UTC (permalink / raw)
To: linux-arm-kernel
On 19.08.2015 17:19, Marek Szyprowski wrote:
> DWC2 (s3c-hsotg) hardware module is available on many Exynos based boards,
> so enable DWC2 driver as well as the most common USB Ethernet gadget.
>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>
> ---
> Changes since v1: build DWC2 and USB gadget as modules
> ---
> arch/arm/configs/multi_v7_defconfig | 2 ++
> 1 file changed, 2 insertions(+)
Thanks Marek for the patch.
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-08-19 8:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-18 9:56 [PATCH] ARM: multi_v7_defconfig: Enable DWC2 USB driver and USB ethernet gadget Marek Szyprowski
2015-08-18 10:04 ` Javier Martinez Canillas
2015-08-19 8:19 ` [PATCH v2] " Marek Szyprowski
2015-08-19 8:44 ` Krzysztof Kozlowski
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).