Lines Matching refs:bootstage
63 debug("Copying bootstage from %p to %p\n", gd->bootstage, to); in bootstage_relocate()
64 memcpy(to, gd->bootstage, sizeof(struct bootstage_data)); in bootstage_relocate()
65 data = gd->bootstage = to; in bootstage_relocate()
119 struct bootstage_data *data = gd->bootstage; in bootstage_add_record()
197 struct bootstage_data *data = gd->bootstage; in bootstage_start()
211 struct bootstage_data *data = gd->bootstage; in bootstage_accum()
271 struct bootstage_data *data = gd->bootstage; in add_bootstages_devicetree()
272 int bootstage; in add_bootstages_devicetree() local
284 bootstage = fdt_add_subnode(blob, 0, "bootstage"); in add_bootstages_devicetree()
285 if (bootstage < 0) in add_bootstages_devicetree()
299 node = fdt_add_subnode(blob, bootstage, simple_itoa(i)); in add_bootstages_devicetree()
329 struct bootstage_data *data = gd->bootstage; in bootstage_report()
380 const struct bootstage_data *data = gd->bootstage; in bootstage_stash()
429 struct bootstage_data *data = gd->bootstage; in bootstage_unstash()
521 struct bootstage_data *data = gd->bootstage; in bootstage_get_size()
537 gd->bootstage = (struct bootstage_data *)malloc(size); in bootstage_init()
538 if (!gd->bootstage) in bootstage_init()
540 data = gd->bootstage; in bootstage_init()