From nobody Thu May 2 10:35:39 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (208.118.235.17 [208.118.235.17]) by mx.zohomail.com with SMTPS id 1523541436552465.57013576411134; Thu, 12 Apr 2018 06:57:16 -0700 (PDT) Received: from localhost ([::1]:41677 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6cip-0003oc-2O for importer@patchew.org; Thu, 12 Apr 2018 09:57:07 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35536) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6cho-0003Lk-5t for qemu-devel@nongnu.org; Thu, 12 Apr 2018 09:56:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6chj-0006dm-8h for qemu-devel@nongnu.org; Thu, 12 Apr 2018 09:56:04 -0400 Received: from baptiste.telenet-ops.be ([2a02:1800:120:4::f00:13]:49296) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f6chj-0006ZI-2d for qemu-devel@nongnu.org; Thu, 12 Apr 2018 09:55:59 -0400 Received: from ayla.of.borg ([84.194.111.163]) by baptiste.telenet-ops.be with bizsmtp id ZRvu1x00c3XaVaC01RvuzG; Thu, 12 Apr 2018 15:55:55 +0200 Received: from ramsan.of.borg ([192.168.97.29] helo=ramsan) by ayla.of.borg with esmtp (Exim 4.86_2) (envelope-from ) id 1f6che-00032Z-Cj; Thu, 12 Apr 2018 15:55:54 +0200 Received: from geert by ramsan with local (Exim 4.86_2) (envelope-from ) id 1f6che-0006Ej-BB; Thu, 12 Apr 2018 15:55:54 +0200 From: Geert Uytterhoeven To: Peter Crosthwaite , Alexander Graf Date: Thu, 12 Apr 2018 15:55:37 +0200 Message-Id: <1523541337-23919-1-git-send-email-geert+renesas@glider.be> X-Mailer: git-send-email 2.7.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 2a02:1800:120:4::f00:13 Subject: [Qemu-devel] [PATCH qemu v3] device_tree: Increase FDT_MAX_SIZE to 1 MiB X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-renesas-soc@vger.kernel.org, Peter Maydell , qemu-devel@nongnu.org, Geert Uytterhoeven Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" It is not uncommon for a contemporary FDT to be larger than 64 KiB, leading to failures loading the device tree from sysfs: qemu-system-aarch64: qemu_fdt_setprop: Couldn't set ...: FDT_ERR_NOSPACE Hence increase the limit to 1 MiB, like on PPC. For reference, the largest arm64 DTB created from the Linux sources is ca. 75 KiB large (100 KiB when built with symbols/fixup support). Signed-off-by: Geert Uytterhoeven --- v3: - Update example size figures, v2: - Enlarge from 128 KiB to 1 MiB, as suggested by Peter Maydell. --- device_tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_tree.c b/device_tree.c index 19458b32bf81e55e..52c3358a55838d33 100644 --- a/device_tree.c +++ b/device_tree.c @@ -29,7 +29,7 @@ =20 #include =20 -#define FDT_MAX_SIZE 0x10000 +#define FDT_MAX_SIZE 0x100000 =20 void *create_device_tree(int *sizep) { --=20 2.7.4