Skip to content

Commit

Permalink
fdt: move dumpdtb interpretation code to device_tree.c
Browse files Browse the repository at this point in the history
The dumpdtb code can be useful in more places than just for e500. Move it
to a generic place.

Signed-off-by: Alexander Graf <[email protected]>
  • Loading branch information
agraf committed Oct 5, 2012
1 parent 011aba2 commit 7119343
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 14 deletions.
22 changes: 22 additions & 0 deletions device_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,3 +304,25 @@ int qemu_devtree_add_subnode(void *fdt, const char *name)
g_free(dupname);
return retval;
}

void qemu_devtree_dumpdtb(void *fdt, int size)
{
QemuOpts *machine_opts;

machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
if (machine_opts) {
const char *dumpdtb = qemu_opt_get(machine_opts, "dumpdtb");
if (dumpdtb) {
/* Dump the dtb to a file and quit */
FILE *f = fopen(dumpdtb, "wb");
size_t len;
len = fwrite(fdt, size, 1, f);
fclose(f);
if (len != size) {
exit(1);
}
exit(0);
}
}

}
2 changes: 2 additions & 0 deletions device_tree.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,6 @@ int qemu_devtree_add_subnode(void *fdt, const char *name);
sizeof(qdt_tmp)); \
} while (0)

void qemu_devtree_dumpdtb(void *fdt, int size);

#endif /* __DEVICE_TREE_H__ */
15 changes: 1 addition & 14 deletions hw/ppc/e500.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,10 @@ static int ppce500_load_device_tree(CPUPPCState *env,
0x0, 0x10000,
};
QemuOpts *machine_opts;
const char *dumpdtb = NULL;
const char *dtb_file = NULL;

machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
if (machine_opts) {
dumpdtb = qemu_opt_get(machine_opts, "dumpdtb");
dtb_file = qemu_opt_get(machine_opts, "dtb");
toplevel_compat = qemu_opt_get(machine_opts, "dt_compatible");
}
Expand Down Expand Up @@ -334,18 +332,7 @@ static int ppce500_load_device_tree(CPUPPCState *env,
}

done:
if (dumpdtb) {
/* Dump the dtb to a file and quit */
FILE *f = fopen(dumpdtb, "wb");
size_t len;
len = fwrite(fdt, fdt_size, 1, f);
fclose(f);
if (len != fdt_size) {
exit(1);
}
exit(0);
}

qemu_devtree_dumpdtb(fdt, fdt_size);
ret = rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE, fdt, fdt_size, addr);
if (ret < 0) {
goto out;
Expand Down

0 comments on commit 7119343

Please sign in to comment.