Merge branch 'master' of git://git.denx.de/u-boot-sh
[platform/kernel/u-boot.git] / tools / dtoc / dtoc.py
1 #!/usr/bin/env python2
2 # SPDX-License-Identifier: GPL-2.0+
3 #
4 # Copyright (C) 2016 Google, Inc
5 # Written by Simon Glass <sjg@chromium.org>
6 #
7
8 """Device tree to C tool
9
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
14 compiled program.
15
16 Dtoc produces two output files:
17
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.
21
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
26 """
27
28 from optparse import OptionParser
29 import os
30 import sys
31 import unittest
32
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'))
36
37 import dtb_platdata
38 import test_util
39
40 def run_tests(args):
41     """Run all the test we have for dtoc
42
43     Args:
44         args: List of positional args provided to dtoc. This can hold a test
45             name to execute (as in 'dtoc -t test_empty_file', for example)
46     """
47     import test_dtoc
48
49     result = unittest.TestResult()
50     sys.argv = [sys.argv[0]]
51     test_name = args and args[0] or None
52     for module in (test_dtoc.TestDtoc,):
53         if test_name:
54             try:
55                 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
56             except AttributeError:
57                 continue
58         else:
59             suite = unittest.TestLoader().loadTestsFromTestCase(module)
60         suite.run(result)
61
62     print result
63     for _, err in result.errors:
64         print err
65     for _, err in result.failures:
66         print err
67
68 def RunTestCoverage():
69     """Run the tests and check that we get 100% coverage"""
70     sys.argv = [sys.argv[0]]
71     test_util.RunTestCoverage('tools/dtoc/dtoc.py', '/dtoc.py',
72             ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
73
74
75 if __name__ != '__main__':
76     sys.exit(1)
77
78 parser = OptionParser()
79 parser.add_option('-B', '--build-dir', type='string', default='b',
80         help='Directory containing the build output')
81 parser.add_option('-d', '--dtb-file', action='store',
82                   help='Specify the .dtb input file')
83 parser.add_option('--include-disabled', action='store_true',
84                   help='Include disabled nodes')
85 parser.add_option('-o', '--output', action='store', default='-',
86                   help='Select output filename')
87 parser.add_option('-t', '--test', action='store_true', dest='test',
88                   default=False, help='run tests')
89 parser.add_option('-T', '--test-coverage', action='store_true',
90                 default=False, help='run tests and check for 100% coverage')
91 (options, args) = parser.parse_args()
92
93 # Run our meagre tests
94 if options.test:
95     run_tests(args)
96
97 elif options.test_coverage:
98     RunTestCoverage()
99
100 else:
101     dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled,
102                            options.output)