From nobody Tue Nov 11 10:08:21 2025 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=kernel.org ARC-Seal: i=1; a=rsa-sha256; t=1565912248; cv=none; d=zoho.com; s=zohoarc; b=RjcqYuAv8VoqCFWXeGUowQhBL8i2+ZIKMbgRT07rTo93QlsX/y7ahJnQDrdIX65HIL3q5gHByVekdnHGobQn5BZn7b7Y53eT2QK6QkiLt+GlDbruSe6F2hyNonesNIm9vGEbIjEcQlFA9GP/Mf1WjTFOfvwfYntXjPvoi46tQZI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1565912248; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=jGjow++Io7lMT73VXskoJQhr6pOf5JpefP8SX/aNLrE=; b=OOnWG11CqoQ1P1f4nai73i5tKDjvQoxERH2pLADBfsWhpYXNaBZImUqpGAyT2gJQSnVTfeva0Aj9DIN9Y+w4CIkoAgiaLkOV1dh9Ymc4p8ddPSsSg8P9kBCKWPWk07Yi/edmUUobFYDdPT/KcYpfZl8WWhLwnjtA1Z9+UjaAxIc= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=fail; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1565912248593303.8439222115966; Thu, 15 Aug 2019 16:37:28 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hyPI8-0004Wz-Te; Thu, 15 Aug 2019 23:36:24 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hyPI8-0004WZ-5k for xen-devel@lists.xenproject.org; Thu, 15 Aug 2019 23:36:24 +0000 Received: from mail.kernel.org (unknown [198.145.29.99]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 7dac2528-bfb5-11e9-8baa-12813bfff9fa; Thu, 15 Aug 2019 23:36:23 +0000 (UTC) Received: from sstabellini-ThinkPad-T480s.xilinx.com (c-67-164-102-47.hsd1.ca.comcast.net [67.164.102.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 73F3B2089E; Thu, 15 Aug 2019 23:36:22 +0000 (UTC) X-Inumbo-ID: 7dac2528-bfb5-11e9-8baa-12813bfff9fa DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1565912182; bh=G3p5I60qpfIGdbFvY5MV5Azxe4+cOeULECZc45oO4YQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=k4Xelb54yMw4wpC8qLnZ6+IK7PMyX7hzoeEvE07VJEYDklan1hDxgLqSFxcKqfz+a THE+WbdSYGbS+f5UeRzX3mtDBWadUqX03nFMvy4Qp5qgpLVcjvaV6KMpyYr5wQtiZh YbEpbvixyV2iqK07AEVastBmLiHcocQAzXmM/rHw= From: Stefano Stabellini To: xen-devel@lists.xenproject.org Date: Thu, 15 Aug 2019 16:36:12 -0700 Message-Id: <20190815233618.31630-2-sstabellini@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: References: Subject: [Xen-devel] [PATCH v6 2/8] xen/arm: make process_memory_node a device_tree_node_func X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Stefano Stabellini , julien.grall@arm.com, sstabellini@kernel.org, Volodymyr_Babchuk@epam.com MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) Change the signature of process_memory_node to match device_tree_node_func. Thanks to this change, the next patch will be able to use device_tree_for_each_node to call process_memory_node on all the children of a provided node. Return error if there is no reg property or if nr_banks is reached. Let the caller deal with the error. Add a printk when device tree parsing fails. Signed-off-by: Stefano Stabellini --- Changes in v6: - fix out of space check - bring back printk when address_cells or size_cells are not properly set - return -EINVAL in that case (different from reg missing) - add printk when parsing fails - return -ENOENT when memory size is 0 Changes in v5: - return -ENOENT if address_cells or size_cells are not properly set Changes in v4: - return error if there is no reg propery, remove printk - return error if nr_banks is reached Changes in v3: - improve commit message - check return value of process_memory_node Changes in v2: - new --- xen/arch/arm/bootfdt.c | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/xen/arch/arm/bootfdt.c b/xen/arch/arm/bootfdt.c index f1614ef7fc..9dc2c1352d 100644 --- a/xen/arch/arm/bootfdt.c +++ b/xen/arch/arm/bootfdt.c @@ -130,9 +130,10 @@ int __init device_tree_for_each_node(const void *fdt, = int node, return 0; } =20 -static void __init process_memory_node(const void *fdt, int node, - const char *name, - u32 address_cells, u32 size_cells) +static int __init process_memory_node(const void *fdt, int node, + const char *name, int depth, + u32 address_cells, u32 size_cells, + void *data) { const struct fdt_property *prop; int i; @@ -145,15 +146,12 @@ static void __init process_memory_node(const void *fd= t, int node, { printk("fdt: node `%s': invalid #address-cells or #size-cells", name); - return; + return -EINVAL; } =20 prop =3D fdt_get_property(fdt, node, "reg", NULL); if ( !prop ) - { - printk("fdt: node `%s': missing `reg' property\n", name); - return; - } + return -ENOENT; =20 cell =3D (const __be32 *)prop->data; banks =3D fdt32_to_cpu(prop->len) / (reg_cells * sizeof (u32)); @@ -162,11 +160,15 @@ static void __init process_memory_node(const void *fd= t, int node, { device_tree_get_reg(&cell, address_cells, size_cells, &start, &siz= e); if ( !size ) - continue; + return -ENOENT; bootinfo.mem.bank[bootinfo.mem.nr_banks].start =3D start; bootinfo.mem.bank[bootinfo.mem.nr_banks].size =3D size; bootinfo.mem.nr_banks++; } + + if ( i < banks ) + return -ENOSPC; + return 0; } =20 static void __init process_multiboot_node(const void *fdt, int node, @@ -298,15 +300,20 @@ static int __init early_scan_node(const void *fdt, u32 address_cells, u32 size_cells, void *data) { + int rc =3D 0; + if ( device_tree_node_matches(fdt, node, "memory") ) - process_memory_node(fdt, node, name, address_cells, size_cells); + rc =3D process_memory_node(fdt, node, name, depth, + address_cells, size_cells, NULL); else if ( depth <=3D 3 && (device_tree_node_compatible(fdt, node, "xen= ,multiboot-module" ) || device_tree_node_compatible(fdt, node, "multiboot,module" ))) process_multiboot_node(fdt, node, name, address_cells, size_cells); else if ( depth =3D=3D 1 && device_tree_node_matches(fdt, node, "chose= n") ) process_chosen_node(fdt, node, name, address_cells, size_cells); =20 - return 0; + if ( rc < 0 ) + printk("fdt: node `%s': parsing failed\n", name); + return rc; } =20 static void __init early_print_info(void) --=20 2.17.1 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel