blob: 355b1e62773228cc2931706aa71dcc9199ddb832 [file] [log] [blame]
Simon Glass3c19dc82019-10-31 07:42:55 -06001#!/usr/bin/env python3
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass69f2ed72016-07-04 11:58:09 -06003#
4# Copyright (C) 2016 Google, Inc
5# Written by Simon Glass <sjg@chromium.org>
6#
Simon Glass69f2ed72016-07-04 11:58:09 -06007
Simon Glass14f5acf2017-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 Glass10cbd3b2020-12-28 20:34:52 -070016Dtoc produces several output files - see OUTPUT_FILES in dtb_platdata.py
Simon Glass14f5acf2017-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 Schuchardt2799a692020-02-25 21:35:39 +010021see doc/driver-model/of-plat.rst
Simon Glass14f5acf2017-06-18 22:08:57 -060022"""
23
Simon Glass7581c012017-06-18 22:08:58 -060024from optparse import OptionParser
Simon Glass69f2ed72016-07-04 11:58:09 -060025import os
26import sys
Simon Glassc0791922017-06-18 22:09:06 -060027import unittest
Simon Glass69f2ed72016-07-04 11:58:09 -060028
Simon Glass69f2ed72016-07-04 11:58:09 -060029# Bring in the patman libraries
30our_path = os.path.dirname(os.path.realpath(__file__))
Simon Glassbf776672020-04-17 18:09:04 -060031sys.path.append(os.path.join(our_path, '..'))
Simon Glass69f2ed72016-07-04 11:58:09 -060032
Simon Glassed59e002018-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 Glassbf776672020-04-17 18:09:04 -060038from dtoc import dtb_platdata
39from patman import test_util
Simon Glass69f2ed72016-07-04 11:58:09 -060040
Simon Glass5d9a3aa2020-12-28 20:34:59 -070041def run_tests(processes, args):
Simon Glass3def0cf2018-07-06 10:27:20 -060042 """Run all the test we have for dtoc
43
44 Args:
Simon Glass5d9a3aa2020-12-28 20:34:59 -070045 processes: Number of processes to use to run tests (None=same as #CPUs)
Simon Glassdfe5f5b2018-07-06 10:27:32 -060046 args: List of positional args provided to dtoc. This can hold a test
47 name to execute (as in 'dtoc -t test_empty_file', for example)
Simon Glass3def0cf2018-07-06 10:27:20 -060048 """
Simon Glass10ea9c02020-12-28 20:35:07 -070049 from dtoc import test_src_scan
50 from dtoc import test_dtoc
Simon Glass69f2ed72016-07-04 11:58:09 -060051
Simon Glassc0791922017-06-18 22:09:06 -060052 result = unittest.TestResult()
53 sys.argv = [sys.argv[0]]
Simon Glass3def0cf2018-07-06 10:27:20 -060054 test_name = args and args[0] or None
Simon Glassc0791922017-06-18 22:09:06 -060055
Simon Glassa32eb7d2021-02-03 06:00:51 -070056 test_dtoc.setup()
57
Simon Glass5d9a3aa2020-12-28 20:34:59 -070058 test_util.RunTestSuites(
59 result, debug=True, verbosity=1, test_preserve_dirs=False,
60 processes=processes, test_name=test_name, toolpath=[],
Simon Glass10ea9c02020-12-28 20:35:07 -070061 test_class_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan])
Simon Glass5d9a3aa2020-12-28 20:34:59 -070062
63 return test_util.ReportResult('binman', test_name, result)
Simon Glassc0791922017-06-18 22:09:06 -060064
Simon Glassba765212018-07-06 10:27:33 -060065def RunTestCoverage():
66 """Run the tests and check that we get 100% coverage"""
67 sys.argv = [sys.argv[0]]
Simon Glass4d25fe22020-04-17 18:08:57 -060068 test_util.RunTestCoverage('tools/dtoc/dtoc', '/main.py',
Simon Glassba765212018-07-06 10:27:33 -060069 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
70
71
Simon Glassc0791922017-06-18 22:09:06 -060072if __name__ != '__main__':
73 sys.exit(1)
Simon Glass69f2ed72016-07-04 11:58:09 -060074
75parser = OptionParser()
Simon Glassba765212018-07-06 10:27:33 -060076parser.add_option('-B', '--build-dir', type='string', default='b',
77 help='Directory containing the build output')
Simon Glass192c1112020-12-28 20:34:50 -070078parser.add_option('-c', '--c-output-dir', action='store',
79 help='Select output directory for C files')
80parser.add_option('-C', '--h-output-dir', action='store',
81 help='Select output directory for H files (defaults to --c-output-di)')
Simon Glass69f2ed72016-07-04 11:58:09 -060082parser.add_option('-d', '--dtb-file', action='store',
83 help='Specify the .dtb input file')
84parser.add_option('--include-disabled', action='store_true',
85 help='Include disabled nodes')
Simon Glassf62cea02020-12-28 20:34:48 -070086parser.add_option('-o', '--output', action='store',
Simon Glass69f2ed72016-07-04 11:58:09 -060087 help='Select output filename')
Simon Glass11ae93e2018-10-01 21:12:47 -060088parser.add_option('-P', '--processes', type=int,
89 help='set number of processes to use for running tests')
Simon Glassc0791922017-06-18 22:09:06 -060090parser.add_option('-t', '--test', action='store_true', dest='test',
91 default=False, help='run tests')
Simon Glassba765212018-07-06 10:27:33 -060092parser.add_option('-T', '--test-coverage', action='store_true',
93 default=False, help='run tests and check for 100% coverage')
Simon Glass69f2ed72016-07-04 11:58:09 -060094(options, args) = parser.parse_args()
95
Simon Glassc0791922017-06-18 22:09:06 -060096# Run our meagre tests
97if options.test:
Simon Glass5d9a3aa2020-12-28 20:34:59 -070098 ret_code = run_tests(options.processes, args)
Simon Glass10000962019-07-20 12:23:23 -060099 sys.exit(ret_code)
Simon Glassc0791922017-06-18 22:09:06 -0600100
Simon Glassba765212018-07-06 10:27:33 -0600101elif options.test_coverage:
102 RunTestCoverage()
103
Simon Glassc0791922017-06-18 22:09:06 -0600104else:
105 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled,
Simon Glass192c1112020-12-28 20:34:50 -0700106 options.output,
107 [options.c_output_dir, options.h_output_dir])