From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 416D8C433F5 for ; Fri, 1 Oct 2021 11:38:01 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 72C9B61A63 for ; Fri, 1 Oct 2021 11:38:00 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 72C9B61A63 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=canonical.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 0D79381545; Fri, 1 Oct 2021 13:37:58 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=canonical.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.b="GO3hmBJr"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id E0B6D82021; Fri, 1 Oct 2021 13:37:55 +0200 (CEST) Received: from smtp-relay-canonical-1.canonical.com (smtp-relay-canonical-1.canonical.com [185.125.188.121]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id A210281545 for ; Fri, 1 Oct 2021 13:37:52 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=canonical.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=heinrich.schuchardt@canonical.com Received: from workstation5.fritz.box (ip-88-152-144-157.hsi03.unitymediagroup.de [88.152.144.157]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id 53B593F070; Fri, 1 Oct 2021 11:37:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1633088271; bh=6zchPsv2pbe9xtdUapVp209napo4lx7u7CH1pK6OjSE=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=GO3hmBJrtuZHHETDhoSfNHaBFcz2oaer8vs1xzZTlcpdGb78PBmWIGu2emedL0Dt1 9dM5fQh9yl4VXIzuFtKWyCJGlQFB2S6JwhZN+LukZhz10+qnIVDT44klZ3FiZIgGNy POMWSOT0ZJ651MjKoa56ssVUShsdmzv4RKmkxZowMBnqlKswgLSIeGHPi+jejVbGLu jsPa4nhrir5yv1XZp8KC3csHsWUTKs5rd34ESoo+dzvaIYmHmtcmTckNp0Lj7gZ5nr hUHZZ2NL9LzqZ6pqhR6+3D5RFEbug9U5RHlWYDtW+Yons7efGfRwQ9ObvYVbXzR7NO XlpXfu8jnSK4g== From: Heinrich Schuchardt To: Tom Rini Cc: Bin Meng , Leo Yu-Chi Liang , Rick Chen , Alexandre Ghiti , Pragnesh Patel , Dimitri John Ledkov , Zong Li , Green Wan , u-boot@lists.denx.de, Heinrich Schuchardt Subject: [PATCH 1/1] board: sifive: unmatched: enlarge CONFIG_SYS_SPL_MALLOC_SIZE Date: Fri, 1 Oct 2021 13:37:45 +0200 Message-Id: <20211001113745.52797-1-heinrich.schuchardt@canonical.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 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" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Avoid an error like Could not get FIT buffer of 1725952 bytes check CONFIG_SYS_SPL_MALLOC_SIZE No device tree specified in SPL image ### ERROR ### Please RESET the board ### Signed-off-by: Heinrich Schuchardt --- include/configs/sifive-unmatched.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/sifive-unmatched.h b/include/configs/sifive-unmatched.h index f8ad2cce1f..8d3deabdd3 100644 --- a/include/configs/sifive-unmatched.h +++ b/include/configs/sifive-unmatched.h @@ -18,7 +18,7 @@ #define CONFIG_SPL_BSS_MAX_SIZE 0x00100000 #define CONFIG_SYS_SPL_MALLOC_START (CONFIG_SPL_BSS_START_ADDR + \ CONFIG_SPL_BSS_MAX_SIZE) -#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00100000 +#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00200000 #define CONFIG_SPL_STACK (0x08000000 + 0x001D0000 - \ GENERATED_GBL_DATA_SIZE) -- 2.32.0