[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAGb2v66meMUPwOUr4Qutqu7TO-UwDtCdwOhwDv8JE_JMZi=58w@mail.gmail.com>
Date: Sat, 2 Nov 2024 19:29:46 +0800
From: Chen-Yu Tsai <wens@...e.org>
To: Cody Eksal <masterr3c0rd@...chal.quest>
Cc: Rob Herring <robh@...nel.org>, Krzysztof Kozlowski <krzk+dt@...nel.org>,
Conor Dooley <conor+dt@...nel.org>, Jernej Skrabec <jernej.skrabec@...il.com>,
Samuel Holland <samuel@...lland.org>, Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Kishon Vijay Abraham I <kishon@...nel.org>, Maxime Ripard <mripard@...nel.org>,
Michael Turquette <mturquette@...libre.com>, Nishanth Menon <nm@...com>,
"Rafael J. Wysocki" <rafael@...nel.org>, Stephen Boyd <sboyd@...nel.org>, Vinod Koul <vkoul@...nel.org>,
Viresh Kumar <vireshk@...nel.org>, Viresh Kumar <viresh.kumar@...aro.org>,
Yangtao Li <tiny.windzz@...il.com>, Parthiban <parthiban@...umiz.com>,
Andre Przywara <andre.przywara@....com>, devicetree@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org, linux-sunxi@...ts.linux.dev,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2 07/13] arm64: allwinner: A100: enable EHCI, OHCI and
USB PHY nodes in Perf1
On Thu, Oct 31, 2024 at 3:03 PM Cody Eksal <masterr3c0rd@...chal.quest> wrote:
>
> From: Yangtao Li <frank@...winnertech.com>
>
> Add USB support on A100 perf1 board, which include two USB2.0 port.
>
> Signed-off-by: Yangtao Li <frank@...winnertech.com>
> Signed-off-by: Cody Eksal <masterr3c0rd@...chal.quest>
> ---
> Changes in V2:
> - Add dr_mode here, instead of in the .dtsi
>
> .../allwinner/sun50i-a100-allwinner-perf1.dts | 39 +++++++++++++++++++
> 1 file changed, 39 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/allwinner/sun50i-a100-allwinner-perf1.dts b/arch/arm64/boot/dts/allwinner/sun50i-a100-allwinner-perf1.dts
> index f5c5c1464482..2f8c7ee60283 100644
> --- a/arch/arm64/boot/dts/allwinner/sun50i-a100-allwinner-perf1.dts
> +++ b/arch/arm64/boot/dts/allwinner/sun50i-a100-allwinner-perf1.dts
> @@ -7,6 +7,8 @@
>
> #include "sun50i-a100.dtsi"
>
> +#include <dt-bindings/gpio/gpio.h>
> +
> /{
> model = "Allwinner A100 Perf1";
> compatible = "allwinner,a100-perf1", "allwinner,sun50i-a100";
> @@ -18,6 +20,36 @@ aliases {
> chosen {
> stdout-path = "serial0:115200n8";
> };
> +
> + reg_usb1_vbus: usb1-vbus {
> + compatible = "regulator-fixed";
> + regulator-name = "usb1-vbus";
> + regulator-min-microvolt = <5000000>;
> + regulator-max-microvolt = <5000000>;
> + gpio = <&pio 7 10 GPIO_ACTIVE_HIGH>; /* PH10 */
> + enable-active-high;
> + };
> +};
> +
> +&ehci0 {
> + status = "okay";
> +};
> +
> +&ehci1 {
> + status = "okay";
> +};
> +
> +&ohci0 {
> + status = "okay";
> +};
> +
> +&ohci1 {
> + status = "okay";
> +};
> +
> +&usb_otg {
> + dr_mode = "otg";
> + status = "okay";
Since you noted in the previous patch that OTG doesn't work if OHCI0/EHCI0
are enabled and probed before musb, maybe we should keep them disabled
for the time being?
You could leave a TODO item above the &usb_otg node.
ChenYu
> };
>
> &pio {
> @@ -178,3 +210,10 @@ &uart0 {
> pinctrl-0 = <&uart0_pb_pins>;
> status = "okay";
> };
> +
> +&usbphy {
> + usb0_id_det-gpios = <&pio 7 8 GPIO_ACTIVE_HIGH>; /* PH8 */
> + usb0_vbus-supply = <®_drivevbus>;
> + usb1_vbus-supply = <®_usb1_vbus>;
> + status = "okay";
> +};
> --
> 2.47.0
>
Powered by blists - more mailing lists