2008-12-16 11:43:48 +01:00
|
|
|
/*
|
|
|
|
* Header with function prototypes to help device tree manipulation using
|
|
|
|
* libfdt. It also provides functions to read entries from device tree proc
|
|
|
|
* interface.
|
|
|
|
*
|
|
|
|
* Copyright 2008 IBM Corporation.
|
|
|
|
* Authors: Jerone Young <jyoung5@us.ibm.com>
|
|
|
|
* Hollis Blanchard <hollisb@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the GNU GPL license version 2 or later.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DEVICE_TREE_H__
|
|
|
|
#define __DEVICE_TREE_H__
|
|
|
|
|
2012-05-17 15:33:54 +02:00
|
|
|
void *create_device_tree(int *sizep);
|
2009-04-10 18:23:59 +02:00
|
|
|
void *load_device_tree(const char *filename_path, int *sizep);
|
2008-12-16 11:43:48 +01:00
|
|
|
|
|
|
|
int qemu_devtree_setprop(void *fdt, const char *node_path,
|
2012-06-20 20:39:59 +02:00
|
|
|
const char *property, const void *val_array, int size);
|
2008-12-16 11:43:48 +01:00
|
|
|
int qemu_devtree_setprop_cell(void *fdt, const char *node_path,
|
|
|
|
const char *property, uint32_t val);
|
2012-05-18 01:53:01 +02:00
|
|
|
int qemu_devtree_setprop_u64(void *fdt, const char *node_path,
|
|
|
|
const char *property, uint64_t val);
|
2008-12-16 11:43:48 +01:00
|
|
|
int qemu_devtree_setprop_string(void *fdt, const char *node_path,
|
|
|
|
const char *property, const char *string);
|
2012-05-17 14:11:52 +02:00
|
|
|
int qemu_devtree_setprop_phandle(void *fdt, const char *node_path,
|
|
|
|
const char *property,
|
|
|
|
const char *target_node_path);
|
2012-07-20 14:34:50 +02:00
|
|
|
const void *qemu_devtree_getprop(void *fdt, const char *node_path,
|
|
|
|
const char *property, int *lenp);
|
|
|
|
uint32_t qemu_devtree_getprop_cell(void *fdt, const char *node_path,
|
|
|
|
const char *property);
|
2012-05-17 15:23:39 +02:00
|
|
|
uint32_t qemu_devtree_get_phandle(void *fdt, const char *path);
|
2012-05-17 16:58:55 +02:00
|
|
|
uint32_t qemu_devtree_alloc_phandle(void *fdt);
|
2011-07-21 01:52:57 +02:00
|
|
|
int qemu_devtree_nop_node(void *fdt, const char *node_path);
|
2011-07-22 13:55:37 +02:00
|
|
|
int qemu_devtree_add_subnode(void *fdt, const char *name);
|
2008-12-16 11:43:48 +01:00
|
|
|
|
2012-05-17 12:47:57 +02:00
|
|
|
#define qemu_devtree_setprop_cells(fdt, node_path, property, ...) \
|
|
|
|
do { \
|
|
|
|
uint32_t qdt_tmp[] = { __VA_ARGS__ }; \
|
|
|
|
int i; \
|
|
|
|
\
|
|
|
|
for (i = 0; i < ARRAY_SIZE(qdt_tmp); i++) { \
|
|
|
|
qdt_tmp[i] = cpu_to_be32(qdt_tmp[i]); \
|
|
|
|
} \
|
|
|
|
qemu_devtree_setprop(fdt, node_path, property, qdt_tmp, \
|
|
|
|
sizeof(qdt_tmp)); \
|
|
|
|
} while (0)
|
|
|
|
|
2012-09-23 08:37:59 +02:00
|
|
|
void qemu_devtree_dumpdtb(void *fdt, int size);
|
|
|
|
|
2008-12-16 11:43:48 +01:00
|
|
|
#endif /* __DEVICE_TREE_H__ */
|