2 # SPDX-License-Identifier: GPL-2.0+
4 # Copyright (C) 2016 Google, Inc
5 # Written by Simon Glass <sjg@chromium.org>
8 """Device tree to C tool
10 This tool converts a device tree binary file (.dtb) into two C files. The
11 indent is to allow a C program to access data from the device tree without
12 having to link against libfdt. By putting the data from the device tree into
13 C structures, normal C code can be used. This helps to reduce the size of the
16 Dtoc produces two output files:
18 dt-structs.h - contains struct definitions
19 dt-platdata.c - contains data from the device tree using the struct
20 definitions, as well as U-Boot driver definitions.
22 This tool is used in U-Boot to provide device tree data to SPL without
23 increasing the code size of SPL. This supports the CONFIG_SPL_OF_PLATDATA
24 options. For more information about the use of this options and tool please
25 see doc/driver-model/of-plat.txt
28 from optparse import OptionParser
33 # Bring in the patman libraries
34 our_path = os.path.dirname(os.path.realpath(__file__))
35 sys.path.append(os.path.join(our_path, '../patman'))
40 """Run all the test we have for dtoc
43 args: List of positional args provided to binman. This can hold a test
44 name to execute (as in 'binman -t testSections', for example)
48 result = unittest.TestResult()
49 sys.argv = [sys.argv[0]]
50 test_name = args and args[0] or None
51 for module in (test_dtoc.TestDtoc,):
54 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
55 except AttributeError:
58 suite = unittest.TestLoader().loadTestsFromTestCase(module)
62 for _, err in result.errors:
64 for _, err in result.failures:
67 if __name__ != '__main__':
70 parser = OptionParser()
71 parser.add_option('-d', '--dtb-file', action='store',
72 help='Specify the .dtb input file')
73 parser.add_option('--include-disabled', action='store_true',
74 help='Include disabled nodes')
75 parser.add_option('-o', '--output', action='store', default='-',
76 help='Select output filename')
77 parser.add_option('-t', '--test', action='store_true', dest='test',
78 default=False, help='run tests')
79 (options, args) = parser.parse_args()
81 # Run our meagre tests
86 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled,