HomeSort by relevance Sort by last modified time
    Searched defs:fdt_blob (Results 1 - 5 of 5) sorted by null

  /external/u-boot/common/
image-fdt.c 73 * @fdt_blob: pointer to fdt blob base address
79 void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob)
84 if (fdt_check_header(fdt_blob) != 0)
87 total = fdt_num_mem_rsv(fdt_blob);
89 if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0)
116 void *fdt_blob = *of_flat_tree; local
127 if (fdt_check_header(fdt_blob) != 0) {
143 of_start = fdt_blob;
180 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len)
234 char *fdt_blob = NULL; local
    [all...]
  /external/u-boot/common/spl/
spl.c 86 void *fdt_blob = (void *)CONFIG_SYS_SPL_ARGS_ADDR; local
89 err = fdt_check_header(fdt_blob);
96 err = fdt_shrink_to_minimum(fdt_blob, 0);
102 err = arch_fixup_fdt(fdt_blob);
  /external/u-boot/include/asm-generic/
global_data.h 73 const void *fdt_blob; /* Our device tree, NULL if none */ member in struct:global_data
  /external/u-boot/lib/
fdtdec.c 600 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
601 fdt_check_header(gd->fdt_blob)) {
607 if (gd->fdt_blob) {
608 printf("fdt_blob=%p\n", gd->fdt_blob);
609 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
1162 mem = fdt_path_offset(gd->fdt_blob, "/memory");
1168 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", 0, &res)
1287 void *fdt_blob = NULL; local
1306 void *fdt_blob; local
    [all...]
  /external/u-boot/include/
image.h 696 void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob);
1102 const void *fdt_blob; \/* FDT containing public keys *\/ member in struct:image_sign_info
    [all...]

Completed in 315 milliseconds