All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] arm64: defconfig: Enable USB onboard hub
@ 2023-01-09  7:40 Alexander Stein
  2023-01-26  0:22 ` Shawn Guo
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Stein @ 2023-01-09  7:40 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Shawn Guo; +Cc: Alexander Stein, linux-arm-kernel

USB host support on TQMa8MPxL (commit ca69b6c78d5d6 ("arm64: dts:
tqma8mpql: add support for 2nd USB (host) interface") needs onboard USB
hub driver for handling reset GPIO.

Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index f9cab47c585c0..91ce61e4ea578 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -922,6 +922,7 @@ CONFIG_USB_ISP1760=y
 CONFIG_USB_SERIAL=m
 CONFIG_USB_SERIAL_CP210X=m
 CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_ONBOARD_HUB=y
 CONFIG_USB_SERIAL_OPTION=m
 CONFIG_USB_QCOM_EUD=m
 CONFIG_USB_HSIC_USB3503=y
-- 
2.34.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] 3+ messages in thread

* Re: [PATCH 1/1] arm64: defconfig: Enable USB onboard hub
  2023-01-09  7:40 [PATCH 1/1] arm64: defconfig: Enable USB onboard hub Alexander Stein
@ 2023-01-26  0:22 ` Shawn Guo
  2023-01-30  7:54   ` Alexander Stein
  0 siblings, 1 reply; 3+ messages in thread
From: Shawn Guo @ 2023-01-26  0:22 UTC (permalink / raw)
  To: Alexander Stein; +Cc: Catalin Marinas, Will Deacon, linux-arm-kernel

On Mon, Jan 09, 2023 at 08:40:08AM +0100, Alexander Stein wrote:
> USB host support on TQMa8MPxL (commit ca69b6c78d5d6 ("arm64: dts:
> tqma8mpql: add support for 2nd USB (host) interface") needs onboard USB
> hub driver for handling reset GPIO.
> 
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index f9cab47c585c0..91ce61e4ea578 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -922,6 +922,7 @@ CONFIG_USB_ISP1760=y
>  CONFIG_USB_SERIAL=m
>  CONFIG_USB_SERIAL_CP210X=m
>  CONFIG_USB_SERIAL_FTDI_SIO=m
> +CONFIG_USB_ONBOARD_HUB=y

Does it have to be built-in?

Shawn

>  CONFIG_USB_SERIAL_OPTION=m
>  CONFIG_USB_QCOM_EUD=m
>  CONFIG_USB_HSIC_USB3503=y
> -- 
> 2.34.1
> 

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

* Re: [PATCH 1/1] arm64: defconfig: Enable USB onboard hub
  2023-01-26  0:22 ` Shawn Guo
@ 2023-01-30  7:54   ` Alexander Stein
  0 siblings, 0 replies; 3+ messages in thread
From: Alexander Stein @ 2023-01-30  7:54 UTC (permalink / raw)
  To: Shawn Guo; +Cc: Catalin Marinas, Will Deacon, linux-arm-kernel

Hi Shawn,

Am Donnerstag, 26. Januar 2023, 01:22:45 CET schrieb Shawn Guo:
> On Mon, Jan 09, 2023 at 08:40:08AM +0100, Alexander Stein wrote:
> > USB host support on TQMa8MPxL (commit ca69b6c78d5d6 ("arm64: dts:
> > tqma8mpql: add support for 2nd USB (host) interface") needs onboard USB
> > hub driver for handling reset GPIO.
> > 
> > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> > ---
> > 
> >  arch/arm64/configs/defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > index f9cab47c585c0..91ce61e4ea578 100644
> > --- a/arch/arm64/configs/defconfig
> > +++ b/arch/arm64/configs/defconfig
> > @@ -922,6 +922,7 @@ CONFIG_USB_ISP1760=y
> > 
> >  CONFIG_USB_SERIAL=m
> >  CONFIG_USB_SERIAL_CP210X=m
> >  CONFIG_USB_SERIAL_FTDI_SIO=m
> > 
> > +CONFIG_USB_ONBOARD_HUB=y
> 
> Does it have to be built-in?

No, built as module is fine as well. Thanks for pointing out.
But this has been merged already on commit e02e6ca588b8 ("arm64: defconfig: 
Enable USB onboard HUB driver", 2023-01-18).
So this can be dropped.

Regards
Alexander

> Shawn
> 
> >  CONFIG_USB_SERIAL_OPTION=m
> >  CONFIG_USB_QCOM_EUD=m
> >  CONFIG_USB_HSIC_USB3503=y





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

end of thread, other threads:[~2023-01-30  7:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-09  7:40 [PATCH 1/1] arm64: defconfig: Enable USB onboard hub Alexander Stein
2023-01-26  0:22 ` Shawn Guo
2023-01-30  7:54   ` Alexander Stein

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.