Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751871AbdLLEIB (ORCPT ); Mon, 11 Dec 2017 23:08:01 -0500 Received: from mail-it0-f66.google.com ([209.85.214.66]:38934 "EHLO mail-it0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751379AbdLLEH7 (ORCPT ); Mon, 11 Dec 2017 23:07:59 -0500 X-Google-Smtp-Source: ACJfBotzY2qEApAlFmQ733frCKGHiwbpWtRGvmP7e0creoS0F2GM1AZJpPxNG/xOuDcp0LhZca/6OQ== From: "Derald D. Woods" To: linux-omap@vger.kernel.org Cc: tony@atomide.com, linux-kernel@vger.kernel.org, "Derald D. Woods" Subject: [PATCH] ARM: dts: omap3-evm: Fix missing NAND partition information Date: Mon, 11 Dec 2017 22:12:13 -0600 Message-Id: <20171212041213.27436-1-woods.technical@gmail.com> X-Mailer: git-send-email 2.15.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1175 Lines: 49 The partition information was omitted during the conversion to OMAP3430 specific data. The data added by this commit is consistent with current U-Boot default definitions. Fixes: 62fe1d337461 ("ARM: dts: omap3-evm: Add OMAP3530 specific device tree processor data") Signed-off-by: Derald D. Woods --- arch/arm/boot/dts/omap3-evm.dts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/arch/arm/boot/dts/omap3-evm.dts b/arch/arm/boot/dts/omap3-evm.dts index 21a3b88aef0c..1220deb47aae 100644 --- a/arch/arm/boot/dts/omap3-evm.dts +++ b/arch/arm/boot/dts/omap3-evm.dts @@ -85,5 +85,30 @@ #address-cells = <1>; #size-cells = <1>; + + partition@0 { + label = "spl"; + reg = <0 0x80000>; + }; + partition@80000 { + label = "u-boot"; + reg = <0x80000 0x1c0000>; + }; + partition@240000 { + label = "dtb"; + reg = <0x240000 0x20000>; + }; + partition@260000 { + label = "u-boot-env"; + reg = <0x260000 0x20000>; + }; + partition@280000 { + label = "kernel"; + reg = <0x280000 0x600000>; + }; + partition@880000 { + label = "rootfs"; + reg = <0x880000 0>; + }; }; }; -- 2.15.1