1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
9 #define FTF_FULLPATH 0x1
10 #define FTF_VARALIGN 0x2
11 #define FTF_NAMEPROPS 0x4
12 #define FTF_BOOTCPUID 0x8
13 #define FTF_STRTABSIZE 0x10
14 #define FTF_STRUCTSIZE 0x20
17 static struct version_info
{
19 int last_comp_version
;
24 FTF_FULLPATH
|FTF_VARALIGN
|FTF_NAMEPROPS
},
26 FTF_FULLPATH
|FTF_VARALIGN
|FTF_NAMEPROPS
|FTF_BOOTCPUID
},
28 FTF_FULLPATH
|FTF_VARALIGN
|FTF_NAMEPROPS
|FTF_BOOTCPUID
|FTF_STRTABSIZE
},
30 FTF_BOOTCPUID
|FTF_STRTABSIZE
|FTF_NOPS
},
31 {17, 16, FDT_V17_SIZE
,
32 FTF_BOOTCPUID
|FTF_STRTABSIZE
|FTF_STRUCTSIZE
|FTF_NOPS
},
36 void (*cell
)(void *, cell_t
);
37 void (*string
)(void *, const char *, int);
38 void (*align
)(void *, int);
39 void (*data
)(void *, struct data
);
40 void (*beginnode
)(void *, struct label
*labels
);
41 void (*endnode
)(void *, struct label
*labels
);
42 void (*property
)(void *, struct label
*labels
);
45 static void bin_emit_cell(void *e
, cell_t val
)
47 struct data
*dtbuf
= e
;
49 *dtbuf
= data_append_cell(*dtbuf
, val
);
52 static void bin_emit_string(void *e
, const char *str
, int len
)
54 struct data
*dtbuf
= e
;
59 *dtbuf
= data_append_data(*dtbuf
, str
, len
);
60 *dtbuf
= data_append_byte(*dtbuf
, '\0');
63 static void bin_emit_align(void *e
, int a
)
65 struct data
*dtbuf
= e
;
67 *dtbuf
= data_append_align(*dtbuf
, a
);
70 static void bin_emit_data(void *e
, struct data d
)
72 struct data
*dtbuf
= e
;
74 *dtbuf
= data_append_data(*dtbuf
, d
.val
, d
.len
);
77 static void bin_emit_beginnode(void *e
, struct label
*labels
)
79 bin_emit_cell(e
, FDT_BEGIN_NODE
);
82 static void bin_emit_endnode(void *e
, struct label
*labels
)
84 bin_emit_cell(e
, FDT_END_NODE
);
87 static void bin_emit_property(void *e
, struct label
*labels
)
89 bin_emit_cell(e
, FDT_PROP
);
92 static struct emitter bin_emitter
= {
93 .cell
= bin_emit_cell
,
94 .string
= bin_emit_string
,
95 .align
= bin_emit_align
,
96 .data
= bin_emit_data
,
97 .beginnode
= bin_emit_beginnode
,
98 .endnode
= bin_emit_endnode
,
99 .property
= bin_emit_property
,
102 static void emit_label(FILE *f
, const char *prefix
, const char *label
)
104 fprintf(f
, "\t.globl\t%s_%s\n", prefix
, label
);
105 fprintf(f
, "%s_%s:\n", prefix
, label
);
106 fprintf(f
, "_%s_%s:\n", prefix
, label
);
109 static void emit_offset_label(FILE *f
, const char *label
, int offset
)
111 fprintf(f
, "\t.globl\t%s\n", label
);
112 fprintf(f
, "%s\t= . + %d\n", label
, offset
);
115 #define ASM_EMIT_BELONG(f, fmt, ...) \
117 fprintf((f), "\t.byte\t((" fmt ") >> 24) & 0xff\n", __VA_ARGS__); \
118 fprintf((f), "\t.byte\t((" fmt ") >> 16) & 0xff\n", __VA_ARGS__); \
119 fprintf((f), "\t.byte\t((" fmt ") >> 8) & 0xff\n", __VA_ARGS__); \
120 fprintf((f), "\t.byte\t(" fmt ") & 0xff\n", __VA_ARGS__); \
123 static void asm_emit_cell(void *e
, cell_t val
)
127 fprintf(f
, "\t.byte 0x%02x; .byte 0x%02x; .byte 0x%02x; .byte 0x%02x\n",
128 (val
>> 24) & 0xff, (val
>> 16) & 0xff,
129 (val
>> 8) & 0xff, val
& 0xff);
132 static void asm_emit_string(void *e
, const char *str
, int len
)
137 fprintf(f
, "\t.string\t\"%.*s\"\n", len
, str
);
139 fprintf(f
, "\t.string\t\"%s\"\n", str
);
142 static void asm_emit_align(void *e
, int a
)
146 fprintf(f
, "\t.balign\t%d, 0\n", a
);
149 static void asm_emit_data(void *e
, struct data d
)
153 struct marker
*m
= d
.markers
;
155 for_each_marker_of_type(m
, LABEL
)
156 emit_offset_label(f
, m
->ref
, m
->offset
);
158 while ((d
.len
- off
) >= sizeof(uint32_t)) {
159 asm_emit_cell(e
, fdt32_to_cpu(*((fdt32_t
*)(d
.val
+off
))));
160 off
+= sizeof(uint32_t);
163 while ((d
.len
- off
) >= 1) {
164 fprintf(f
, "\t.byte\t0x%hhx\n", d
.val
[off
]);
168 assert(off
== d
.len
);
171 static void asm_emit_beginnode(void *e
, struct label
*labels
)
176 for_each_label(labels
, l
) {
177 fprintf(f
, "\t.globl\t%s\n", l
->label
);
178 fprintf(f
, "%s:\n", l
->label
);
180 fprintf(f
, "\t/* FDT_BEGIN_NODE */\n");
181 asm_emit_cell(e
, FDT_BEGIN_NODE
);
184 static void asm_emit_endnode(void *e
, struct label
*labels
)
189 fprintf(f
, "\t/* FDT_END_NODE */\n");
190 asm_emit_cell(e
, FDT_END_NODE
);
191 for_each_label(labels
, l
) {
192 fprintf(f
, "\t.globl\t%s_end\n", l
->label
);
193 fprintf(f
, "%s_end:\n", l
->label
);
197 static void asm_emit_property(void *e
, struct label
*labels
)
202 for_each_label(labels
, l
) {
203 fprintf(f
, "\t.globl\t%s\n", l
->label
);
204 fprintf(f
, "%s:\n", l
->label
);
206 fprintf(f
, "\t/* FDT_PROP */\n");
207 asm_emit_cell(e
, FDT_PROP
);
210 static struct emitter asm_emitter
= {
211 .cell
= asm_emit_cell
,
212 .string
= asm_emit_string
,
213 .align
= asm_emit_align
,
214 .data
= asm_emit_data
,
215 .beginnode
= asm_emit_beginnode
,
216 .endnode
= asm_emit_endnode
,
217 .property
= asm_emit_property
,
220 static int stringtable_insert(struct data
*d
, const char *str
)
224 /* FIXME: do this more efficiently? */
226 for (i
= 0; i
< d
->len
; i
++) {
227 if (streq(str
, d
->val
+ i
))
231 *d
= data_append_data(*d
, str
, strlen(str
)+1);
235 static void flatten_tree(struct node
*tree
, struct emitter
*emit
,
236 void *etarget
, struct data
*strbuf
,
237 struct version_info
*vi
)
239 struct property
*prop
;
241 bool seen_name_prop
= false;
246 emit
->beginnode(etarget
, tree
->labels
);
248 if (vi
->flags
& FTF_FULLPATH
)
249 emit
->string(etarget
, tree
->fullpath
, 0);
251 emit
->string(etarget
, tree
->name
, 0);
253 emit
->align(etarget
, sizeof(cell_t
));
255 for_each_property(tree
, prop
) {
258 if (streq(prop
->name
, "name"))
259 seen_name_prop
= true;
261 nameoff
= stringtable_insert(strbuf
, prop
->name
);
263 emit
->property(etarget
, prop
->labels
);
264 emit
->cell(etarget
, prop
->val
.len
);
265 emit
->cell(etarget
, nameoff
);
267 if ((vi
->flags
& FTF_VARALIGN
) && (prop
->val
.len
>= 8))
268 emit
->align(etarget
, 8);
270 emit
->data(etarget
, prop
->val
);
271 emit
->align(etarget
, sizeof(cell_t
));
274 if ((vi
->flags
& FTF_NAMEPROPS
) && !seen_name_prop
) {
275 emit
->property(etarget
, NULL
);
276 emit
->cell(etarget
, tree
->basenamelen
+1);
277 emit
->cell(etarget
, stringtable_insert(strbuf
, "name"));
279 if ((vi
->flags
& FTF_VARALIGN
) && ((tree
->basenamelen
+1) >= 8))
280 emit
->align(etarget
, 8);
282 emit
->string(etarget
, tree
->name
, tree
->basenamelen
);
283 emit
->align(etarget
, sizeof(cell_t
));
286 for_each_child(tree
, child
) {
287 flatten_tree(child
, emit
, etarget
, strbuf
, vi
);
290 emit
->endnode(etarget
, tree
->labels
);
293 static struct data
flatten_reserve_list(struct reserve_info
*reservelist
,
294 struct version_info
*vi
)
296 struct reserve_info
*re
;
297 struct data d
= empty_data
;
300 for (re
= reservelist
; re
; re
= re
->next
) {
301 d
= data_append_re(d
, re
->address
, re
->size
);
304 * Add additional reserved slots if the user asked for them.
306 for (j
= 0; j
< reservenum
; j
++) {
307 d
= data_append_re(d
, 0, 0);
313 static void make_fdt_header(struct fdt_header
*fdt
,
314 struct version_info
*vi
,
315 int reservesize
, int dtsize
, int strsize
,
320 reservesize
+= sizeof(struct fdt_reserve_entry
);
322 memset(fdt
, 0xff, sizeof(*fdt
));
324 fdt
->magic
= cpu_to_fdt32(FDT_MAGIC
);
325 fdt
->version
= cpu_to_fdt32(vi
->version
);
326 fdt
->last_comp_version
= cpu_to_fdt32(vi
->last_comp_version
);
328 /* Reserve map should be doubleword aligned */
329 reserve_off
= ALIGN(vi
->hdr_size
, 8);
331 fdt
->off_mem_rsvmap
= cpu_to_fdt32(reserve_off
);
332 fdt
->off_dt_struct
= cpu_to_fdt32(reserve_off
+ reservesize
);
333 fdt
->off_dt_strings
= cpu_to_fdt32(reserve_off
+ reservesize
335 fdt
->totalsize
= cpu_to_fdt32(reserve_off
+ reservesize
+ dtsize
+ strsize
);
337 if (vi
->flags
& FTF_BOOTCPUID
)
338 fdt
->boot_cpuid_phys
= cpu_to_fdt32(boot_cpuid_phys
);
339 if (vi
->flags
& FTF_STRTABSIZE
)
340 fdt
->size_dt_strings
= cpu_to_fdt32(strsize
);
341 if (vi
->flags
& FTF_STRUCTSIZE
)
342 fdt
->size_dt_struct
= cpu_to_fdt32(dtsize
);
345 void dt_to_blob(FILE *f
, struct dt_info
*dti
, int version
)
347 struct version_info
*vi
= NULL
;
349 struct data blob
= empty_data
;
350 struct data reservebuf
= empty_data
;
351 struct data dtbuf
= empty_data
;
352 struct data strbuf
= empty_data
;
353 struct fdt_header fdt
;
356 for (i
= 0; i
< ARRAY_SIZE(version_table
); i
++) {
357 if (version_table
[i
].version
== version
)
358 vi
= &version_table
[i
];
361 die("Unknown device tree blob version %d\n", version
);
363 flatten_tree(dti
->dt
, &bin_emitter
, &dtbuf
, &strbuf
, vi
);
364 bin_emit_cell(&dtbuf
, FDT_END
);
366 reservebuf
= flatten_reserve_list(dti
->reservelist
, vi
);
369 make_fdt_header(&fdt
, vi
, reservebuf
.len
, dtbuf
.len
, strbuf
.len
,
370 dti
->boot_cpuid_phys
);
373 * If the user asked for more space than is used, adjust the totalsize.
376 padlen
= minsize
- fdt32_to_cpu(fdt
.totalsize
);
381 "Warning: blob size %"PRIu32
" >= minimum size %d\n",
382 fdt32_to_cpu(fdt
.totalsize
), minsize
);
390 padlen
= ALIGN(fdt32_to_cpu(fdt
.totalsize
) + padlen
, alignsize
)
391 - fdt32_to_cpu(fdt
.totalsize
);
394 int tsize
= fdt32_to_cpu(fdt
.totalsize
);
396 fdt
.totalsize
= cpu_to_fdt32(tsize
);
400 * Assemble the blob: start with the header, add with alignment
401 * the reserve buffer, add the reserve map terminating zeroes,
402 * the device tree itself, and finally the strings.
404 blob
= data_append_data(blob
, &fdt
, vi
->hdr_size
);
405 blob
= data_append_align(blob
, 8);
406 blob
= data_merge(blob
, reservebuf
);
407 blob
= data_append_zeroes(blob
, sizeof(struct fdt_reserve_entry
));
408 blob
= data_merge(blob
, dtbuf
);
409 blob
= data_merge(blob
, strbuf
);
412 * If the user asked for more space than is used, pad out the blob.
415 blob
= data_append_zeroes(blob
, padlen
);
417 if (fwrite(blob
.val
, blob
.len
, 1, f
) != 1) {
419 die("Error writing device tree blob: %s\n",
422 die("Short write on device tree blob\n");
426 * data_merge() frees the right-hand element so only the blob
427 * remains to be freed.
432 static void dump_stringtable_asm(FILE *f
, struct data strbuf
)
439 while (p
< (strbuf
.val
+ strbuf
.len
)) {
441 fprintf(f
, "\t.string \"%s\"\n", p
);
446 void dt_to_asm(FILE *f
, struct dt_info
*dti
, int version
)
448 struct version_info
*vi
= NULL
;
450 struct data strbuf
= empty_data
;
451 struct reserve_info
*re
;
452 const char *symprefix
= "dt";
454 for (i
= 0; i
< ARRAY_SIZE(version_table
); i
++) {
455 if (version_table
[i
].version
== version
)
456 vi
= &version_table
[i
];
459 die("Unknown device tree blob version %d\n", version
);
461 fprintf(f
, "/* autogenerated by dtc, do not edit */\n\n");
463 emit_label(f
, symprefix
, "blob_start");
464 emit_label(f
, symprefix
, "header");
465 fprintf(f
, "\t/* magic */\n");
466 asm_emit_cell(f
, FDT_MAGIC
);
467 fprintf(f
, "\t/* totalsize */\n");
468 ASM_EMIT_BELONG(f
, "_%s_blob_abs_end - _%s_blob_start",
469 symprefix
, symprefix
);
470 fprintf(f
, "\t/* off_dt_struct */\n");
471 ASM_EMIT_BELONG(f
, "_%s_struct_start - _%s_blob_start",
472 symprefix
, symprefix
);
473 fprintf(f
, "\t/* off_dt_strings */\n");
474 ASM_EMIT_BELONG(f
, "_%s_strings_start - _%s_blob_start",
475 symprefix
, symprefix
);
476 fprintf(f
, "\t/* off_mem_rsvmap */\n");
477 ASM_EMIT_BELONG(f
, "_%s_reserve_map - _%s_blob_start",
478 symprefix
, symprefix
);
479 fprintf(f
, "\t/* version */\n");
480 asm_emit_cell(f
, vi
->version
);
481 fprintf(f
, "\t/* last_comp_version */\n");
482 asm_emit_cell(f
, vi
->last_comp_version
);
484 if (vi
->flags
& FTF_BOOTCPUID
) {
485 fprintf(f
, "\t/* boot_cpuid_phys */\n");
486 asm_emit_cell(f
, dti
->boot_cpuid_phys
);
489 if (vi
->flags
& FTF_STRTABSIZE
) {
490 fprintf(f
, "\t/* size_dt_strings */\n");
491 ASM_EMIT_BELONG(f
, "_%s_strings_end - _%s_strings_start",
492 symprefix
, symprefix
);
495 if (vi
->flags
& FTF_STRUCTSIZE
) {
496 fprintf(f
, "\t/* size_dt_struct */\n");
497 ASM_EMIT_BELONG(f
, "_%s_struct_end - _%s_struct_start",
498 symprefix
, symprefix
);
502 * Reserve map entries.
503 * Align the reserve map to a doubleword boundary.
504 * Each entry is an (address, size) pair of u64 values.
505 * Always supply a zero-sized temination entry.
507 asm_emit_align(f
, 8);
508 emit_label(f
, symprefix
, "reserve_map");
510 fprintf(f
, "/* Memory reserve map from source file */\n");
513 * Use .long on high and low halves of u64s to avoid .quad
514 * as it appears .quad isn't available in some assemblers.
516 for (re
= dti
->reservelist
; re
; re
= re
->next
) {
519 for_each_label(re
->labels
, l
) {
520 fprintf(f
, "\t.globl\t%s\n", l
->label
);
521 fprintf(f
, "%s:\n", l
->label
);
523 ASM_EMIT_BELONG(f
, "0x%08x", (unsigned int)(re
->address
>> 32));
524 ASM_EMIT_BELONG(f
, "0x%08x",
525 (unsigned int)(re
->address
& 0xffffffff));
526 ASM_EMIT_BELONG(f
, "0x%08x", (unsigned int)(re
->size
>> 32));
527 ASM_EMIT_BELONG(f
, "0x%08x", (unsigned int)(re
->size
& 0xffffffff));
529 for (i
= 0; i
< reservenum
; i
++) {
530 fprintf(f
, "\t.long\t0, 0\n\t.long\t0, 0\n");
533 fprintf(f
, "\t.long\t0, 0\n\t.long\t0, 0\n");
535 emit_label(f
, symprefix
, "struct_start");
536 flatten_tree(dti
->dt
, &asm_emitter
, f
, &strbuf
, vi
);
538 fprintf(f
, "\t/* FDT_END */\n");
539 asm_emit_cell(f
, FDT_END
);
540 emit_label(f
, symprefix
, "struct_end");
542 emit_label(f
, symprefix
, "strings_start");
543 dump_stringtable_asm(f
, strbuf
);
544 emit_label(f
, symprefix
, "strings_end");
546 emit_label(f
, symprefix
, "blob_end");
549 * If the user asked for more space than is used, pad it out.
552 fprintf(f
, "\t.space\t%d - (_%s_blob_end - _%s_blob_start), 0\n",
553 minsize
, symprefix
, symprefix
);
556 fprintf(f
, "\t.space\t%d, 0\n", padsize
);
559 asm_emit_align(f
, alignsize
);
560 emit_label(f
, symprefix
, "blob_abs_end");
566 char *base
, *limit
, *ptr
;
569 static void inbuf_init(struct inbuf
*inb
, void *base
, void *limit
)
573 inb
->ptr
= inb
->base
;
576 static void flat_read_chunk(struct inbuf
*inb
, void *p
, int len
)
578 if ((inb
->ptr
+ len
) > inb
->limit
)
579 die("Premature end of data parsing flat device tree\n");
581 memcpy(p
, inb
->ptr
, len
);
586 static uint32_t flat_read_word(struct inbuf
*inb
)
590 assert(((inb
->ptr
- inb
->base
) % sizeof(val
)) == 0);
592 flat_read_chunk(inb
, &val
, sizeof(val
));
594 return fdt32_to_cpu(val
);
597 static void flat_realign(struct inbuf
*inb
, int align
)
599 int off
= inb
->ptr
- inb
->base
;
601 inb
->ptr
= inb
->base
+ ALIGN(off
, align
);
602 if (inb
->ptr
> inb
->limit
)
603 die("Premature end of data parsing flat device tree\n");
606 static char *flat_read_string(struct inbuf
*inb
)
609 const char *p
= inb
->ptr
;
614 die("Premature end of data parsing flat device tree\n");
616 } while ((*p
++) != '\0');
618 str
= xstrdup(inb
->ptr
);
622 flat_realign(inb
, sizeof(uint32_t));
627 static struct data
flat_read_data(struct inbuf
*inb
, int len
)
629 struct data d
= empty_data
;
634 d
= data_grow_for(d
, len
);
637 flat_read_chunk(inb
, d
.val
, len
);
639 flat_realign(inb
, sizeof(uint32_t));
644 static char *flat_read_stringtable(struct inbuf
*inb
, int offset
)
648 p
= inb
->base
+ offset
;
650 if (p
>= inb
->limit
|| p
< inb
->base
)
651 die("String offset %d overruns string table\n",
660 return xstrdup(inb
->base
+ offset
);
663 static struct property
*flat_read_property(struct inbuf
*dtbuf
,
664 struct inbuf
*strbuf
, int flags
)
666 uint32_t proplen
, stroff
;
670 proplen
= flat_read_word(dtbuf
);
671 stroff
= flat_read_word(dtbuf
);
673 name
= flat_read_stringtable(strbuf
, stroff
);
675 if ((flags
& FTF_VARALIGN
) && (proplen
>= 8))
676 flat_realign(dtbuf
, 8);
678 val
= flat_read_data(dtbuf
, proplen
);
680 return build_property(name
, val
, NULL
);
684 static struct reserve_info
*flat_read_mem_reserve(struct inbuf
*inb
)
686 struct reserve_info
*reservelist
= NULL
;
687 struct reserve_info
*new;
688 struct fdt_reserve_entry re
;
691 * Each entry is a pair of u64 (addr, size) values for 4 cell_t's.
692 * List terminates at an entry with size equal to zero.
694 * First pass, count entries.
697 uint64_t address
, size
;
699 flat_read_chunk(inb
, &re
, sizeof(re
));
700 address
= fdt64_to_cpu(re
.address
);
701 size
= fdt64_to_cpu(re
.size
);
705 new = build_reserve_entry(address
, size
);
706 reservelist
= add_reserve_entry(reservelist
, new);
713 static char *nodename_from_path(const char *ppath
, const char *cpath
)
717 plen
= strlen(ppath
);
719 if (!strstarts(cpath
, ppath
))
720 die("Path \"%s\" is not valid as a child of \"%s\"\n",
723 /* root node is a special case */
724 if (!streq(ppath
, "/"))
727 return xstrdup(cpath
+ plen
);
730 static struct node
*unflatten_tree(struct inbuf
*dtbuf
,
731 struct inbuf
*strbuf
,
732 const char *parent_flatname
, int flags
)
738 node
= build_node(NULL
, NULL
, NULL
);
740 flatname
= flat_read_string(dtbuf
);
742 if (flags
& FTF_FULLPATH
)
743 node
->name
= nodename_from_path(parent_flatname
, flatname
);
745 node
->name
= flatname
;
748 struct property
*prop
;
751 val
= flat_read_word(dtbuf
);
755 fprintf(stderr
, "Warning: Flat tree input has "
756 "subnodes preceding a property.\n");
757 prop
= flat_read_property(dtbuf
, strbuf
, flags
);
758 add_property(node
, prop
);
762 child
= unflatten_tree(dtbuf
,strbuf
, flatname
, flags
);
763 add_child(node
, child
);
770 die("Premature FDT_END in device tree blob\n");
774 if (!(flags
& FTF_NOPS
))
775 fprintf(stderr
, "Warning: NOP tag found in flat tree"
782 die("Invalid opcode word %08x in device tree blob\n",
785 } while (val
!= FDT_END_NODE
);
787 if (node
->name
!= flatname
) {
795 struct dt_info
*dt_from_blob(const char *fname
)
798 fdt32_t magic_buf
, totalsize_buf
;
799 uint32_t magic
, totalsize
, version
, size_dt
, boot_cpuid_phys
;
800 uint32_t off_dt
, off_str
, off_mem_rsvmap
;
803 struct fdt_header
*fdt
;
805 struct inbuf dtbuf
, strbuf
;
806 struct inbuf memresvbuf
;
808 struct reserve_info
*reservelist
;
813 f
= srcfile_relative_open(fname
, NULL
);
815 rc
= fread(&magic_buf
, sizeof(magic_buf
), 1, f
);
817 die("Error reading DT blob magic number: %s\n",
821 die("EOF reading DT blob magic number\n");
823 die("Mysterious short read reading magic number\n");
826 magic
= fdt32_to_cpu(magic_buf
);
827 if (magic
!= FDT_MAGIC
)
828 die("Blob has incorrect magic number\n");
830 rc
= fread(&totalsize_buf
, sizeof(totalsize_buf
), 1, f
);
832 die("Error reading DT blob size: %s\n", strerror(errno
));
835 die("EOF reading DT blob size\n");
837 die("Mysterious short read reading blob size\n");
840 totalsize
= fdt32_to_cpu(totalsize_buf
);
841 if (totalsize
< FDT_V1_SIZE
)
842 die("DT blob size (%d) is too small\n", totalsize
);
844 blob
= xmalloc(totalsize
);
846 fdt
= (struct fdt_header
*)blob
;
847 fdt
->magic
= cpu_to_fdt32(magic
);
848 fdt
->totalsize
= cpu_to_fdt32(totalsize
);
850 sizeleft
= totalsize
- sizeof(magic
) - sizeof(totalsize
);
851 p
= blob
+ sizeof(magic
) + sizeof(totalsize
);
855 die("EOF before reading %d bytes of DT blob\n",
858 rc
= fread(p
, 1, sizeleft
, f
);
860 die("Error reading DT blob: %s\n",
867 off_dt
= fdt32_to_cpu(fdt
->off_dt_struct
);
868 off_str
= fdt32_to_cpu(fdt
->off_dt_strings
);
869 off_mem_rsvmap
= fdt32_to_cpu(fdt
->off_mem_rsvmap
);
870 version
= fdt32_to_cpu(fdt
->version
);
871 boot_cpuid_phys
= fdt32_to_cpu(fdt
->boot_cpuid_phys
);
873 if (off_mem_rsvmap
>= totalsize
)
874 die("Mem Reserve structure offset exceeds total size\n");
876 if (off_dt
>= totalsize
)
877 die("DT structure offset exceeds total size\n");
879 if (off_str
> totalsize
)
880 die("String table offset exceeds total size\n");
883 uint32_t size_str
= fdt32_to_cpu(fdt
->size_dt_strings
);
884 if ((off_str
+size_str
< off_str
) || (off_str
+size_str
> totalsize
))
885 die("String table extends past total size\n");
886 inbuf_init(&strbuf
, blob
+ off_str
, blob
+ off_str
+ size_str
);
888 inbuf_init(&strbuf
, blob
+ off_str
, blob
+ totalsize
);
892 size_dt
= fdt32_to_cpu(fdt
->size_dt_struct
);
893 if ((off_dt
+size_dt
< off_dt
) || (off_dt
+size_dt
> totalsize
))
894 die("Structure block extends past total size\n");
898 flags
|= FTF_FULLPATH
| FTF_NAMEPROPS
| FTF_VARALIGN
;
903 inbuf_init(&memresvbuf
,
904 blob
+ off_mem_rsvmap
, blob
+ totalsize
);
905 inbuf_init(&dtbuf
, blob
+ off_dt
, blob
+ totalsize
);
907 reservelist
= flat_read_mem_reserve(&memresvbuf
);
909 val
= flat_read_word(&dtbuf
);
911 if (val
!= FDT_BEGIN_NODE
)
912 die("Device tree blob doesn't begin with FDT_BEGIN_NODE (begins with 0x%08x)\n", val
);
914 tree
= unflatten_tree(&dtbuf
, &strbuf
, "", flags
);
916 val
= flat_read_word(&dtbuf
);
918 die("Device tree blob doesn't end with FDT_END\n");
924 return build_dt_info(DTSF_V1
, reservelist
, tree
, boot_cpuid_phys
);