linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs
@ 2020-08-17  6:56 Krzysztof Kozlowski
  2020-08-17  6:56 ` [PATCH v2 2/2] arm64: defconfig: Enable ptn5150 extcon driver Krzysztof Kozlowski
  2020-08-23  1:46 ` [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs Shawn Guo
  0 siblings, 2 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-17  6:56 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Shawn Guo, Li Yang, Arnd Bergmann,
	Geert Uytterhoeven, Olof Johansson, linux-arm-kernel,
	linux-kernel, devicetree, linux-samsung-soc, arm, soc,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
	NXP Linux Team
  Cc: Krzysztof Kozlowski

USB OTG connections are pretty common for embedded and development
boards, for example to have networking or serial access to the device.
Build as a module the USB gadget configfs options so the defconfig can
be used in such development configurations.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 arch/arm64/configs/defconfig | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 500b782b92df..2b02a5a179d7 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -725,6 +725,17 @@ CONFIG_USB_GADGET=y
 CONFIG_USB_RENESAS_USBHS_UDC=m
 CONFIG_USB_RENESAS_USB3=m
 CONFIG_USB_TEGRA_XUDC=m
+CONFIG_USB_CONFIGFS=m
+CONFIG_USB_CONFIGFS_SERIAL=y
+CONFIG_USB_CONFIGFS_ACM=y
+CONFIG_USB_CONFIGFS_OBEX=y
+CONFIG_USB_CONFIGFS_NCM=y
+CONFIG_USB_CONFIGFS_ECM=y
+CONFIG_USB_CONFIGFS_ECM_SUBSET=y
+CONFIG_USB_CONFIGFS_RNDIS=y
+CONFIG_USB_CONFIGFS_EEM=y
+CONFIG_USB_CONFIGFS_MASS_STORAGE=y
+CONFIG_USB_CONFIGFS_F_FS=y
 CONFIG_TYPEC=m
 CONFIG_TYPEC_TCPM=m
 CONFIG_TYPEC_FUSB302=m
-- 
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

* [PATCH v2 2/2] arm64: defconfig: Enable ptn5150 extcon driver
  2020-08-17  6:56 [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs Krzysztof Kozlowski
@ 2020-08-17  6:56 ` Krzysztof Kozlowski
  2020-08-23  1:46 ` [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs Shawn Guo
  1 sibling, 0 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-17  6:56 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Shawn Guo, Li Yang, Arnd Bergmann,
	Geert Uytterhoeven, Olof Johansson, linux-arm-kernel,
	linux-kernel, devicetree, linux-samsung-soc, arm, soc,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
	NXP Linux Team
  Cc: Krzysztof Kozlowski

Enable the extcon driver for NXP PTN5150A chips (CC logic for USB Type-C
applications) present on some of i.MX8 evaluation boards (e.g. Variscite
Symphony board).

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>

---

Changes since v1:
1. Build as module
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 2b02a5a179d7..938b92af2978 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -926,6 +926,7 @@ CONFIG_ARCH_TEGRA_194_SOC=y
 CONFIG_ARCH_K3_AM6_SOC=y
 CONFIG_ARCH_K3_J721E_SOC=y
 CONFIG_TI_SCI_PM_DOMAINS=y
+CONFIG_EXTCON_PTN5150=m
 CONFIG_EXTCON_USB_GPIO=y
 CONFIG_EXTCON_USBC_CROS_EC=y
 CONFIG_IIO=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 1/2] arm64: defconfig: Enable USB gadget with configfs
  2020-08-17  6:56 [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs Krzysztof Kozlowski
  2020-08-17  6:56 ` [PATCH v2 2/2] arm64: defconfig: Enable ptn5150 extcon driver Krzysztof Kozlowski
@ 2020-08-23  1:46 ` Shawn Guo
  2020-08-23  8:42   ` Krzysztof Kozlowski
  1 sibling, 1 reply; 6+ messages in thread
From: Shawn Guo @ 2020-08-23  1:46 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: devicetree, linux-samsung-soc, Arnd Bergmann, Geert Uytterhoeven,
	Catalin Marinas, Sascha Hauer, linux-kernel, Li Yang, soc, arm,
	NXP Linux Team, Pengutronix Kernel Team, Olof Johansson,
	Fabio Estevam, Will Deacon, linux-arm-kernel

On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote:
> USB OTG connections are pretty common for embedded and development
> boards, for example to have networking or serial access to the device.
> Build as a module the USB gadget configfs options so the defconfig can
> be used in such development configurations.
> 
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>

Applied both, thanks.

_______________________________________________
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 1/2] arm64: defconfig: Enable USB gadget with configfs
  2020-08-23  1:46 ` [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs Shawn Guo
@ 2020-08-23  8:42   ` Krzysztof Kozlowski
  2020-08-23 22:58     ` Olof Johansson
  0 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-23  8:42 UTC (permalink / raw)
  To: Shawn Guo
  Cc: devicetree, linux-samsung-soc, Arnd Bergmann, Geert Uytterhoeven,
	Catalin Marinas, Sascha Hauer, linux-kernel, Li Yang, soc, arm,
	NXP Linux Team, Pengutronix Kernel Team, Olof Johansson,
	Fabio Estevam, Will Deacon, linux-arm-kernel

On Sun, Aug 23, 2020 at 09:46:01AM +0800, Shawn Guo wrote:
> On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote:
> > USB OTG connections are pretty common for embedded and development
> > boards, for example to have networking or serial access to the device.
> > Build as a module the USB gadget configfs options so the defconfig can
> > be used in such development configurations.
> > 
> > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> 
> Applied both, thanks.

Thanks, although few days ago I got confirmation from patchwork that
Olof already applied them to arm-soc.  I cannot find them in arm-soc
or next trees, though.

Dear Olof,
Did you pick these up already?

Best regards,
Krzysztof


_______________________________________________
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 1/2] arm64: defconfig: Enable USB gadget with configfs
  2020-08-23  8:42   ` Krzysztof Kozlowski
@ 2020-08-23 22:58     ` Olof Johansson
  2020-08-24 10:42       ` Shawn Guo
  0 siblings, 1 reply; 6+ messages in thread
From: Olof Johansson @ 2020-08-23 22:58 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: DTML, moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES,
	Arnd Bergmann, Geert Uytterhoeven, SoC Team, Catalin Marinas,
	Sascha Hauer, Linux Kernel Mailing List, Li Yang, Will Deacon,
	ARM-SoC Maintainers, NXP Linux Team, Pengutronix Kernel Team,
	Fabio Estevam, Shawn Guo, Linux ARM Mailing List

Hi,

On Sun, Aug 23, 2020 at 1:42 AM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On Sun, Aug 23, 2020 at 09:46:01AM +0800, Shawn Guo wrote:
> > On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote:
> > > USB OTG connections are pretty common for embedded and development
> > > boards, for example to have networking or serial access to the device.
> > > Build as a module the USB gadget configfs options so the defconfig can
> > > be used in such development configurations.
> > >
> > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> >
> > Applied both, thanks.
>
> Thanks, although few days ago I got confirmation from patchwork that
> Olof already applied them to arm-soc.  I cannot find them in arm-soc
> or next trees, though.
>
> Dear Olof,
> Did you pick these up already?

Yes, I applied them to the arm/fixes in the soc tree:
https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git/log/?h=arm/fixes


-Olof

_______________________________________________
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 1/2] arm64: defconfig: Enable USB gadget with configfs
  2020-08-23 22:58     ` Olof Johansson
@ 2020-08-24 10:42       ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2020-08-24 10:42 UTC (permalink / raw)
  To: Olof Johansson
  Cc: DTML, moderated list:ARM/SAMSUNG EXYNOS ARM ARCHITECTURES,
	Arnd Bergmann, Geert Uytterhoeven, Catalin Marinas, Sascha Hauer,
	Linux Kernel Mailing List, Krzysztof Kozlowski, Li Yang, SoC Team,
	ARM-SoC Maintainers, NXP Linux Team, Pengutronix Kernel Team,
	Fabio Estevam, Will Deacon, Linux ARM Mailing List

On Sun, Aug 23, 2020 at 03:58:48PM -0700, Olof Johansson wrote:
> Hi,
> 
> On Sun, Aug 23, 2020 at 1:42 AM Krzysztof Kozlowski <krzk@kernel.org> wrote:
> >
> > On Sun, Aug 23, 2020 at 09:46:01AM +0800, Shawn Guo wrote:
> > > On Mon, Aug 17, 2020 at 08:56:53AM +0200, Krzysztof Kozlowski wrote:
> > > > USB OTG connections are pretty common for embedded and development
> > > > boards, for example to have networking or serial access to the device.
> > > > Build as a module the USB gadget configfs options so the defconfig can
> > > > be used in such development configurations.
> > > >
> > > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> > >
> > > Applied both, thanks.
> >
> > Thanks, although few days ago I got confirmation from patchwork that
> > Olof already applied them to arm-soc.  I cannot find them in arm-soc
> > or next trees, though.
> >
> > Dear Olof,
> > Did you pick these up already?
> 
> Yes, I applied them to the arm/fixes in the soc tree:
> https://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git/log/?h=arm/fixes

Okay, dropped them from my tree.

Shawn

_______________________________________________
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-08-24 10:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-17  6:56 [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs Krzysztof Kozlowski
2020-08-17  6:56 ` [PATCH v2 2/2] arm64: defconfig: Enable ptn5150 extcon driver Krzysztof Kozlowski
2020-08-23  1:46 ` [PATCH v2 1/2] arm64: defconfig: Enable USB gadget with configfs Shawn Guo
2020-08-23  8:42   ` Krzysztof Kozlowski
2020-08-23 22:58     ` Olof Johansson
2020-08-24 10:42       ` Shawn Guo

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