Lines Matching defs:dtb
82 const void *dtb = (void *)config;
85 * In case of BL1, fw_config dtb information is already
94 uint32_t config_max_size = fdt_totalsize(dtb);
100 node = fdt_node_offset_by_compatible(dtb, -1, compatible_str);
102 ERROR("FCONF: Can't find %s compatible in dtb\n", compatible_str);
106 fdt_for_each_subnode(child, dtb, node) {
112 /* Read configuration dtb information */
113 rc = fdt_read_uint64(dtb, child, "load-address", &val64);
115 ERROR("FCONF: Incomplete configuration property in dtb-registry.\n");
120 rc = fdt_read_uint32(dtb, child, "max-size", &config_max_size);
122 ERROR("FCONF: Incomplete configuration property in dtb-registry.\n");
126 rc = fdt_read_uint32(dtb, child, "id", &config_id);
128 ERROR("FCONF: Incomplete configuration property in dtb-registry.\n");
137 rc = fdt_read_uint64(dtb, child, "secondary-load-address",