Lines Matching defs:fdt
39 #include <dev/fdt/fdt_ddb.h>
40 #include <dev/fdt/fdtvar.h>
68 fdt_print_properties(const void *fdt, int node,
73 fdt_for_each_property_offset(property, fdt, node) {
76 fdt_get_property_by_offset(fdt, property, &len);
77 const char *name = fdt_string(fdt, fdt32_to_cpu(prop->nameoff));
126 const void *fdt = addr;
129 int error = fdt_check_header(fdt);
131 pr("Invalid FDT at %p\n", fdt);
136 for (int node = fdt_path_offset(fdt, "/");
138 node = fdt_next_node(fdt, node, &depth)) {
139 const char *name = fdt_get_name(fdt, node, NULL);
160 fdt_print_properties(fdt, node, pr);