summaryrefslogtreecommitdiff
path: root/device_tree.h
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2012-05-17 14:11:52 +0200
committerAlexander Graf <agraf@suse.de>2012-06-24 01:04:46 +0200
commit8535ab125853d1ba9067ba408c532c2ad79146e6 (patch)
tree12dd5672862a7998db034b9de67af6b3114fcd63 /device_tree.h
parent7ae2291e8e0f34ac520044c8af0437a701e1c967 (diff)
downloadqemu-8535ab125853d1ba9067ba408c532c2ad79146e6.tar.gz
dt: add helper for phandle references
Phandles are the fancy device tree name for "pointer to another node". To create a phandle property, we most likely want to reference to the node we're pointing to by its path. So create a helper that allows us to do so. Signed-off-by: Alexander Graf <agraf@suse.de> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
Diffstat (limited to 'device_tree.h')
-rw-r--r--device_tree.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/device_tree.h b/device_tree.h
index 1e671e2506..754bd2b2ec 100644
--- a/device_tree.h
+++ b/device_tree.h
@@ -22,6 +22,9 @@ int qemu_devtree_setprop_cell(void *fdt, const char *node_path,
const char *property, uint32_t val);
int qemu_devtree_setprop_string(void *fdt, const char *node_path,
const char *property, const char *string);
+int qemu_devtree_setprop_phandle(void *fdt, const char *node_path,
+ const char *property,
+ const char *target_node_path);
int qemu_devtree_nop_node(void *fdt, const char *node_path);
int qemu_devtree_add_subnode(void *fdt, const char *name);