Lines Matching refs:node
18 int fdt_read_uint32(const void *dtb, int node, const char *prop_name,
20 uint32_t fdt_read_uint32_default(const void *dtb, int node,
22 int fdt_read_uint64(const void *dtb, int node, const char *prop_name,
24 int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name,
26 int fdtw_read_string(const void *dtb, int node, const char *prop,
28 int fdtw_read_uuid(const void *dtb, int node, const char *prop,
30 int fdtw_write_inplace_cells(void *dtb, int node, const char *prop,
32 int fdtw_read_bytes(const void *dtb, int node, const char *prop,
34 int fdtw_write_inplace_bytes(void *dtb, int node, const char *prop,
36 int fdt_get_reg_props_by_index(const void *dtb, int node, int index,
38 int fdt_get_reg_props_by_name(const void *dtb, int node, const char *name,
46 int (*callback)(const void *dtb, int node, uintptr_t mpidr));
57 static inline bool fdt_node_is_enabled(const void *fdt, int node) in fdt_node_is_enabled() argument
60 const void *prop = fdt_getprop(fdt, node, "status", &len); in fdt_node_is_enabled()
67 #define fdt_for_each_compatible_node(dtb, node, compatible_str) \ argument
68 for (node = fdt_node_offset_by_compatible(dtb, -1, compatible_str); \
69 node >= 0; \
70 node = fdt_node_offset_by_compatible(dtb, node, compatible_str))