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 uint64_t fdt_read_uint64_default(const void *dtb, int node,
26 int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name,
28 int fdtw_read_string(const void *dtb, int node, const char *prop,
30 int fdtw_read_uuid(const void *dtb, int node, const char *prop,
32 int fdtw_write_inplace_cells(void *dtb, int node, const char *prop,
34 int fdtw_read_bytes(const void *dtb, int node, const char *prop,
36 int fdtw_write_inplace_bytes(void *dtb, int node, const char *prop,
38 int fdt_get_reg_props_by_index(const void *dtb, int node, int index,
40 int fdt_get_reg_props_by_name(const void *dtb, int node, const char *name,
42 int fdt_get_stdout_node_offset(const void *dtb);
44 uint64_t fdtw_translate_address(const void *dtb, int bus_node,
48 int (*callback)(const void *dtb, int node, uintptr_t mpidr));
54 static inline uint32_t fdt_blob_size(const void *dtb) in fdt_blob_size() argument
56 const uint32_t *dtb_header = (const uint32_t *)dtb; in fdt_blob_size()
71 #define fdt_for_each_compatible_node(dtb, node, compatible_str) \ argument
72 for (node = fdt_node_offset_by_compatible(dtb, -1, compatible_str); \
74 node = fdt_node_offset_by_compatible(dtb, node, compatible_str))