blob: b0ad0f3952aa3c995620039c7a18b2e32faf36a8 [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 Glass5d9a3aa2020-12-28 20:34:59 -070056 test_util.RunTestSuites(
57 result, debug=True, verbosity=1, test_preserve_dirs=False,
58 processes=processes, test_name=test_name, toolpath=[],
Simon Glass10ea9c02020-12-28 20:35:07 -070059 test_class_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan])
Simon Glass5d9a3aa2020-12-28 20:34:59 -070060
61 return test_util.ReportResult('binman', test_name, result)
Simon Glassc0791922017-06-18 22:09:06 -060062
Simon Glassba765212018-07-06 10:27:33 -060063def RunTestCoverage():
64 """Run the tests and check that we get 100% coverage"""
65 sys.argv = [sys.argv[0]]
Simon Glass4d25fe22020-04-17 18:08:57 -060066 test_util.RunTestCoverage('tools/dtoc/dtoc', '/main.py',
Simon Glassba765212018-07-06 10:27:33 -060067 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
68
69
Simon Glassc0791922017-06-18 22:09:06 -060070if __name__ != '__main__':
71 sys.exit(1)
Simon Glass69f2ed72016-07-04 11:58:09 -060072
73parser = OptionParser()
Simon Glassba765212018-07-06 10:27:33 -060074parser.add_option('-B', '--build-dir', type='string', default='b',
75 help='Directory containing the build output')
Simon Glass192c1112020-12-28 20:34:50 -070076parser.add_option('-c', '--c-output-dir', action='store',
77 help='Select output directory for C files')
78parser.add_option('-C', '--h-output-dir', action='store',
79 help='Select output directory for H files (defaults to --c-output-di)')
Simon Glass69f2ed72016-07-04 11:58:09 -060080parser.add_option('-d', '--dtb-file', action='store',
81 help='Specify the .dtb input file')
82parser.add_option('--include-disabled', action='store_true',
83 help='Include disabled nodes')
Simon Glassf62cea02020-12-28 20:34:48 -070084parser.add_option('-o', '--output', action='store',
Simon Glass69f2ed72016-07-04 11:58:09 -060085 help='Select output filename')
Simon Glass11ae93e2018-10-01 21:12:47 -060086parser.add_option('-P', '--processes', type=int,
87 help='set number of processes to use for running tests')
Simon Glassc0791922017-06-18 22:09:06 -060088parser.add_option('-t', '--test', action='store_true', dest='test',
89 default=False, help='run tests')
Simon Glassba765212018-07-06 10:27:33 -060090parser.add_option('-T', '--test-coverage', action='store_true',
91 default=False, help='run tests and check for 100% coverage')
Simon Glass69f2ed72016-07-04 11:58:09 -060092(options, args) = parser.parse_args()
93
Simon Glassc0791922017-06-18 22:09:06 -060094# Run our meagre tests
95if options.test:
Simon Glass5d9a3aa2020-12-28 20:34:59 -070096 ret_code = run_tests(options.processes, args)
Simon Glass10000962019-07-20 12:23:23 -060097 sys.exit(ret_code)
Simon Glassc0791922017-06-18 22:09:06 -060098
Simon Glassba765212018-07-06 10:27:33 -060099elif options.test_coverage:
100 RunTestCoverage()
101
Simon Glassc0791922017-06-18 22:09:06 -0600102else:
103 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled,
Simon Glass192c1112020-12-28 20:34:50 -0700104 options.output,
105 [options.c_output_dir, options.h_output_dir])