]> xenbits.xensource.com Git - people/jgross/xen.git/commitdiff
xen/arm: bootfdt: Ignore empty memory bank
authorJulien Grall <jgrall@amazon.com>
Fri, 18 Sep 2020 17:11:16 +0000 (18:11 +0100)
committerJulien Grall <jgrall@amazon.com>
Wed, 23 Sep 2020 08:30:01 +0000 (09:30 +0100)
At the moment, Xen will stop processing the Device Tree if a memory
bank is empty (size == 0).

Unfortunately, some of the Device Tree (such as on Colibri imx8qxp)
may contain such a bank. This means Xen will not be able to boot
properly.

Relax the check to just ignore the banks. FWIW this also seems to be the
behavior adopted by Linux.

Reported-by: Daniel Wagner <Daniel.Wagner2@itk-engineering.de>
Signed-off-by: Julien Grall <jgrall@amazon.com>
Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
xen/arch/arm/bootfdt.c

index 08fb59f4e7a9529d398cb6d1da54f4cdced04492..dcff512648a08fb5f91e8da02f96f49eba98a30f 100644 (file)
@@ -163,8 +163,9 @@ static int __init process_memory_node(const void *fdt, int node,
     for ( i = 0; i < banks && mem->nr_banks < NR_MEM_BANKS; i++ )
     {
         device_tree_get_reg(&cell, address_cells, size_cells, &start, &size);
+        /* Some DT may describe empty bank, ignore them */
         if ( !size )
-            return -EINVAL;
+            continue;
         mem->bank[mem->nr_banks].start = start;
         mem->bank[mem->nr_banks].size = size;
         mem->nr_banks++;