Lines Matching defs:fdt
79 void *fdt;
90 fdt = (void *)(mem_params->image_info.image_base);
92 /* Check the validity of the fdt */
93 if (fdt_check_header(fdt) != 0) {
98 nodeoffset = fdt_subnode_offset(fdt, 0, "system-id");
105 err = fdt_setprop_u32(fdt, nodeoffset, "platform-id", platid);
112 err = fdt_setprop_u32(fdt, nodeoffset, "config-id", platcfg);
119 err = fdt_setprop_u32(fdt, nodeoffset, "multi-chip-mode", platcfg);
127 err = fdt_setprop(fdt, nodeoffset, "isolated-cpu-list",
137 flush_dcache_range((uintptr_t)fdt, mem_params->image_info.image_size);