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 D4922C433EF for ; Tue, 22 Mar 2022 16:18:17 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A9FEE83B0F; Tue, 22 Mar 2022 17:18:14 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="HwcAeH3X"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id D2DEF83B0F; Tue, 22 Mar 2022 17:18:12 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 4970B83B0F for ; Tue, 22 Mar 2022 17:18:09 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kabel@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 416C9612BC; Tue, 22 Mar 2022 16:18:07 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A3619C340EC; Tue, 22 Mar 2022 16:18:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1647965886; bh=rA5kVpOZwY9r5mk17pyAmbdFf+uODvcl/F0dp34g1Bo=; h=From:To:Cc:Subject:Date:From; b=HwcAeH3X4OmZ0bkkirGizNAYlrbIq8IWCwCsOfLuGijOFLoZHUp+KyC/vC+AljIMn pIIKL2k9BzYEbTGpcHCQc6v/kHb1Dcjz+fQxefTXdwRmwDSyvDEQLbqy4aMS7RHnyg fA3bdSdqGmg1FRLBXCjKJIi3P5Cv4Zdjj5a2qmyZS6bxxer7+5equVoh4/pME81Np2 Nt+F2pH1B4S0F0wOyD9y2ahZMH0CBb52nUQmcu3zVZAdR7r0FwZyo7j4dq6VoiXZ2z qPkOLY+Jjoyp8WW3DEXTMfJ28gB/8v8XlIsUvUefCgcKDIM2fQ9xeloKL4FgCf7lxf ZXKfai7P241bA== From: =?UTF-8?q?Marek=20Beh=C3=BAn?= To: Stefan Roese Cc: u-boot@lists.denx.de, pali@kernel.org, =?UTF-8?q?Marek=20Beh=C3=BAn?= Subject: [PATCH u-boot-marvell] arm: mvebu: dts: turris_mox: fix non-working USB port Date: Tue, 22 Mar 2022 17:17:59 +0100 Message-Id: <20220322161759.24301-1-kabel@kernel.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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 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 --- Dear Stefan, as with the network issue, could we get this to master ASAP? --- 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>; +}; -- 2.34.1