[coreboot-gerrit] Change in coreboot[master]: util/cavium: Add tool to convert devicetree blobs

Patrick Rudolph (Code Review) gerrit at coreboot.org
Fri May 11 12:58:11 CEST 2018


Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/26228


Change subject: util/cavium: Add tool to convert devicetree blobs
......................................................................

util/cavium: Add tool to convert devicetree blobs

Convert Cavium's BDK devicetree blob to a static C file.

The resulting file must be included in mainboard folder to provide
board specific configuration values to BDK functions.

Example call:
python devicetree_convert.py --in sff8104.dtb --out bdk_devicetree.c

Change-Id: I76a5588aefe4f680228eca46a0e4dba7e695931c
Signed-off-by: Patrick Rudolph <patrick.rudolph at 9elements.com>
---
A util/cavium/devicetree_convert.py
1 file changed, 57 insertions(+), 0 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/28/26228/1

diff --git a/util/cavium/devicetree_convert.py b/util/cavium/devicetree_convert.py
new file mode 100644
index 0000000..c734d17
--- /dev/null
+++ b/util/cavium/devicetree_convert.py
@@ -0,0 +1,57 @@
+#!/usr/bin/python
+
+# devicetree_convert Tool to convert a DTB to a static C file
+# Copyright (C) 2018 Facebook Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+
+from pyfdt.pyfdt import FdtBlobParse
+import argparse
+
+parser = argparse.ArgumentParser(description='Cavium DTB to C converter')
+parser.add_argument('--indtb', help='Compiled devicetree blob to parse')
+parser.add_argument('--out', help='The file to write')
+parser.add_argument('--verbose', help='Be verbose', action='store_true', default=False)
+args = parser.parse_args()
+
+outfile = None
+if args.out is not None:
+    outfile = open(args.out, 'w')
+    outfile.write("// This file is part of the coreboot project.\n")
+    outfile.write("// This file is automatically generated.\n")
+    outfile.write("// DO NOT EDIT BY HAND.\n\n")
+    outfile.write("#include <bdk-devicetree.h>\n\n")
+    outfile.write("const struct bdk_devicetree_key_value devtree[] = {\n")
+
+with open(args.indtb) as infile:
+    dtb = FdtBlobParse(infile)
+    fdt = dtb.to_fdt()
+    for (path, node) in fdt.resolve_path('/cavium,bdk').walk():
+        if "/" in path:
+            path = path.replace("/", "")
+        if len(node) == 1:
+            for i in node:
+                if type(i) is not unicode:
+                    print "%s: Type is not string" % path
+                    continue
+                if args.verbose:
+                    print "%s = %s" % (path, i)
+                if outfile is not None:
+                    outfile.write("{\"%s\", \"%s\"},\n" % (path, i))
+        else:
+            print "%s: Arrays aren't supported" % path
+
+if outfile is not None:
+    outfile.write("{0, 0},\n")
+    outfile.write("};\n")
+
+

-- 
To view, visit https://review.coreboot.org/26228
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I76a5588aefe4f680228eca46a0e4dba7e695931c
Gerrit-Change-Number: 26228
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Rudolph <patrick.rudolph at 9elements.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180511/57ce7e4b/attachment-0001.html>


More information about the coreboot-gerrit mailing list