1
2
3
4
5
6
7
8
9
10
11
12
13
14#ifndef __DEVICE_TREE_H__
15#define __DEVICE_TREE_H__
16
17void *load_device_tree(const char *filename_path, int *sizep);
18
19int qemu_devtree_setprop(void *fdt, const char *node_path,
20 const char *property, void *val_array, int size);
21int qemu_devtree_setprop_cell(void *fdt, const char *node_path,
22 const char *property, uint32_t val);
23int qemu_devtree_setprop_string(void *fdt, const char *node_path,
24 const char *property, const char *string);
25
26#endif
27