Lines Matching refs:totalsize
356 fdt->totalsize = cpu_to_fdt32(reserve_off + reservesize + dtsize + strsize); in make_fdt_header()
397 padlen = minsize - fdt32_to_cpu(fdt.totalsize); in dt_to_blob()
401 fdt32_to_cpu(fdt.totalsize), minsize); in dt_to_blob()
408 int tsize = fdt32_to_cpu(fdt.totalsize); in dt_to_blob()
410 fdt.totalsize = cpu_to_fdt32(tsize); in dt_to_blob()
806 uint32_t magic, totalsize, version, size_dt, boot_cpuid_phys; in dt_from_blob() local
837 rc = fread(&totalsize, sizeof(totalsize), 1, f); in dt_from_blob()
847 totalsize = fdt32_to_cpu(totalsize); in dt_from_blob()
848 if (totalsize < FDT_V1_SIZE) in dt_from_blob()
849 die("DT blob size (%d) is too small\n", totalsize); in dt_from_blob()
851 blob = xmalloc(totalsize); in dt_from_blob()
855 fdt->totalsize = cpu_to_fdt32(totalsize); in dt_from_blob()
857 sizeleft = totalsize - sizeof(magic) - sizeof(totalsize); in dt_from_blob()
858 p = blob + sizeof(magic) + sizeof(totalsize); in dt_from_blob()
863 totalsize); in dt_from_blob()
880 if (off_mem_rsvmap >= totalsize) in dt_from_blob()
883 if (off_dt >= totalsize) in dt_from_blob()
886 if (off_str > totalsize) in dt_from_blob()
891 if (off_str+size_str > totalsize) in dt_from_blob()
895 inbuf_init(&strbuf, blob + off_str, blob + totalsize); in dt_from_blob()
900 if (off_dt+size_dt > totalsize) in dt_from_blob()
911 blob + off_mem_rsvmap, blob + totalsize); in dt_from_blob()
912 inbuf_init(&dtbuf, blob + off_dt, blob + totalsize); in dt_from_blob()