From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id EE4EBC433EF for ; Wed, 23 Mar 2022 05:55:39 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id DAA3F83B2C; Wed, 23 Mar 2022 06:55:36 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1648014937; bh=nTwS4NTAAyC7aJtHy200J1Sdge1C7erOPr4cNX9DFLM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=gF7t4Mv9rFq6tDcwYra7Zb32+iEoZ9i5G1eFko9VMqVgNA7mY/tG2UkDYVHSG1lSP zB9Al5CcQKDCagqj/ZWy0Nsfd+to1rfvQ2YjZ2o0Od/n0jgrI7ZyE8K90PxvAhJi63 gk2e0yqg/ulaCfaIYFBOlMxJwEL+P/sXiXuxtawi07XCRd6lh0y5+1NoatMYKJzSMN VEH8ishY35/gAV6uKt+DGT2OQaH01pNoq7PsPwRKyLO8lVHN3Z67wF4JwfdpOgH2KG kdJfSyKwWobrB2wtmq9p38BnIoNM3NvpdF6UPTBZ9JoBYAiqw5688VWoBlGY2+gfIX UBzrBFcFtBA3A== Received: by phobos.denx.de (Postfix, from userid 109) id 8CBCE83B38; Wed, 23 Mar 2022 06:55:34 +0100 (CET) Received: from mout-u-204.mailbox.org (mout-u-204.mailbox.org [91.198.250.253]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 7EE2283B2C for ; Wed, 23 Mar 2022 06:55:31 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=fail smtp.mailfrom=sr@denx.de Received: from smtp202.mailbox.org (unknown [91.198.250.118]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-u-204.mailbox.org (Postfix) with ESMTPS id 4KNcyq1Shdz9sRD; Wed, 23 Mar 2022 06:55:31 +0100 (CET) Message-ID: <21b4f647-c7ae-60e3-6ec3-a6f5a2ae8ec3@denx.de> Date: Wed, 23 Mar 2022 06:55:27 +0100 MIME-Version: 1.0 Subject: Re: [PATCH u-boot-marvell] arm: mvebu: dts: turris_mox: fix non-working USB port Content-Language: en-US To: =?UTF-8?Q?Marek_Beh=c3=ban?= Cc: u-boot@lists.denx.de, pali@kernel.org, =?UTF-8?Q?Marek_Beh=c3=ban?= References: <20220322161759.24301-1-kabel@kernel.org> From: Stefan Roese In-Reply-To: <20220322161759.24301-1-kabel@kernel.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean On 3/22/22 17:17, Marek Behún wrote: > From: Marek Behún > > Commit 0934dddc6436 ("arm: a37xx: Update DTS files to version from > upstream Linux kernel") ported Linux's device-tree files for Armada 3720 > SOCs. This broke USB port on Turris MOX, because in Linux' DTS the bus > voltage supply is described as a `phy-supply` property of connector > node, a mechanism that is not supported in U-Boot yet. > > For now, fix this by adding `vbus-supply` to usb3 node. > > Fixes: 0934dddc6436 ("arm: a37xx: Update DTS files to version from upstream Linux kernel") > Signed-off-by: Marek Behún Reviewed-by: Stefan Roese > --- > Dear Stefan, as with the network issue, could we get this to master ASAP? Sure. Let me try... Thanks, Stefan > --- > arch/arm/dts/armada-3720-turris-mox-u-boot.dtsi | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm/dts/armada-3720-turris-mox-u-boot.dtsi b/arch/arm/dts/armada-3720-turris-mox-u-boot.dtsi > index 2e05b973d2..28a36a6103 100644 > --- a/arch/arm/dts/armada-3720-turris-mox-u-boot.dtsi > +++ b/arch/arm/dts/armada-3720-turris-mox-u-boot.dtsi > @@ -21,3 +21,7 @@ > }; > > /delete-node/ &mdio; > + > +&usb3 { > + vbus-supply = <&exp_usb3_vbus>; > +}; Viele Grüße, Stefan Roese -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de