[PATCH 27/46] riscv: resrved_mem: Move fdt_init_reserved_mem() below unflatten_device_tree()

From: Oreoluwa Babatunde
Date: Fri Jan 26 2024 - 19:01:26 EST


The unflattened devicetree structure is available to be used not long
after the page tables have been set up on most architectures, and is
available even before that on other architectures.

Hence, move the call to fdt_init_reserved_mem() to after
unflatten_device_tree() is called so that the reserved memory nodes can
be accessed using the unflattened device tree APIs.

Using the unflattened devicetree APIs is more efficient than using the
flattened devicetree APIs.

Signed-off-by: Oreoluwa Babatunde <quic_obabatun@xxxxxxxxxxx>
---
arch/riscv/kernel/setup.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/riscv/kernel/setup.c b/arch/riscv/kernel/setup.c
index ea4fbc8e0ea1..0601ed1e4ce6 100644
--- a/arch/riscv/kernel/setup.c
+++ b/arch/riscv/kernel/setup.c
@@ -262,8 +262,6 @@ void __init setup_arch(char **cmdline_p)
efi_init();
paging_init();

- fdt_init_reserved_mem();
-
/* Parse the ACPI tables for possible boot-time configuration */
acpi_boot_table_init();

@@ -272,6 +270,8 @@ void __init setup_arch(char **cmdline_p)
#else
unflatten_device_tree();
#endif
+
+ fdt_init_reserved_mem();
misc_mem_init();

init_resources();
--
2.17.1