From patchwork Sun Mar 22 15:07:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 453134 X-Patchwork-Delegate: yamada.m@jp.panasonic.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 7BEF1140082 for ; Mon, 23 Mar 2015 02:09:07 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 62646A7462; Sun, 22 Mar 2015 16:08:40 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nEN05m1jVfQB; Sun, 22 Mar 2015 16:08:40 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5FED7A7464; Sun, 22 Mar 2015 16:08:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6A45EA742C for ; Sun, 22 Mar 2015 16:08:02 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VM_TAYjUM_ss for ; Sun, 22 Mar 2015 16:08:02 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg012-v.nifty.com (conuserg012.nifty.com [202.248.44.38]) by theia.denx.de (Postfix) with ESMTPS id 4C54E4B667 for ; Sun, 22 Mar 2015 16:08:01 +0100 (CET) Received: from oscar.sesame (KD106179206102.au-net.ne.jp [106.179.206.102]) (authenticated) by conuserg012-v.nifty.com with ESMTP id t2MF7bI5015355; Mon, 23 Mar 2015 00:07:51 +0900 X-Nifty-SrcIP: [106.179.206.102] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Mon, 23 Mar 2015 00:07:27 +0900 Message-Id: <1427036853-9473-8-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1427036853-9473-1-git-send-email-yamada.masahiro@socionext.com> References: <1427036853-9473-1-git-send-email-yamada.masahiro@socionext.com> Cc: Tom Rini Subject: [U-Boot] [PATCH 07/13] ARM: UniPhier: add CONFIG_SPL_MAX_FOOTPRINT X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" The Boot ROM of UniPhier platform only loads 64KB image. We should always make sure that SPL memory footprint is less than that. Signed-off-by: Masahiro Yamada --- include/configs/uniphier.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index db1e08f..d2d88dd 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -296,4 +296,6 @@ #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x10000 +#define CONFIG_SPL_MAX_FOOTPRINT 0x10000 + #endif /* __CONFIG_UNIPHIER_COMMON_H__ */