Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754057AbeAOIFT convert rfc822-to-8bit (ORCPT + 1 other); Mon, 15 Jan 2018 03:05:19 -0500 Received: from hermes.aosc.io ([199.195.250.187]:39600 "EHLO hermes.aosc.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751732AbeAOIFR (ORCPT ); Mon, 15 Jan 2018 03:05:17 -0500 From: Icenowy Zheng To: linux-arm-kernel@lists.infradead.org Cc: Maxime Ripard , Jagan Teki , Mark Rutland , devicetree@vger.kernel.org, Catalin Marinas , linux-sunxi@googlegroups.com, Will Deacon , linux-kernel@vger.kernel.org, Chen-Yu Tsai , Rob Herring , Michael Trimarchi Subject: Re: [PATCH v2] arm64: allwinner: a64: orangepi-zero-plus2: add usb otg Date: Mon, 15 Jan 2018 16:05:07 +0800 Message-ID: <8080607.cgOBd57Bn1@ice-x220i> In-Reply-To: <20180115080139.k2vrczo3hnvdt3df@flea.lan> References: <1515748144-25204-1-git-send-email-jagan@amarulasolutions.com> <20180115080139.k2vrczo3hnvdt3df@flea.lan> MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: 在 2018年1月15日星期一 CST 下午4:01:39,Maxime Ripard 写道: > Hi, > > On Fri, Jan 12, 2018 at 02:39:04PM +0530, Jagan Teki wrote: > > Add usb otg support for orangepi-zero-plus2 board: > > - Add usb_otg node with dr_mode as 'otg' > > - USB0-IDDET connected to PA21 > > - VBUS connected through DCIN which always on > > > > Tested mass storage function. > > > > Signed-off-by: Jagan Teki > > --- > > Changes for v2: > > - Change dr_mode to peripheral > > > > .../dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts | 18 > > ++++++++++++++++++ 1 file changed, 18 insertions(+) > > > > diff --git > > a/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts > > b/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts index > > af43533..6511190 100644 > > --- a/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts > > +++ b/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts > > @@ -73,6 +73,10 @@ > > > > }; > > > > }; > > > > +&ehci0 { > > + status = "okay"; > > +}; > > + > > > > &mmc0 { > > > > pinctrl-names = "default"; > > pinctrl-0 = <&mmc0_pins_a>; > > > > @@ -111,6 +115,10 @@ > > > > status = "okay"; > > > > }; > > > > +&ohci0 { > > + status = "okay"; > > +}; > > + > > > > &uart0 { > > > > pinctrl-names = "default"; > > pinctrl-0 = <&uart0_pins_a>; > > > > @@ -122,3 +130,13 @@ > > > > pinctrl-0 = <&uart1_pins>, <&uart1_rts_cts_pins>; > > status = "okay"; > > > > }; > > > > + > > +&usb_otg { > > + dr_mode = "peripheral"; > > If VBUS is always on, this can only operate safely in host mode, not > peripheral. I think this kind of device is designed to directly drain power from the host in peripheral mode. > > Maxime