blob: fac9db9c786f1554d9f51af63debe78e57c8d285 [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 Glass973fa522021-07-04 12:19:44 -060024from argparse import ArgumentParser
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 Glass973fa522021-07-04 12:19:44 -060054 test_name = args.files and args.files[0] or None
Simon Glassc0791922017-06-18 22:09:06 -060055
Simon Glassa32eb7d2021-02-03 06:00:51 -070056 test_dtoc.setup()
57
Simon Glass5e2ab402022-01-29 14:14:14 -070058 test_util.run_test_suites(
Simon Glass5d9a3aa2020-12-28 20:34:59 -070059 result, debug=True, verbosity=1, test_preserve_dirs=False,
60 processes=processes, test_name=test_name, toolpath=[],
Simon Glass1d0f30e2022-01-22 05:07:28 -070061 class_and_module_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan])
Simon Glass5d9a3aa2020-12-28 20:34:59 -070062
Simon Glass5e2ab402022-01-29 14:14:14 -070063 return test_util.report_result('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 Glass5e2ab402022-01-29 14:14:14 -070068 test_util.run_test_coverage('tools/dtoc/dtoc', '/main.py',
Simon Glass973fa522021-07-04 12:19:44 -060069 ['tools/patman/*.py', '*/fdt*', '*test*'], args.build_dir)
Simon Glassba765212018-07-06 10:27:33 -060070
71
Simon Glassc0791922017-06-18 22:09:06 -060072if __name__ != '__main__':
73 sys.exit(1)
Simon Glass69f2ed72016-07-04 11:58:09 -060074
Simon Glass973fa522021-07-04 12:19:44 -060075epilog = '''Generate C code from devicetree files. See of-plat.rst for details'''
76
77parser = ArgumentParser(epilog=epilog)
78parser.add_argument('-B', '--build-dir', type=str, default='b',
Simon Glassba765212018-07-06 10:27:33 -060079 help='Directory containing the build output')
Simon Glass973fa522021-07-04 12:19:44 -060080parser.add_argument('-c', '--c-output-dir', action='store',
Simon Glass192c1112020-12-28 20:34:50 -070081 help='Select output directory for C files')
Simon Glass973fa522021-07-04 12:19:44 -060082parser.add_argument('-C', '--h-output-dir', action='store',
Simon Glass192c1112020-12-28 20:34:50 -070083 help='Select output directory for H files (defaults to --c-output-di)')
Simon Glass973fa522021-07-04 12:19:44 -060084parser.add_argument('-d', '--dtb-file', action='store',
Simon Glass69f2ed72016-07-04 11:58:09 -060085 help='Specify the .dtb input file')
Simon Glass973fa522021-07-04 12:19:44 -060086parser.add_argument('-i', '--instantiate', action='store_true', default=False,
Simon Glass4a092352021-02-03 06:01:12 -070087 help='Instantiate devices to avoid needing device_bind()')
Simon Glass973fa522021-07-04 12:19:44 -060088parser.add_argument('--include-disabled', action='store_true',
Simon Glass69f2ed72016-07-04 11:58:09 -060089 help='Include disabled nodes')
Simon Glass973fa522021-07-04 12:19:44 -060090parser.add_argument('-o', '--output', action='store',
Simon Glass69f2ed72016-07-04 11:58:09 -060091 help='Select output filename')
Simon Glass973fa522021-07-04 12:19:44 -060092parser.add_argument('-p', '--phase', type=str,
Simon Glassb00f0062021-02-03 06:01:02 -070093 help='set phase of U-Boot this invocation is for (spl/tpl)')
Simon Glass973fa522021-07-04 12:19:44 -060094parser.add_argument('-P', '--processes', type=int,
Simon Glass11ae93e2018-10-01 21:12:47 -060095 help='set number of processes to use for running tests')
Simon Glass973fa522021-07-04 12:19:44 -060096parser.add_argument('-t', '--test', action='store_true', dest='test',
Simon Glassc0791922017-06-18 22:09:06 -060097 default=False, help='run tests')
Simon Glass973fa522021-07-04 12:19:44 -060098parser.add_argument('-T', '--test-coverage', action='store_true',
99 default=False, help='run tests and check for 100%% coverage')
100parser.add_argument('files', nargs='*')
101args = parser.parse_args()
Simon Glass69f2ed72016-07-04 11:58:09 -0600102
Simon Glassc0791922017-06-18 22:09:06 -0600103# Run our meagre tests
Simon Glass973fa522021-07-04 12:19:44 -0600104if args.test:
105 ret_code = run_tests(args.processes, args)
Simon Glass10000962019-07-20 12:23:23 -0600106 sys.exit(ret_code)
Simon Glassc0791922017-06-18 22:09:06 -0600107
Simon Glass973fa522021-07-04 12:19:44 -0600108elif args.test_coverage:
Simon Glassba765212018-07-06 10:27:33 -0600109 RunTestCoverage()
110
Simon Glassc0791922017-06-18 22:09:06 -0600111else:
Simon Glass973fa522021-07-04 12:19:44 -0600112 dtb_platdata.run_steps(args.files, args.dtb_file, args.include_disabled,
113 args.output,
114 [args.c_output_dir, args.h_output_dir],
115 args.phase, instantiate=args.instantiate)