Lines Matching refs:dtb
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,
40 int fdt_get_stdout_node_offset(const void *dtb);
42 uint64_t fdtw_translate_address(const void *dtb, int bus_node,
46 int (*callback)(const void *dtb, int node, uintptr_t mpidr));
50 static inline uint32_t fdt_blob_size(const void *dtb) in fdt_blob_size() argument
52 const uint32_t *dtb_header = (const uint32_t *)dtb; in fdt_blob_size()
67 #define fdt_for_each_compatible_node(dtb, node, compatible_str) \ argument
68 for (node = fdt_node_offset_by_compatible(dtb, -1, compatible_str); \
70 node = fdt_node_offset_by_compatible(dtb, node, compatible_str))