From patchwork Thu Nov 7 13:30:13 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Brugger X-Patchwork-Id: 1191152 X-Patchwork-Delegate: matthias.bgg@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="kjZ0WyOO"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 47845v1bdGz9sPT for ; Fri, 8 Nov 2019 00:30:27 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id B7343C21C51; Thu, 7 Nov 2019 13:30:23 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 5FE37C21C51; Thu, 7 Nov 2019 13:30:22 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 5EF87C21C51; Thu, 7 Nov 2019 13:30:21 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by lists.denx.de (Postfix) with ESMTPS id D56FAC21BE5 for ; Thu, 7 Nov 2019 13:30:20 +0000 (UTC) Received: from ziggy.de (unknown [37.223.137.234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D7C162187F; Thu, 7 Nov 2019 13:30:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1573133419; bh=kLauF3JxjyH/Xs6KFno78HhZQOZpYX4c6yGUumm5ZQ8=; h=From:To:Cc:Subject:Date:From; b=kjZ0WyOOQb1VMtMA729yahhA4NzENVpN+cBH5nHtCzETjJ2VT6CWUBjjyNcGmxpB6 5XyaUhOhsxDEdcEJrr6qZ9ZxK8RdB2Lmb7CQW7064zoxE9JFPfIOy2w/WQlxgZnR+q lrYFfteSmOXqSTi2zejoo+z/qN95iZcQDL9s1its= From: matthias.bgg@kernel.org To: Tom Rini , Alexander Graf , Heinrich Schuchardt Date: Thu, 7 Nov 2019 14:30:13 +0100 Message-Id: <20191107133013.29418-1-matthias.bgg@kernel.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Cc: u-boot@lists.denx.de, Matthias Brugger Subject: [U-Boot] [PATCH] fdt: fix bcm283x dm-pre-reloc definitions X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 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" From: Matthias Brugger In commmit 143256b353 ("fdt: update bcm283x device tree sources to Linux 5.1-rc6 state") we accidently deleted the inclution of bcm283x-uboot.dtsi which marks, soc, uarts and pincontroller as dm-pre-reloc Without this definitions the first call to bcm283x_mu_serial_ofdata_to_platdata() fails as the pins are not set correctly. As a result the U-Boot banner isn't shown on boot. Reported-by: Tom Rini Reported-by: Heinrich Schuchardt Signed-off-by: Matthias Brugger --- arch/arm/dts/bcm283x.dtsi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch/arm/dts/bcm283x.dtsi b/arch/arm/dts/bcm283x.dtsi index 9777644c6c..39d7bd600e 100644 --- a/arch/arm/dts/bcm283x.dtsi +++ b/arch/arm/dts/bcm283x.dtsi @@ -51,7 +51,7 @@ }; }; - soc { + soc: soc { compatible = "simple-bus"; #address-cells = <1>; #size-cells = <1>; @@ -675,3 +675,5 @@ #phy-cells = <0>; }; }; + +#include "bcm283x-uboot.dtsi"