From patchwork Thu Jun 21 09:35:49 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 932651 X-Patchwork-Delegate: sr@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) 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=none (p=none dis=none) header.from=tkos.co.il Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 41BGmB6kRSz9s0W for ; Thu, 21 Jun 2018 19:36:10 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 9EA5AC2202D; Thu, 21 Jun 2018 09:36:09 +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=none 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 9C697C21F89; Thu, 21 Jun 2018 09:36:06 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 2820AC21F9D; Thu, 21 Jun 2018 09:36:05 +0000 (UTC) Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by lists.denx.de (Postfix) with ESMTPS id B451DC21F2B for ; Thu, 21 Jun 2018 09:36:04 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id E464644004B; Thu, 21 Jun 2018 12:36:03 +0300 (IDT) From: Baruch Siach To: Stefan Roese Date: Thu, 21 Jun 2018 12:35:49 +0300 Message-Id: <281a999f2996e639d0e420f625e7546992a38ae2.1529573749.git.baruch@tkos.co.il> X-Mailer: git-send-email 2.17.1 Cc: u-boot@lists.denx.de, Baruch Siach Subject: [U-Boot] [PATCH v2] arm: mvebu: clearfog: add u-boot, dm-spl tag for spi 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" From: Jon Nettleton This is required so SPL and u-boot can boot from spi flash devices that use the dm drivers. Signed-off-by: Jon Nettleton [baruch: use -u-boot.dtsi] Signed-off-by: Baruch Siach Reviewed-by: Stefan Roese --- v2: Add u-boot,dm-spl in .dtsi (Stefan Roese) --- arch/arm/dts/armada-388-clearfog-u-boot.dtsi | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 arch/arm/dts/armada-388-clearfog-u-boot.dtsi diff --git a/arch/arm/dts/armada-388-clearfog-u-boot.dtsi b/arch/arm/dts/armada-388-clearfog-u-boot.dtsi new file mode 100644 index 000000000000..f31691ee9491 --- /dev/null +++ b/arch/arm/dts/armada-388-clearfog-u-boot.dtsi @@ -0,0 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0+ + +&spi1 { + u-boot,dm-spl; + + spi-flash@0 { + u-boot,dm-spl; + }; +};