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 6D5F4C433EF for ; Fri, 28 Jan 2022 18:35:37 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5E727837C9; Fri, 28 Jan 2022 19:35:35 +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=1643394935; bh=SWoLF17FbmQJG3g6GOP95noJrAO+FoZK0UgFhLzvrFQ=; h=From:To:Cc:Subject:Date:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:List-Subscribe:From; b=sUDltlb14viKzHQp6mnB5fIvd9YELpKFggqgHfKtW4ghE5U33WcBqHloSkuhu/k9D jY9YRflwgYvpBpVd34TrnQrigTWswMJpu36uw1RVo57zpBtH7XulOACd1K5c8/wKUc Lr6lFd86XD3YXuphX2GY3b3sIk/MDSo/n4QUb1pcQFu3cOmpdJPsIPxUwGFELgf/dX cnK2PNrxdnsac9yD5/Zzhbmr85hyMaMY58NpJxenBZJavXKTXBwR47lUC56VgfAyOR /XM/jbg3pUIrfX1AO0YaC9m0b5tDerETKHQwDpcGUTL6dWzOKXyfnHk6siTrO6R2x2 N02wUlWs/sD5A== Received: from tr.lan (ip-89-176-112-137.net.upcbroadband.cz [89.176.112.137]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: marex@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 58DFE820FE; Fri, 28 Jan 2022 19:35:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1643394934; bh=SWoLF17FbmQJG3g6GOP95noJrAO+FoZK0UgFhLzvrFQ=; h=From:To:Cc:Subject:Date:From; b=oeKFlW3p3WkANC+plLW2YiYerhqmpIjVvm9V3tJWlqC+S7LL1e42YGxblwgr49Zzx qZelWTxpbZb66GWzUpjLWNPpTW8AAU4m4A797L8N9/eMCyso8du6Z4uv6q8wCNzKu4 RQ33f8dGngPDtFTN52oN0bJ1Cy2KYCC8yjD5cy7epG42zDiBIQUhVgLZGTFlsjSaaX EC0d+EncuCWoJIBVnh/bUdhxlqGWEvMkG1o7Vb0m5yY/l4Sm8t4fWUO6SCuUBcV4UA mXmnPXJ/ibPj8zauY/FhtRQMgSBCJOemn3z6Ywz3IrVRqXMWR9156Coy0vSvuC3mF5 EBY6nNNW4UkRA== From: Marek Vasut To: u-boot@lists.denx.de Cc: Marek Vasut , Patrice Chotard , Patrick Delaunay Subject: [PATCH] ARM: dts: stm32: Add USB OTG pinctrl and regulator nodes into SPL DT on DHCOR Date: Fri, 28 Jan 2022 19:35:20 +0100 Message-Id: <20220128183520.55417-1-marex@denx.de> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 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 Fix the following warning in SPL and make sure that even DTs which enforce Vbus detection using u-boot,force-vbus-detection;, the DFU in SPL will work. dwc2-udc-otg usb-otg@49000000: prop pinctrl-0 index 0 invalid phandle Signed-off-by: Marek Vasut Cc: Patrice Chotard Cc: Patrick Delaunay --- arch/arm/dts/stm32mp15xx-dhcor-u-boot.dtsi | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch/arm/dts/stm32mp15xx-dhcor-u-boot.dtsi b/arch/arm/dts/stm32mp15xx-dhcor-u-boot.dtsi index 71375510b4a..ff9ca625bf5 100644 --- a/arch/arm/dts/stm32mp15xx-dhcor-u-boot.dtsi +++ b/arch/arm/dts/stm32mp15xx-dhcor-u-boot.dtsi @@ -171,6 +171,14 @@ u-boot,dm-spl; }; +&usb33 { + u-boot,dm-spl; +}; + +&usbotg_hs_pins_a { + u-boot,dm-spl; +}; + &usbotg_hs { u-boot,dm-spl; }; -- 2.34.1