2 * Functions to help device tree manipulation using libfdt.
3 * It also provides functions to read entries from device tree proc
6 * Copyright 2008 IBM Corporation.
7 * Authors: Jerone Young <jyoung5@us.ibm.com>
8 * Hollis Blanchard <hollisb@us.ibm.com>
10 * This work is licensed under the GNU GPL license version 2 or later.
15 #include <sys/types.h>
22 #include "qemu-common.h"
23 #include "qemu/error-report.h"
24 #include "sysemu/device_tree.h"
25 #include "sysemu/sysemu.h"
26 #include "hw/loader.h"
27 #include "qemu/option.h"
28 #include "qemu/config-file.h"
32 #define FDT_MAX_SIZE 0x10000
34 void *create_device_tree(int *sizep
)
39 *sizep
= FDT_MAX_SIZE
;
40 fdt
= g_malloc0(FDT_MAX_SIZE
);
41 ret
= fdt_create(fdt
, FDT_MAX_SIZE
);
45 ret
= fdt_finish_reservemap(fdt
);
49 ret
= fdt_begin_node(fdt
, "");
53 ret
= fdt_end_node(fdt
);
57 ret
= fdt_finish(fdt
);
61 ret
= fdt_open_into(fdt
, fdt
, *sizep
);
63 error_report("Unable to copy device tree in memory");
69 error_report("%s Couldn't create dt: %s", __func__
, fdt_strerror(ret
));
73 void *load_device_tree(const char *filename_path
, int *sizep
)
76 int dt_file_load_size
;
81 dt_size
= get_image_size(filename_path
);
83 error_report("Unable to get size of device tree file '%s'",
88 /* Expand to 2x size to give enough room for manipulation. */
91 /* First allocate space in qemu for device tree */
92 fdt
= g_malloc0(dt_size
);
94 dt_file_load_size
= load_image(filename_path
, fdt
);
95 if (dt_file_load_size
< 0) {
96 error_report("Unable to open device tree file '%s'",
101 ret
= fdt_open_into(fdt
, fdt
, dt_size
);
103 error_report("Unable to copy device tree in memory");
107 /* Check sanity of device tree */
108 if (fdt_check_header(fdt
)) {
109 error_report("Device tree file loaded into memory is invalid: %s",
121 static int findnode_nofail(void *fdt
, const char *node_path
)
125 offset
= fdt_path_offset(fdt
, node_path
);
127 error_report("%s Couldn't find node %s: %s", __func__
, node_path
,
128 fdt_strerror(offset
));
135 int qemu_fdt_setprop(void *fdt
, const char *node_path
,
136 const char *property
, const void *val
, int size
)
140 r
= fdt_setprop(fdt
, findnode_nofail(fdt
, node_path
), property
, val
, size
);
142 error_report("%s: Couldn't set %s/%s: %s", __func__
, node_path
,
143 property
, fdt_strerror(r
));
150 int qemu_fdt_setprop_cell(void *fdt
, const char *node_path
,
151 const char *property
, uint32_t val
)
155 r
= fdt_setprop_cell(fdt
, findnode_nofail(fdt
, node_path
), property
, val
);
157 error_report("%s: Couldn't set %s/%s = %#08x: %s", __func__
,
158 node_path
, property
, val
, fdt_strerror(r
));
165 int qemu_fdt_setprop_u64(void *fdt
, const char *node_path
,
166 const char *property
, uint64_t val
)
168 val
= cpu_to_be64(val
);
169 return qemu_fdt_setprop(fdt
, node_path
, property
, &val
, sizeof(val
));
172 int qemu_fdt_setprop_string(void *fdt
, const char *node_path
,
173 const char *property
, const char *string
)
177 r
= fdt_setprop_string(fdt
, findnode_nofail(fdt
, node_path
), property
, string
);
179 error_report("%s: Couldn't set %s/%s = %s: %s", __func__
,
180 node_path
, property
, string
, fdt_strerror(r
));
187 const void *qemu_fdt_getprop(void *fdt
, const char *node_path
,
188 const char *property
, int *lenp
)
195 r
= fdt_getprop(fdt
, findnode_nofail(fdt
, node_path
), property
, lenp
);
197 error_report("%s: Couldn't get %s/%s: %s", __func__
,
198 node_path
, property
, fdt_strerror(*lenp
));
204 uint32_t qemu_fdt_getprop_cell(void *fdt
, const char *node_path
,
205 const char *property
)
208 const uint32_t *p
= qemu_fdt_getprop(fdt
, node_path
, property
, &len
);
210 error_report("%s: %s/%s not 4 bytes long (not a cell?)",
211 __func__
, node_path
, property
);
214 return be32_to_cpu(*p
);
217 uint32_t qemu_fdt_get_phandle(void *fdt
, const char *path
)
221 r
= fdt_get_phandle(fdt
, findnode_nofail(fdt
, path
));
223 error_report("%s: Couldn't get phandle for %s: %s", __func__
,
224 path
, fdt_strerror(r
));
231 int qemu_fdt_setprop_phandle(void *fdt
, const char *node_path
,
232 const char *property
,
233 const char *target_node_path
)
235 uint32_t phandle
= qemu_fdt_get_phandle(fdt
, target_node_path
);
236 return qemu_fdt_setprop_cell(fdt
, node_path
, property
, phandle
);
239 uint32_t qemu_fdt_alloc_phandle(void *fdt
)
241 static int phandle
= 0x0;
244 * We need to find out if the user gave us special instruction at
245 * which phandle id to start allocting phandles.
248 phandle
= qemu_opt_get_number(qemu_get_machine_opts(),
254 * None or invalid phandle given on the command line, so fall back to
255 * default starting point.
263 int qemu_fdt_nop_node(void *fdt
, const char *node_path
)
267 r
= fdt_nop_node(fdt
, findnode_nofail(fdt
, node_path
));
269 error_report("%s: Couldn't nop node %s: %s", __func__
, node_path
,
277 int qemu_fdt_add_subnode(void *fdt
, const char *name
)
279 char *dupname
= g_strdup(name
);
280 char *basename
= strrchr(dupname
, '/');
293 parent
= findnode_nofail(fdt
, dupname
);
296 retval
= fdt_add_subnode(fdt
, parent
, basename
);
298 error_report("FDT: Failed to create subnode %s: %s", name
,
299 fdt_strerror(retval
));
307 void qemu_fdt_dumpdtb(void *fdt
, int size
)
309 const char *dumpdtb
= qemu_opt_get(qemu_get_machine_opts(), "dumpdtb");
312 /* Dump the dtb to a file and quit */
313 exit(g_file_set_contents(dumpdtb
, fdt
, size
, NULL
) ? 0 : 1);
317 int qemu_fdt_setprop_sized_cells_from_array(void *fdt
,
318 const char *node_path
,
319 const char *property
,
325 int cellnum
, vnum
, ncells
;
329 propcells
= g_new0(uint32_t, numvalues
* 2);
332 for (vnum
= 0; vnum
< numvalues
; vnum
++) {
333 ncells
= values
[vnum
* 2];
334 if (ncells
!= 1 && ncells
!= 2) {
338 value
= values
[vnum
* 2 + 1];
339 hival
= cpu_to_be32(value
>> 32);
341 propcells
[cellnum
++] = hival
;
342 } else if (hival
!= 0) {
346 propcells
[cellnum
++] = cpu_to_be32(value
);
349 ret
= qemu_fdt_setprop(fdt
, node_path
, property
, propcells
,
350 cellnum
* sizeof(uint32_t));