From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751753AbeEDIIo (ORCPT ); Fri, 4 May 2018 04:08:44 -0400 Received: from mail-wr0-f193.google.com ([209.85.128.193]:38360 "EHLO mail-wr0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751404AbeEDIIl (ORCPT ); Fri, 4 May 2018 04:08:41 -0400 X-Google-Smtp-Source: AB8JxZp0y9HxL94OZba8fy9ylX4FO1OHEWJrrar/qp5+gWd/diOw01VR1KVm5fRCwlBL6DIyQI7tfg== From: Bartosz Golaszewski To: Sekhar Nori , Kevin Hilman , Rob Herring , Mark Rutland Cc: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Bartosz Golaszewski Subject: [PATCH] ARM: dts: da850-lcdk: increase the size of the u-boot nand partition Date: Fri, 4 May 2018 10:08:35 +0200 Message-Id: <20180504080835.28632-1-brgl@bgdev.pl> X-Mailer: git-send-email 2.17.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Bartosz Golaszewski Current mainline u-boot builds images that are bigger than the 0x80000 bytes u-boot partition allocated from the NAND memory. Using the free space partition results in an unbootable system. Increase the partition size to 0xa0000 bytes. Signed-off-by: Bartosz Golaszewski --- arch/arm/boot/dts/da850-lcdk.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/da850-lcdk.dts b/arch/arm/boot/dts/da850-lcdk.dts index 7de302f890d7..fc8667445892 100644 --- a/arch/arm/boot/dts/da850-lcdk.dts +++ b/arch/arm/boot/dts/da850-lcdk.dts @@ -336,11 +336,11 @@ partition@20000 { /* The LCDK defaults to booting from this partition */ label = "u-boot"; - reg = <0x020000 0x080000>; + reg = <0x020000 0x0a0000>; }; partition@a0000 { label = "free space"; - reg = <0x0a0000 0>; + reg = <0x0c0000 0>; }; }; }; -- 2.17.0