• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021, ARM Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <libfdt.h>
8 
9 #include <common/debug.h>
10 #include <common/fdt_fixup.h>
11 #include <common/fdt_wrappers.h>
12 
13 #include <sunxi_private.h>
14 
sunxi_prepare_dtb(void * fdt)15 void sunxi_prepare_dtb(void *fdt)
16 {
17 	int ret;
18 
19 	if (fdt == NULL || fdt_check_header(fdt) != 0) {
20 		return;
21 	}
22 
23 	ret = fdt_open_into(fdt, fdt, 0x10000);
24 	if (ret < 0) {
25 		ERROR("Preparing devicetree at %p: error %d\n", fdt, ret);
26 		return;
27 	}
28 
29 #ifdef SUNXI_BL31_IN_DRAM
30 	/* Reserve memory used by Trusted Firmware. */
31 	if (fdt_add_reserved_memory(fdt, "tf-a@40000000", BL31_BASE,
32 				    BL31_LIMIT - BL31_BASE)) {
33 		WARN("Failed to add reserved memory nodes to DT.\n");
34 	}
35 #endif
36 
37 	sunxi_soc_fdt_fixup(fdt);
38 
39 	if (sunxi_psci_is_scpi()) {
40 		ret = fdt_add_cpu_idle_states(fdt, sunxi_idle_states);
41 		if (ret < 0) {
42 			WARN("Failed to add idle states to DT: %d\n", ret);
43 		}
44 	}
45 
46 	ret = fdt_pack(fdt);
47 	if (ret < 0) {
48 		ERROR("Failed to pack devicetree at %p: error %d\n",
49 		      fdt, ret);
50 	}
51 
52 	clean_dcache_range((uintptr_t)fdt, fdt_blob_size(fdt));
53 	INFO("Changed devicetree.\n");
54 }
55