dtc: -Odts produces v1 output

This patch alters the -Odts mode output so that it uses dts-v1 format.
This means that dtc -Idts -Odts used on a v0 dts file will convert
that file to v1.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Jon Loeliger <jdl@freescale.com>
main
David Gibson 2007-11-07 11:17:37 +11:00 committed by Jon Loeliger
parent 9138db565a
commit 91967acabd
1 changed files with 5 additions and 3 deletions

View File

@ -141,7 +141,7 @@ static void write_propval_cells(FILE *f, struct data val)
l = l->next;
}

fprintf(f, "%x", be32_to_cpu(*cp++));
fprintf(f, "0x%x", be32_to_cpu(*cp++));
if ((void *)cp >= propend)
break;
fprintf(f, " ");
@ -258,12 +258,14 @@ void dt_to_source(FILE *f, struct boot_info *bi)
{
struct reserve_info *re;

fprintf(f, "/dts-v1/;\n\n");

for (re = bi->reservelist; re; re = re->next) {
if (re->label)
fprintf(f, "%s: ", re->label);
fprintf(f, "/memreserve/\t%016llx-%016llx;\n",
fprintf(f, "/memreserve/\t0x%016llx 0x%016llx;\n",
(unsigned long long)re->re.address,
(unsigned long long)(re->re.address + re->re.size - 1));
(unsigned long long)re->re.size);
}

write_tree_source_node(f, bi->dt, 0);