* [PATCH v1 02/11] ARM: dts: amlogic: Used onboard usb hub reset to enable usb hub [not found] <20221228100321.15949-1-linux.amoon@gmail.com> @ 2022-12-28 10:03 ` Anand Moon 2022-12-28 15:08 ` Krzysztof Kozlowski 2022-12-28 10:03 ` [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 Anand Moon ` (3 subsequent siblings) 4 siblings, 1 reply; 14+ messages in thread From: Anand Moon @ 2022-12-28 10:03 UTC (permalink / raw) To: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl Cc: linux-amlogic, devicetree, linux-arm-kernel, linux-kernel On Odroid c1 previously use gpio-hog to reset the usb hub, switch to used on board usb hub reset to enable the usb hub and enable power to usb hub. Add usb hub regulator as per the schematic. Signed-off-by: Anand Moon <linux.amoon@gmail.com> --- arch/arm/boot/dts/meson8b-odroidc1.dts | 40 +++++++++++++++++--------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/arch/arm/boot/dts/meson8b-odroidc1.dts b/arch/arm/boot/dts/meson8b-odroidc1.dts index 04356bc639fa..3b29169aac43 100644 --- a/arch/arm/boot/dts/meson8b-odroidc1.dts +++ b/arch/arm/boot/dts/meson8b-odroidc1.dts @@ -185,6 +185,33 @@ vdd_rtc: regulator-vdd-rtc { vin-supply = <&vcc_3v3>; }; + + usb_otg_pwr: regulator-usb-pwrs { + compatible = "regulator-fixed"; + regulator-name = "USB_OTG_PWR"; + + regulator-min-microvolt = <5000000>; + regulator-max-microvolt = <5000000>; + + /* signal name from schematics: PWREN */ + gpio = <&gpio_ao GPIOAO_5 GPIO_ACTIVE_HIGH>; + enable-active-high; + vin-supply = <&p5v0>; + }; + + usb { + dr_mode = "host"; + #address-cells = <1>; + #size-cells = <0>; + + hub@1 { + /* Genesys Logic GL852G-OHG usb hub */ + compatible = "genesys,usb5e3,610"; + reg = <1>; + vdd-supply = <&usb_otg_pwr>; + reset-gpio = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; + }; + }; }; &cpu0 { @@ -281,19 +308,6 @@ &gpio_ao { "J7 Header Pin 6", "J7 Header Pin 5", "J7 Header Pin 7", "HDMI_CEC", "SYS_LED", "", ""; - - /* - * WARNING: The USB Hub on the Odroid-C1/C1+ needs a reset signal - * to be turned high in order to be detected by the USB Controller. - * This signal should be handled by a USB specific power sequence - * in order to reset the Hub when USB bus is powered down. - */ - usb-hub { - gpio-hog; - gpios = <GPIOAO_4 GPIO_ACTIVE_HIGH>; - output-high; - line-name = "usb-hub-reset"; - }; }; &ir_receiver { -- 2.38.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] 14+ messages in thread
* Re: [PATCH v1 02/11] ARM: dts: amlogic: Used onboard usb hub reset to enable usb hub 2022-12-28 10:03 ` [PATCH v1 02/11] ARM: dts: amlogic: Used onboard usb hub reset to enable usb hub Anand Moon @ 2022-12-28 15:08 ` Krzysztof Kozlowski 2023-01-07 14:59 ` Anand Moon 0 siblings, 1 reply; 14+ messages in thread From: Krzysztof Kozlowski @ 2022-12-28 15:08 UTC (permalink / raw) To: Anand Moon, Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl Cc: linux-amlogic, devicetree, linux-arm-kernel, linux-kernel On 28/12/2022 11:03, Anand Moon wrote: > On Odroid c1 previously use gpio-hog to reset the usb hub, > switch to used on board usb hub reset to enable the usb hub > and enable power to usb hub. > > Add usb hub regulator as per the schematic. > > Signed-off-by: Anand Moon <linux.amoon@gmail.com> > --- > arch/arm/boot/dts/meson8b-odroidc1.dts | 40 +++++++++++++++++--------- > 1 file changed, 27 insertions(+), 13 deletions(-) > > diff --git a/arch/arm/boot/dts/meson8b-odroidc1.dts b/arch/arm/boot/dts/meson8b-odroidc1.dts > index 04356bc639fa..3b29169aac43 100644 > --- a/arch/arm/boot/dts/meson8b-odroidc1.dts > +++ b/arch/arm/boot/dts/meson8b-odroidc1.dts > @@ -185,6 +185,33 @@ vdd_rtc: regulator-vdd-rtc { > > vin-supply = <&vcc_3v3>; > }; > + > + usb_otg_pwr: regulator-usb-pwrs { > + compatible = "regulator-fixed"; > + regulator-name = "USB_OTG_PWR"; > + > + regulator-min-microvolt = <5000000>; > + regulator-max-microvolt = <5000000>; > + > + /* signal name from schematics: PWREN */ > + gpio = <&gpio_ao GPIOAO_5 GPIO_ACTIVE_HIGH>; > + enable-active-high; > + vin-supply = <&p5v0>; > + }; > + > + usb { > + dr_mode = "host"; > + #address-cells = <1>; > + #size-cells = <0>; > + > + hub@1 { > + /* Genesys Logic GL852G-OHG usb hub */ > + compatible = "genesys,usb5e3,610"; Wrong compatible. Does not match pattern in usb-device.yaml. 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] 14+ messages in thread
* Re: [PATCH v1 02/11] ARM: dts: amlogic: Used onboard usb hub reset to enable usb hub 2022-12-28 15:08 ` Krzysztof Kozlowski @ 2023-01-07 14:59 ` Anand Moon 0 siblings, 0 replies; 14+ messages in thread From: Anand Moon @ 2023-01-07 14:59 UTC (permalink / raw) To: Krzysztof Kozlowski Cc: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl, linux-amlogic, devicetree, linux-arm-kernel, linux-kernel Hi Krzysztof, On Wed, 28 Dec 2022 at 20:39, Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote: > > On 28/12/2022 11:03, Anand Moon wrote: > > On Odroid c1 previously use gpio-hog to reset the usb hub, > > switch to used on board usb hub reset to enable the usb hub > > and enable power to usb hub. > > > > Add usb hub regulator as per the schematic. > > > > Signed-off-by: Anand Moon <linux.amoon@gmail.com> > > --- > > arch/arm/boot/dts/meson8b-odroidc1.dts | 40 +++++++++++++++++--------- > > 1 file changed, 27 insertions(+), 13 deletions(-) > > > > diff --git a/arch/arm/boot/dts/meson8b-odroidc1.dts b/arch/arm/boot/dts/meson8b-odroidc1.dts > > index 04356bc639fa..3b29169aac43 100644 > > --- a/arch/arm/boot/dts/meson8b-odroidc1.dts > > +++ b/arch/arm/boot/dts/meson8b-odroidc1.dts > > @@ -185,6 +185,33 @@ vdd_rtc: regulator-vdd-rtc { > > > > vin-supply = <&vcc_3v3>; > > }; > > + > > + usb_otg_pwr: regulator-usb-pwrs { > > + compatible = "regulator-fixed"; > > + regulator-name = "USB_OTG_PWR"; > > + > > + regulator-min-microvolt = <5000000>; > > + regulator-max-microvolt = <5000000>; > > + > > + /* signal name from schematics: PWREN */ > > + gpio = <&gpio_ao GPIOAO_5 GPIO_ACTIVE_HIGH>; > > + enable-active-high; > > + vin-supply = <&p5v0>; > > + }; > > + > > + usb { > > + dr_mode = "host"; > > + #address-cells = <1>; > > + #size-cells = <0>; > > + > > + hub@1 { > > + /* Genesys Logic GL852G-OHG usb hub */ > > + compatible = "genesys,usb5e3,610"; > > Wrong compatible. Does not match pattern in usb-device.yaml. > ok, will fix this in the next version. > > Best regards, > Krzysztof > Thanks -Anand _______________________________________________ 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] 14+ messages in thread
* [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 [not found] <20221228100321.15949-1-linux.amoon@gmail.com> 2022-12-28 10:03 ` [PATCH v1 02/11] ARM: dts: amlogic: Used onboard usb hub reset to enable usb hub Anand Moon @ 2022-12-28 10:03 ` Anand Moon 2022-12-28 12:51 ` Martin Blumenstingl 2022-12-28 10:03 ` [PATCH v1 04/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid n2 Anand Moon ` (2 subsequent siblings) 4 siblings, 1 reply; 14+ messages in thread From: Anand Moon @ 2022-12-28 10:03 UTC (permalink / raw) To: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl Cc: linux-amlogic, devicetree, linux-arm-kernel, linux-kernel On Odroid c2 previously use gpio-hog to reset the usb hub, switch to used on-board usb hub reset to enable the usb hub and enable power to hub. Signed-off-by: Anand Moon <linux.amoon@gmail.com> --- .../boot/dts/amlogic/meson-gxbb-odroidc2.dts | 29 +++++++++---------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts b/arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts index 201596247fd9..3d3e61cf65a8 100644 --- a/arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts +++ b/arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts @@ -208,6 +208,20 @@ codec-0 { }; }; }; + + usb { + dr_mode = "host"; + #address-cells = <1>; + #size-cells = <0>; + + hub@1 { + /* Genesys Logic GL852G-OHG usb hub */ + compatible = "genesys,usb5e3,610"; + reg = <1>; + vdd-supply = <&usb_otg_pwr>; + reset-gpio = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; + }; + }; }; &aiu { @@ -250,21 +264,6 @@ eth_phy0: ethernet-phy@0 { }; }; -&gpio_ao { - /* - * WARNING: The USB Hub on the Odroid-C2 needs a reset signal - * to be turned high in order to be detected by the USB Controller - * This signal should be handled by a USB specific power sequence - * in order to reset the Hub when USB bus is powered down. - */ - hog-0 { - gpio-hog; - gpios = <GPIOAO_4 GPIO_ACTIVE_HIGH>; - output-high; - line-name = "usb-hub-reset"; - }; -}; - &hdmi_tx { status = "okay"; pinctrl-0 = <&hdmi_hpd_pins>, <&hdmi_i2c_pins>; -- 2.38.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] 14+ messages in thread
* Re: [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 2022-12-28 10:03 ` [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 Anand Moon @ 2022-12-28 12:51 ` Martin Blumenstingl 2022-12-28 14:44 ` Anand Moon 0 siblings, 1 reply; 14+ messages in thread From: Martin Blumenstingl @ 2022-12-28 12:51 UTC (permalink / raw) To: Anand Moon Cc: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, linux-amlogic, devicetree, linux-arm-kernel, linux-kernel Hi Anand, thank you for working on this topic! On Wed, Dec 28, 2022 at 11:05 AM Anand Moon <linux.amoon@gmail.com> wrote: [...] > + usb { > + dr_mode = "host"; > + #address-cells = <1>; > + #size-cells = <0>; > + > + hub@1 { > + /* Genesys Logic GL852G-OHG usb hub */ > + compatible = "genesys,usb5e3,610"; > + reg = <1>; > + vdd-supply = <&usb_otg_pwr>; > + reset-gpio = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; > + }; > + }; My understanding is that the hub@1 node should be part of the corresponding USB controller node, not a new node. In this case hub@1 should go into the existing &usb1 node. That way we describe the way the hardware is set up (meaning: hub@1 is connected to &usb1). In case hub@1 is not detected within &usb1 then you may need something like [0] (not tested for your use-case). If that helps: feel free to include that patch in your series. Best regards, Martin [0] https://github.com/xdarklight/linux/commit/d8b96e5bc9c20ab2585194e0e59580c3b062c431 _______________________________________________ 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] 14+ messages in thread
* Re: [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 2022-12-28 12:51 ` Martin Blumenstingl @ 2022-12-28 14:44 ` Anand Moon 2023-01-04 8:13 ` Anand Moon 0 siblings, 1 reply; 14+ messages in thread From: Anand Moon @ 2022-12-28 14:44 UTC (permalink / raw) To: Martin Blumenstingl Cc: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, linux-amlogic, devicetree, linux-arm-kernel, linux-kernel Hi Martin, On Wed, 28 Dec 2022 at 18:21, Martin Blumenstingl <martin.blumenstingl@googlemail.com> wrote: > > Hi Anand, > Thanks for your review comments. > thank you for working on this topic! > > On Wed, Dec 28, 2022 at 11:05 AM Anand Moon <linux.amoon@gmail.com> wrote: > [...] > > + usb { > > + dr_mode = "host"; > > + #address-cells = <1>; > > + #size-cells = <0>; > > + > > + hub@1 { > > + /* Genesys Logic GL852G-OHG usb hub */ > > + compatible = "genesys,usb5e3,610"; > > + reg = <1>; > > + vdd-supply = <&usb_otg_pwr>; > > + reset-gpio = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; > > + }; > > + }; > My understanding is that the hub@1 node should be part of the > corresponding USB controller node, not a new node. > In this case hub@1 should go into the existing &usb1 node. That way we > describe the way the hardware is set up (meaning: hub@1 is connected > to &usb1). > Ok, I will move this code under &usb0 and &usb1 nodes. onboard_usb_hub module just assists in usb hub reset. so these changes are meant to replace the gpio-hog. $ dmesg | grep onboard [ 5.405558] usbcore: registered new device driver onboard-usb-hub [ 6.383428] onboard-usb-hub 1-1: reset high-speed USB device number 2 using dwc2 Here is the boot log of the odroid c2 [0] https://pastebin.com/PFy5waPb > In case hub@1 is not detected within &usb1 then you may need something > like [0] (not tested for your use-case). > If that helps: feel free to include that patch in your series. > Thanks, will check if this is needed in this case. As of now it just reinitializes the hub. > > Best regards, > Martin > > > [0] https://github.com/xdarklight/linux/commit/d8b96e5bc9c20ab2585194e0e59580c3b062c431 Thanks -Anand _______________________________________________ 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] 14+ messages in thread
* Re: [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 2022-12-28 14:44 ` Anand Moon @ 2023-01-04 8:13 ` Anand Moon 2023-01-04 8:56 ` Neil Armstrong 2023-01-04 9:36 ` Alexander Stein 0 siblings, 2 replies; 14+ messages in thread From: Anand Moon @ 2023-01-04 8:13 UTC (permalink / raw) To: Martin Blumenstingl Cc: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, linux-amlogic, devicetree, linux-arm-kernel, linux-kernel Hi Martin, On Wed, 28 Dec 2022 at 20:14, Anand Moon <linux.amoon@gmail.com> wrote: > > Hi Martin, > > On Wed, 28 Dec 2022 at 18:21, Martin Blumenstingl > <martin.blumenstingl@googlemail.com> wrote: > > > > Hi Anand, > > > Thanks for your review comments. > > > thank you for working on this topic! > > > > On Wed, Dec 28, 2022 at 11:05 AM Anand Moon <linux.amoon@gmail.com> wrote: > > [...] > > > + usb { > > > + dr_mode = "host"; > > > + #address-cells = <1>; > > > + #size-cells = <0>; > > > + > > > + hub@1 { > > > + /* Genesys Logic GL852G-OHG usb hub */ > > > + compatible = "genesys,usb5e3,610"; > > > + reg = <1>; > > > + vdd-supply = <&usb_otg_pwr>; > > > + reset-gpio = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; > > > + }; > > > + }; > > My understanding is that the hub@1 node should be part of the > > corresponding USB controller node, not a new node. > > In this case hub@1 should go into the existing &usb1 node. That way we > > describe the way the hardware is set up (meaning: hub@1 is connected > > to &usb1). > > > > Ok, I will move this code under &usb0 and &usb1 nodes. > > onboard_usb_hub module just assists in usb hub reset. > so these changes are meant to replace the gpio-hog. > > $ dmesg | grep onboard > [ 5.405558] usbcore: registered new device driver onboard-usb-hub > [ 6.383428] onboard-usb-hub 1-1: reset high-speed USB device number > 2 using dwc2 > > Here is the boot log of the odroid c2 [0] https://pastebin.com/PFy5waPb > Moving the usb hub into usb subnode usb0 or usb1 does not work on Odroid n2 and c4, we have a combo phys of usb 2.0 and usb 3.0 so the onboard usb hub reset does not get initialized until both the PHY and USB nodes are brought up by the drivers. # On Odroid n2 has a combo hub alarm@odroid-n2:~$ lsusb -tv /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M ID 1d6b:0003 Linux Foundation 3.0 root hub |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M ID 05e3:0620 Genesys Logic, Inc. GL3523 Hub |__ Port 1: Dev 5, If 0, Class=Mass Storage, Driver=usb-storage, 5000M ID 174c:5106 ASMedia Technology Inc. ASM1051 SATA 3Gb/s bridge /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M ID 1d6b:0002 Linux Foundation 2.0 root hub |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M ID 05e3:0610 Genesys Logic, Inc. Hub |__ Port 2: Dev 4, If 0, Class=Vendor Specific Class, Driver=ax88179_178a, 480M ID 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet # Odroid C4 also has a combo hub alarm@odroid-c4:~$ lsusb -tv /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M ID 1d6b:0003 Linux Foundation 3.0 root hub |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M ID 2109:0817 VIA Labs, Inc. /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M ID 1d6b:0002 Linux Foundation 2.0 root hub |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M ID 2109:2817 VIA Labs, Inc. So I will continue to work with this usb hub node to do a proper reset of the USB hub. > > In case hub@1 is not detected within &usb1 then you maym need something > > like [0] (not tested for your use-case). > > If that helps: feel free to include that patch in your series. > > > > Thanks, will check if this is needed in this case. As of now it just > reinitializes the hub. > > > > > Best regards, > > Martin > > > > > > [0] https://github.com/xdarklight/linux/commit/d8b96e5bc9c20ab2585194e0e59580c3b062c431 > > Thanks > -Anand Thanks -Anand _______________________________________________ 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] 14+ messages in thread
* Re: [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 2023-01-04 8:13 ` Anand Moon @ 2023-01-04 8:56 ` Neil Armstrong 2023-01-04 9:17 ` Anand Moon 2023-01-04 9:36 ` Alexander Stein 1 sibling, 1 reply; 14+ messages in thread From: Neil Armstrong @ 2023-01-04 8:56 UTC (permalink / raw) To: Anand Moon, Martin Blumenstingl Cc: Rob Herring, Krzysztof Kozlowski, Kevin Hilman, Jerome Brunet, linux-amlogic, devicetree, linux-arm-kernel, linux-kernel On 04/01/2023 09:13, Anand Moon wrote: > Hi Martin, > > On Wed, 28 Dec 2022 at 20:14, Anand Moon <linux.amoon@gmail.com> wrote: >> >> Hi Martin, >> >> On Wed, 28 Dec 2022 at 18:21, Martin Blumenstingl >> <martin.blumenstingl@googlemail.com> wrote: >>> >>> Hi Anand, >>> >> Thanks for your review comments. >> >>> thank you for working on this topic! >>> >>> On Wed, Dec 28, 2022 at 11:05 AM Anand Moon <linux.amoon@gmail.com> wrote: >>> [...] >>>> + usb { >>>> + dr_mode = "host"; >>>> + #address-cells = <1>; >>>> + #size-cells = <0>; >>>> + >>>> + hub@1 { >>>> + /* Genesys Logic GL852G-OHG usb hub */ >>>> + compatible = "genesys,usb5e3,610"; >>>> + reg = <1>; >>>> + vdd-supply = <&usb_otg_pwr>; >>>> + reset-gpio = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; >>>> + }; >>>> + }; >>> My understanding is that the hub@1 node should be part of the >>> corresponding USB controller node, not a new node. >>> In this case hub@1 should go into the existing &usb1 node. That way we >>> describe the way the hardware is set up (meaning: hub@1 is connected >>> to &usb1). >>> >> >> Ok, I will move this code under &usb0 and &usb1 nodes. >> >> onboard_usb_hub module just assists in usb hub reset. >> so these changes are meant to replace the gpio-hog. >> >> $ dmesg | grep onboard >> [ 5.405558] usbcore: registered new device driver onboard-usb-hub >> [ 6.383428] onboard-usb-hub 1-1: reset high-speed USB device number >> 2 using dwc2 >> >> Here is the boot log of the odroid c2 [0] https://pastebin.com/PFy5waPb >> > > Moving the usb hub into usb subnode usb0 or usb1 does not work > on Odroid n2 and c4, we have a combo phys of usb 2.0 and usb 3.0 > so the onboard usb hub reset does not get initialized until both the PHY > and USB nodes are brought up by the drivers. Fine, then add a comment before the usb node explaining that. Thanks, Neil > > # On Odroid n2 has a combo hub > alarm@odroid-n2:~$ lsusb -tv > /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M > ID 1d6b:0003 Linux Foundation 3.0 root hub > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M > ID 05e3:0620 Genesys Logic, Inc. GL3523 Hub > |__ Port 1: Dev 5, If 0, Class=Mass Storage, Driver=usb-storage, 5000M > ID 174c:5106 ASMedia Technology Inc. ASM1051 SATA 3Gb/s bridge > /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M > ID 1d6b:0002 Linux Foundation 2.0 root hub > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M > ID 05e3:0610 Genesys Logic, Inc. Hub > |__ Port 2: Dev 4, If 0, Class=Vendor Specific Class, > Driver=ax88179_178a, 480M > ID 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet > > # Odroid C4 also has a combo hub > > alarm@odroid-c4:~$ lsusb -tv > /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M > ID 1d6b:0003 Linux Foundation 3.0 root hub > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M > ID 2109:0817 VIA Labs, Inc. > /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M > ID 1d6b:0002 Linux Foundation 2.0 root hub > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M > ID 2109:2817 VIA Labs, Inc. > > So I will continue to work with this usb hub node to do a proper reset > of the USB hub. > >>> In case hub@1 is not detected within &usb1 then you maym need something >>> like [0] (not tested for your use-case). >>> If that helps: feel free to include that patch in your series. >>> >> >> Thanks, will check if this is needed in this case. As of now it just >> reinitializes the hub. >> >>> >>> Best regards, >>> Martin >>> >>> >>> [0] https://github.com/xdarklight/linux/commit/d8b96e5bc9c20ab2585194e0e59580c3b062c431 >> >> Thanks >> -Anand > > Thanks > -Anand _______________________________________________ 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] 14+ messages in thread
* Re: [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 2023-01-04 8:56 ` Neil Armstrong @ 2023-01-04 9:17 ` Anand Moon 0 siblings, 0 replies; 14+ messages in thread From: Anand Moon @ 2023-01-04 9:17 UTC (permalink / raw) To: neil.armstrong Cc: Martin Blumenstingl, Rob Herring, Krzysztof Kozlowski, Kevin Hilman, Jerome Brunet, linux-amlogic, devicetree, linux-arm-kernel, linux-kernel Hi Niel, On Wed, 4 Jan 2023 at 14:26, Neil Armstrong <neil.armstrong@linaro.org> wrote: > > On 04/01/2023 09:13, Anand Moon wrote: > > Hi Martin, > > > > On Wed, 28 Dec 2022 at 20:14, Anand Moon <linux.amoon@gmail.com> wrote: > >> > >> Hi Martin, > >> > >> On Wed, 28 Dec 2022 at 18:21, Martin Blumenstingl > >> <martin.blumenstingl@googlemail.com> wrote: > >>> > >>> Hi Anand, > >>> > >> Thanks for your review comments. > >> > >>> thank you for working on this topic! > >>> > >>> On Wed, Dec 28, 2022 at 11:05 AM Anand Moon <linux.amoon@gmail.com> wrote: > >>> [...] > >>>> + usb { > >>>> + dr_mode = "host"; > >>>> + #address-cells = <1>; > >>>> + #size-cells = <0>; > >>>> + > >>>> + hub@1 { > >>>> + /* Genesys Logic GL852G-OHG usb hub */ > >>>> + compatible = "genesys,usb5e3,610"; > >>>> + reg = <1>; > >>>> + vdd-supply = <&usb_otg_pwr>; > >>>> + reset-gpio = <&gpio_ao GPIOAO_4 GPIO_ACTIVE_LOW>; > >>>> + }; > >>>> + }; > >>> My understanding is that the hub@1 node should be part of the > >>> corresponding USB controller node, not a new node. > >>> In this case hub@1 should go into the existing &usb1 node. That way we > >>> describe the way the hardware is set up (meaning: hub@1 is connected > >>> to &usb1). > >>> > >> > >> Ok, I will move this code under &usb0 and &usb1 nodes. > >> > >> onboard_usb_hub module just assists in usb hub reset. > >> so these changes are meant to replace the gpio-hog. > >> > >> $ dmesg | grep onboard > >> [ 5.405558] usbcore: registered new device driver onboard-usb-hub > >> [ 6.383428] onboard-usb-hub 1-1: reset high-speed USB device number > >> 2 using dwc2 > >> > >> Here is the boot log of the odroid c2 [0] https://pastebin.com/PFy5waPb > >> > > > > Moving the usb hub into usb subnode usb0 or usb1 does not work > > on Odroid n2 and c4, we have a combo phys of usb 2.0 and usb 3.0 > > so the onboard usb hub reset does not get initialized until both the PHY > > and USB nodes are brought up by the drivers. > > Fine, then add a comment before the usb node explaining that. > Sure, thanks. > Thanks, > Neil > Thanks -Anand _______________________________________________ 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] 14+ messages in thread
* Re: [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 2023-01-04 8:13 ` Anand Moon 2023-01-04 8:56 ` Neil Armstrong @ 2023-01-04 9:36 ` Alexander Stein 2023-01-07 14:56 ` Anand Moon 1 sibling, 1 reply; 14+ messages in thread From: Alexander Stein @ 2023-01-04 9:36 UTC (permalink / raw) To: Martin Blumenstingl, linux-arm-kernel Cc: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, linux-amlogic, devicetree, linux-arm-kernel, linux-kernel, Anand Moon Am Mittwoch, 4. Januar 2023, 09:13:21 CET schrieb Anand Moon: > Hi Martin, > > On Wed, 28 Dec 2022 at 20:14, Anand Moon <linux.amoon@gmail.com> wrote: > > Hi Martin, > > > > On Wed, 28 Dec 2022 at 18:21, Martin Blumenstingl > > > > <martin.blumenstingl@googlemail.com> wrote: > > > Hi Anand, > > > > Thanks for your review comments. > > > > > thank you for working on this topic! > > > > > > On Wed, Dec 28, 2022 at 11:05 AM Anand Moon <linux.amoon@gmail.com> > > > wrote: > > > [...] > > > > > > > + usb { > > > > + dr_mode = "host"; > > > > + #address-cells = <1>; > > > > + #size-cells = <0>; > > > > + > > > > + hub@1 { > > > > + /* Genesys Logic GL852G-OHG usb hub */ > > > > + compatible = "genesys,usb5e3,610"; > > > > + reg = <1>; > > > > + vdd-supply = <&usb_otg_pwr>; > > > > + reset-gpio = <&gpio_ao GPIOAO_4 > > > > GPIO_ACTIVE_LOW>; > > > > + }; > > > > + }; > > > > > > My understanding is that the hub@1 node should be part of the > > > corresponding USB controller node, not a new node. > > > In this case hub@1 should go into the existing &usb1 node. That way we > > > describe the way the hardware is set up (meaning: hub@1 is connected > > > to &usb1). > > > > Ok, I will move this code under &usb0 and &usb1 nodes. > > > > onboard_usb_hub module just assists in usb hub reset. > > so these changes are meant to replace the gpio-hog. > > > > $ dmesg | grep onboard > > [ 5.405558] usbcore: registered new device driver onboard-usb-hub > > [ 6.383428] onboard-usb-hub 1-1: reset high-speed USB device number > > 2 using dwc2 > > > > Here is the boot log of the odroid c2 [0] https://pastebin.com/PFy5waPb > > Moving the usb hub into usb subnode usb0 or usb1 does not work > on Odroid n2 and c4, we have a combo phys of usb 2.0 and usb 3.0 > so the onboard usb hub reset does not get initialized until both the PHY > and USB nodes are brought up by the drivers. > > # On Odroid n2 has a combo hub > alarm@odroid-n2:~$ lsusb -tv > /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M > ID 1d6b:0003 Linux Foundation 3.0 root hub > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M > > ID 05e3:0620 Genesys Logic, Inc. GL3523 Hub > > |__ Port 1: Dev 5, If 0, Class=Mass Storage, Driver=usb-storage, > |5000M > > ID 174c:5106 ASMedia Technology Inc. ASM1051 SATA 3Gb/s bridge > /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M > ID 1d6b:0002 Linux Foundation 2.0 root hub > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M > > ID 05e3:0610 Genesys Logic, Inc. Hub > > |__ Port 2: Dev 4, If 0, Class=Vendor Specific Class, > > Driver=ax88179_178a, 480M > ID 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet > > # Odroid C4 also has a combo hub > > alarm@odroid-c4:~$ lsusb -tv > /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M > ID 1d6b:0003 Linux Foundation 3.0 root hub > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M > > ID 2109:0817 VIA Labs, Inc. > /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M > ID 1d6b:0002 Linux Foundation 2.0 root hub > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M > > ID 2109:2817 VIA Labs, Inc. > > So I will continue to work with this usb hub node to do a proper reset > of the USB hub. If your USB hub does both USB2.0 and USB3.0 you need to add both devices in DT and reference them using 'peer-hub'property. See ca69b6c78d5d ("arm64: dts: tqma8mpql: add support for 2nd USB (host) interface") for a reference. Best regards, Alexander > > > In case hub@1 is not detected within &usb1 then you maym need something > > > like [0] (not tested for your use-case). > > > If that helps: feel free to include that patch in your series. > > > > Thanks, will check if this is needed in this case. As of now it just > > reinitializes the hub. > > > > > Best regards, > > > Martin > > > > > > > > > [0] > > > https://github.com/xdarklight/linux/commit/d8b96e5bc9c20ab2585194e0e595 > > > 80c3b062c431> > > Thanks > > -Anand > > Thanks > -Anand > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel _______________________________________________ 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] 14+ messages in thread
* Re: [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 2023-01-04 9:36 ` Alexander Stein @ 2023-01-07 14:56 ` Anand Moon 0 siblings, 0 replies; 14+ messages in thread From: Anand Moon @ 2023-01-07 14:56 UTC (permalink / raw) To: Alexander Stein Cc: Martin Blumenstingl, linux-arm-kernel, Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, linux-amlogic, devicetree, linux-kernel Hi Alexander, Thanks for your review comments. On Wed, 4 Jan 2023 at 15:06, Alexander Stein <alexander.stein@ew.tq-group.com> wrote: > > Am Mittwoch, 4. Januar 2023, 09:13:21 CET schrieb Anand Moon: > > Hi Martin, > > > > On Wed, 28 Dec 2022 at 20:14, Anand Moon <linux.amoon@gmail.com> wrote: > > > Hi Martin, > > > > > > On Wed, 28 Dec 2022 at 18:21, Martin Blumenstingl > > > > > > <martin.blumenstingl@googlemail.com> wrote: > > > > Hi Anand, > > > > > > Thanks for your review comments. > > > > > > > thank you for working on this topic! > > > > > > > > On Wed, Dec 28, 2022 at 11:05 AM Anand Moon <linux.amoon@gmail.com> > > > > wrote: > > > > [...] > > > > > > > > > + usb { > > > > > + dr_mode = "host"; > > > > > + #address-cells = <1>; > > > > > + #size-cells = <0>; > > > > > + > > > > > + hub@1 { > > > > > + /* Genesys Logic GL852G-OHG usb hub */ > > > > > + compatible = "genesys,usb5e3,610"; > > > > > + reg = <1>; > > > > > + vdd-supply = <&usb_otg_pwr>; > > > > > + reset-gpio = <&gpio_ao GPIOAO_4 > > > > > GPIO_ACTIVE_LOW>; > > > > > + }; > > > > > + }; > > > > > > > > My understanding is that the hub@1 node should be part of the > > > > corresponding USB controller node, not a new node. > > > > In this case hub@1 should go into the existing &usb1 node. That way we > > > > describe the way the hardware is set up (meaning: hub@1 is connected > > > > to &usb1). > > > > > > Ok, I will move this code under &usb0 and &usb1 nodes. > > > > > > onboard_usb_hub module just assists in usb hub reset. > > > so these changes are meant to replace the gpio-hog. > > > > > > $ dmesg | grep onboard > > > [ 5.405558] usbcore: registered new device driver onboard-usb-hub > > > [ 6.383428] onboard-usb-hub 1-1: reset high-speed USB device number > > > 2 using dwc2 > > > > > > Here is the boot log of the odroid c2 [0] https://pastebin.com/PFy5waPb > > > > Moving the usb hub into usb subnode usb0 or usb1 does not work > > on Odroid n2 and c4, we have a combo phys of usb 2.0 and usb 3.0 > > so the onboard usb hub reset does not get initialized until both the PHY > > and USB nodes are brought up by the drivers. > > > > # On Odroid n2 has a combo hub > > alarm@odroid-n2:~$ lsusb -tv > > /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M > > ID 1d6b:0003 Linux Foundation 3.0 root hub > > > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M > > > > ID 05e3:0620 Genesys Logic, Inc. GL3523 Hub > > > > |__ Port 1: Dev 5, If 0, Class=Mass Storage, Driver=usb-storage, > > |5000M > > > > ID 174c:5106 ASMedia Technology Inc. ASM1051 SATA 3Gb/s bridge > > /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M > > ID 1d6b:0002 Linux Foundation 2.0 root hub > > > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M > > > > ID 05e3:0610 Genesys Logic, Inc. Hub > > > > |__ Port 2: Dev 4, If 0, Class=Vendor Specific Class, > > > > Driver=ax88179_178a, 480M > > ID 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet > > > > # Odroid C4 also has a combo hub > > > > alarm@odroid-c4:~$ lsusb -tv > > /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/1p, 5000M > > ID 1d6b:0003 Linux Foundation 3.0 root hub > > > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 5000M > > > > ID 2109:0817 VIA Labs, Inc. > > /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci-hcd/2p, 480M > > ID 1d6b:0002 Linux Foundation 2.0 root hub > > > > |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M > > > > ID 2109:2817 VIA Labs, Inc. > > > > So I will continue to work with this usb hub node to do a proper reset > > of the USB hub. > > If your USB hub does both USB2.0 and USB3.0 you need to add both devices in DT > and reference them using 'peer-hub'property. See ca69b6c78d5d ("arm64: dts: > tqma8mpql: add support for 2nd USB (host) interface") for a reference. > Yes, I have updated the DTS example for using peer-hub for both devices. > Best regards, > Alexander > Thanks -Anand _______________________________________________ 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] 14+ messages in thread
* [PATCH v1 04/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid n2 [not found] <20221228100321.15949-1-linux.amoon@gmail.com> 2022-12-28 10:03 ` [PATCH v1 02/11] ARM: dts: amlogic: Used onboard usb hub reset to enable usb hub Anand Moon 2022-12-28 10:03 ` [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 Anand Moon @ 2022-12-28 10:03 ` Anand Moon 2022-12-28 10:03 ` [PATCH v1 09/11] arm64: dts: meson-sm1-odroid-c4: Used onboard usb hub reset on odroid c4 Anand Moon 2022-12-28 10:03 ` [PATCH v1 11/11] arm64: defconfig: Enable USB onboard HUB driver Anand Moon 4 siblings, 0 replies; 14+ messages in thread From: Anand Moon @ 2022-12-28 10:03 UTC (permalink / raw) To: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl Cc: linux-amlogic, devicetree, linux-arm-kernel, linux-kernel On Odroid n2 previously use gpio-hog to reset the usb hub, switch to used on-board usb hub reset to enable the usb hub and enable power to hub. Signed-off-by: Anand Moon <linux.amoon@gmail.com> --- .../dts/amlogic/meson-g12b-odroid-n2.dtsi | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi b/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi index 667d2b774924..e5ae885c4008 100644 --- a/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi +++ b/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi @@ -347,6 +347,20 @@ codec { }; }; }; + + usb { + dr_mode = "host"; + #address-cells = <1>; + #size-cells = <0>; + + hub: hub@1 { + /* Genesys Logic GL3523-QFN76 usb hub*/ + compatible = "genesys,usb5e3,620"; + reg = <1>; + vdd-supply = <&hub_5v>; + reset-gpios = <&gpio GPIOH_4 GPIO_ACTIVE_LOW>; + }; + }; }; &acodec { @@ -535,18 +549,6 @@ &gpio { "PIN_3", /* GPIOX_17 */ "PIN_5", /* GPIOX_18 */ "PIN_36"; /* GPIOX_19 */ - /* - * WARNING: The USB Hub on the Odroid-N2 needs a reset signal - * to be turned high in order to be detected by the USB Controller - * This signal should be handled by a USB specific power sequence - * in order to reset the Hub when USB bus is powered down. - */ - hog-0 { - gpio-hog; - gpios = <GPIOH_4 GPIO_ACTIVE_HIGH>; - output-high; - line-name = "usb-hub-reset"; - }; }; &hdmi_tx { -- 2.38.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] 14+ messages in thread
* [PATCH v1 09/11] arm64: dts: meson-sm1-odroid-c4: Used onboard usb hub reset on odroid c4 [not found] <20221228100321.15949-1-linux.amoon@gmail.com> ` (2 preceding siblings ...) 2022-12-28 10:03 ` [PATCH v1 04/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid n2 Anand Moon @ 2022-12-28 10:03 ` Anand Moon 2022-12-28 10:03 ` [PATCH v1 11/11] arm64: defconfig: Enable USB onboard HUB driver Anand Moon 4 siblings, 0 replies; 14+ messages in thread From: Anand Moon @ 2022-12-28 10:03 UTC (permalink / raw) To: Rob Herring, Krzysztof Kozlowski, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl Cc: linux-amlogic, devicetree, linux-arm-kernel, linux-kernel On Odroid c4 previously use gpio-hog to reset the usb hub, switch to used on-board usb hub reset to enable the usb hub and enable power to hub. Signed-off-by: Anand Moon <linux.amoon@gmail.com> --- .../boot/dts/amlogic/meson-sm1-odroid-c4.dts | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dts b/arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dts index 8c30ce63686e..9b8230d6a9da 100644 --- a/arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dts +++ b/arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dts @@ -26,20 +26,19 @@ led-blue { sound { model = "ODROID-C4"; }; -}; -&gpio { - /* - * WARNING: The USB Hub on the Odroid-C4 needs a reset signal - * to be turned high in order to be detected by the USB Controller - * This signal should be handled by a USB specific power sequence - * in order to reset the Hub when USB bus is powered down. - */ - hog-0 { - gpio-hog; - gpios = <GPIOH_4 GPIO_ACTIVE_HIGH>; - output-high; - line-name = "usb-hub-reset"; + usb { + dr_mode = "host"; + #address-cells = <1>; + #size-cells = <0>; + + hub: hub@1 { + /* Via lab VL817-Q7 usb hub */ + compatible = "vialab,usb2109"; + reg = <1>; + vdd-supply = <&usb_pwr_en>; + reset-gpios = <&gpio GPIOH_4 GPIO_ACTIVE_LOW>; + }; }; }; -- 2.38.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] 14+ messages in thread
* [PATCH v1 11/11] arm64: defconfig: Enable USB onboard HUB driver [not found] <20221228100321.15949-1-linux.amoon@gmail.com> ` (3 preceding siblings ...) 2022-12-28 10:03 ` [PATCH v1 09/11] arm64: dts: meson-sm1-odroid-c4: Used onboard usb hub reset on odroid c4 Anand Moon @ 2022-12-28 10:03 ` Anand Moon 4 siblings, 0 replies; 14+ messages in thread From: Anand Moon @ 2022-12-28 10:03 UTC (permalink / raw) To: Catalin Marinas, Will Deacon Cc: linux-amlogic, linux-arm-kernel, linux-kernel Enable the USB onboard HUB driver, used on Amlogic boards. Signed-off-by: Anand Moon <linux.amoon@gmail.com> --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 851e8f9be06d..42c3528a2473 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -923,6 +923,7 @@ CONFIG_USB_SERIAL_CP210X=m CONFIG_USB_SERIAL_FTDI_SIO=m CONFIG_USB_SERIAL_OPTION=m CONFIG_USB_HSIC_USB3503=y +CONFIG_USB_ONBOARD_HUB=m CONFIG_NOP_USB_XCEIV=y CONFIG_USB_GADGET=y CONFIG_USB_RENESAS_USBHS_UDC=m -- 2.38.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] 14+ messages in thread
end of thread, other threads:[~2023-01-07 15:01 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20221228100321.15949-1-linux.amoon@gmail.com>
2022-12-28 10:03 ` [PATCH v1 02/11] ARM: dts: amlogic: Used onboard usb hub reset to enable usb hub Anand Moon
2022-12-28 15:08 ` Krzysztof Kozlowski
2023-01-07 14:59 ` Anand Moon
2022-12-28 10:03 ` [PATCH v1 03/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid c2 Anand Moon
2022-12-28 12:51 ` Martin Blumenstingl
2022-12-28 14:44 ` Anand Moon
2023-01-04 8:13 ` Anand Moon
2023-01-04 8:56 ` Neil Armstrong
2023-01-04 9:17 ` Anand Moon
2023-01-04 9:36 ` Alexander Stein
2023-01-07 14:56 ` Anand Moon
2022-12-28 10:03 ` [PATCH v1 04/11] arm64: dts: amlogic: Used onboard usb hub reset on odroid n2 Anand Moon
2022-12-28 10:03 ` [PATCH v1 09/11] arm64: dts: meson-sm1-odroid-c4: Used onboard usb hub reset on odroid c4 Anand Moon
2022-12-28 10:03 ` [PATCH v1 11/11] arm64: defconfig: Enable USB onboard HUB driver Anand Moon
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).