blob: f82ee78268213af0e6c59caecb3f62fd84f2114a [file] [log] [blame]
Simon Glassbfb0bb22019-10-31 07:42:55 -06001#!/usr/bin/env python3
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glassbfad22e2016-07-04 11:58:09 -06003#
4# Copyright (C) 2016 Google, Inc
5# Written by Simon Glass <sjg@chromium.org>
6#
Simon Glassbfad22e2016-07-04 11:58:09 -06007
Simon Glassb7edba12017-06-18 22:08:57 -06008"""Device tree to C tool
9
10This tool converts a device tree binary file (.dtb) into two C files. The
11indent is to allow a C program to access data from the device tree without
12having to link against libfdt. By putting the data from the device tree into
13C structures, normal C code can be used. This helps to reduce the size of the
14compiled program.
15
Simon Glass4e8e8462020-12-28 20:34:52 -070016Dtoc produces several output files - see OUTPUT_FILES in dtb_platdata.py
Simon Glassb7edba12017-06-18 22:08:57 -060017
18This tool is used in U-Boot to provide device tree data to SPL without
19increasing the code size of SPL. This supports the CONFIG_SPL_OF_PLATDATA
20options. For more information about the use of this options and tool please
Heinrich Schuchardtc79f03c2020-02-25 21:35:39 +010021see doc/driver-model/of-plat.rst
Simon Glassb7edba12017-06-18 22:08:57 -060022"""
23
Simon Glassd570dec2017-06-18 22:08:58 -060024from optparse import OptionParser
Simon Glassbfad22e2016-07-04 11:58:09 -060025import os
26import sys
Simon Glass9d2eb922017-06-18 22:09:06 -060027import unittest
Simon Glassbfad22e2016-07-04 11:58:09 -060028
Simon Glassbfad22e2016-07-04 11:58:09 -060029# Bring in the patman libraries
30our_path = os.path.dirname(os.path.realpath(__file__))
Simon Glassa997ea52020-04-17 18:09:04 -060031sys.path.append(os.path.join(our_path, '..'))
Simon Glassbfad22e2016-07-04 11:58:09 -060032
Simon Glass5656ca22018-10-01 21:12:40 -060033# Bring in the libfdt module
34sys.path.insert(0, 'scripts/dtc/pylibfdt')
35sys.path.insert(0, os.path.join(our_path,
36 '../../build-sandbox_spl/scripts/dtc/pylibfdt'))
37
Simon Glassa997ea52020-04-17 18:09:04 -060038from dtoc import dtb_platdata
39from patman import test_util
Simon Glassbfad22e2016-07-04 11:58:09 -060040
Simon Glass70cd0d72018-07-06 10:27:20 -060041def run_tests(args):
42 """Run all the test we have for dtoc
43
44 Args:
Simon Glassc38fee042018-07-06 10:27:32 -060045 args: List of positional args provided to dtoc. This can hold a test
46 name to execute (as in 'dtoc -t test_empty_file', for example)
Simon Glass70cd0d72018-07-06 10:27:20 -060047 """
Simon Glass9d2eb922017-06-18 22:09:06 -060048 import test_dtoc
Simon Glassbfad22e2016-07-04 11:58:09 -060049
Simon Glass9d2eb922017-06-18 22:09:06 -060050 result = unittest.TestResult()
51 sys.argv = [sys.argv[0]]
Simon Glass70cd0d72018-07-06 10:27:20 -060052 test_name = args and args[0] or None
Simon Glass9d2eb922017-06-18 22:09:06 -060053 for module in (test_dtoc.TestDtoc,):
Simon Glass70cd0d72018-07-06 10:27:20 -060054 if test_name:
55 try:
56 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
57 except AttributeError:
58 continue
59 else:
60 suite = unittest.TestLoader().loadTestsFromTestCase(module)
Simon Glass9d2eb922017-06-18 22:09:06 -060061 suite.run(result)
62
Simon Glass61b88e52019-05-17 22:00:31 -060063 print(result)
Simon Glass9d2eb922017-06-18 22:09:06 -060064 for _, err in result.errors:
Simon Glass61b88e52019-05-17 22:00:31 -060065 print(err)
Simon Glass9d2eb922017-06-18 22:09:06 -060066 for _, err in result.failures:
Simon Glass61b88e52019-05-17 22:00:31 -060067 print(err)
Simon Glass4b1113c2019-07-20 12:23:23 -060068 if result.errors or result.failures:
69 print('dtoc tests FAILED')
70 return 1
71 return 0
Simon Glass9d2eb922017-06-18 22:09:06 -060072
Simon Glass03725402018-07-06 10:27:33 -060073def RunTestCoverage():
74 """Run the tests and check that we get 100% coverage"""
75 sys.argv = [sys.argv[0]]
Simon Glass8fde9812020-04-17 18:08:57 -060076 test_util.RunTestCoverage('tools/dtoc/dtoc', '/main.py',
Simon Glass03725402018-07-06 10:27:33 -060077 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
78
79
Simon Glass9d2eb922017-06-18 22:09:06 -060080if __name__ != '__main__':
81 sys.exit(1)
Simon Glassbfad22e2016-07-04 11:58:09 -060082
83parser = OptionParser()
Simon Glass03725402018-07-06 10:27:33 -060084parser.add_option('-B', '--build-dir', type='string', default='b',
85 help='Directory containing the build output')
Simon Glass6a65d8a2020-12-28 20:34:50 -070086parser.add_option('-c', '--c-output-dir', action='store',
87 help='Select output directory for C files')
88parser.add_option('-C', '--h-output-dir', action='store',
89 help='Select output directory for H files (defaults to --c-output-di)')
Simon Glassbfad22e2016-07-04 11:58:09 -060090parser.add_option('-d', '--dtb-file', action='store',
91 help='Specify the .dtb input file')
92parser.add_option('--include-disabled', action='store_true',
93 help='Include disabled nodes')
Simon Glass6ca0c7a2020-12-28 20:34:48 -070094parser.add_option('-o', '--output', action='store',
Simon Glassbfad22e2016-07-04 11:58:09 -060095 help='Select output filename')
Simon Glass7057d022018-10-01 21:12:47 -060096parser.add_option('-P', '--processes', type=int,
97 help='set number of processes to use for running tests')
Simon Glass9d2eb922017-06-18 22:09:06 -060098parser.add_option('-t', '--test', action='store_true', dest='test',
99 default=False, help='run tests')
Simon Glass03725402018-07-06 10:27:33 -0600100parser.add_option('-T', '--test-coverage', action='store_true',
101 default=False, help='run tests and check for 100% coverage')
Simon Glassbfad22e2016-07-04 11:58:09 -0600102(options, args) = parser.parse_args()
103
Simon Glass9d2eb922017-06-18 22:09:06 -0600104# Run our meagre tests
105if options.test:
Simon Glass4b1113c2019-07-20 12:23:23 -0600106 ret_code = run_tests(args)
107 sys.exit(ret_code)
Simon Glass9d2eb922017-06-18 22:09:06 -0600108
Simon Glass03725402018-07-06 10:27:33 -0600109elif options.test_coverage:
110 RunTestCoverage()
111
Simon Glass9d2eb922017-06-18 22:09:06 -0600112else:
113 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled,
Simon Glass6a65d8a2020-12-28 20:34:50 -0700114 options.output,
115 [options.c_output_dir, options.h_output_dir])