blob: 6c91450410eee6f87818fa45a86d6e6b22724912 [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
Simon Glassab9272b2023-02-23 18:18:14 -070026import pathlib
Simon Glass69f2ed72016-07-04 11:58:09 -060027import sys
28
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
Simon Glass4583c002023-02-23 18:18:04 -070039from u_boot_pylib import test_util
Simon Glass69f2ed72016-07-04 11:58:09 -060040
Simon Glassab9272b2023-02-23 18:18:14 -070041DTOC_DIR = pathlib.Path(__file__).parent
42HAVE_TESTS = (DTOC_DIR / 'test_dtoc.py').exists()
43
Simon Glass5d9a3aa2020-12-28 20:34:59 -070044def run_tests(processes, args):
Simon Glass3def0cf2018-07-06 10:27:20 -060045 """Run all the test we have for dtoc
46
47 Args:
Simon Glass5d9a3aa2020-12-28 20:34:59 -070048 processes: Number of processes to use to run tests (None=same as #CPUs)
Simon Glassdfe5f5b2018-07-06 10:27:32 -060049 args: List of positional args provided to dtoc. This can hold a test
50 name to execute (as in 'dtoc -t test_empty_file', for example)
Simon Glass3def0cf2018-07-06 10:27:20 -060051 """
Simon Glass10ea9c02020-12-28 20:35:07 -070052 from dtoc import test_src_scan
53 from dtoc import test_dtoc
Simon Glass69f2ed72016-07-04 11:58:09 -060054
Simon Glassc0791922017-06-18 22:09:06 -060055 sys.argv = [sys.argv[0]]
Simon Glass973fa522021-07-04 12:19:44 -060056 test_name = args.files and args.files[0] or None
Simon Glassc0791922017-06-18 22:09:06 -060057
Simon Glassa32eb7d2021-02-03 06:00:51 -070058 test_dtoc.setup()
59
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +030060 result = test_util.run_test_suites(
61 toolname='dtoc', debug=True, verbosity=1, test_preserve_dirs=False,
Simon Glass5d9a3aa2020-12-28 20:34:59 -070062 processes=processes, test_name=test_name, toolpath=[],
Simon Glass1d0f30e2022-01-22 05:07:28 -070063 class_and_module_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan])
Simon Glass5d9a3aa2020-12-28 20:34:59 -070064
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +030065 return (0 if result.wasSuccessful() else 1)
66
Simon Glassc0791922017-06-18 22:09:06 -060067
Simon Glassb3f54742023-02-23 18:18:15 -070068def RunTestCoverage(build_dir):
Simon Glassba765212018-07-06 10:27:33 -060069 """Run the tests and check that we get 100% coverage"""
70 sys.argv = [sys.argv[0]]
Simon Glass5e2ab402022-01-29 14:14:14 -070071 test_util.run_test_coverage('tools/dtoc/dtoc', '/main.py',
Simon Glass4583c002023-02-23 18:18:04 -070072 ['tools/patman/*.py', 'tools/u_boot_pylib/*','*/fdt*', '*test*'],
Simon Glassb3f54742023-02-23 18:18:15 -070073 build_dir)
Simon Glassba765212018-07-06 10:27:33 -060074
75
Simon Glassb3f54742023-02-23 18:18:15 -070076def run_dtoc():
77 epilog = 'Generate C code from devicetree files. See of-plat.rst for details'
Simon Glass69f2ed72016-07-04 11:58:09 -060078
Simon Glassb3f54742023-02-23 18:18:15 -070079 parser = ArgumentParser(epilog=epilog)
80 parser.add_argument('-B', '--build-dir', type=str, default='b',
81 help='Directory containing the build output')
82 parser.add_argument('-c', '--c-output-dir', action='store',
83 help='Select output directory for C files')
Simon Glassab9272b2023-02-23 18:18:14 -070084 parser.add_argument(
Simon Glassb3f54742023-02-23 18:18:15 -070085 '-C', '--h-output-dir', action='store',
86 help='Select output directory for H files (defaults to --c-output-di)')
87 parser.add_argument('-d', '--dtb-file', action='store',
88 help='Specify the .dtb input file')
89 parser.add_argument(
90 '-i', '--instantiate', action='store_true', default=False,
91 help='Instantiate devices to avoid needing device_bind()')
92 parser.add_argument('--include-disabled', action='store_true',
93 help='Include disabled nodes')
94 parser.add_argument('-o', '--output', action='store',
95 help='Select output filename')
96 parser.add_argument(
97 '-p', '--phase', type=str,
98 help='set phase of U-Boot this invocation is for (spl/tpl)')
99 parser.add_argument('-P', '--processes', type=int,
100 help='set number of processes to use for running tests')
101 if HAVE_TESTS:
102 parser.add_argument('-t', '--test', action='store_true', dest='test',
103 default=False, help='run tests')
104 parser.add_argument(
105 '-T', '--test-coverage', action='store_true',
106 default=False, help='run tests and check for 100%% coverage')
107 parser.add_argument('files', nargs='*')
108 args = parser.parse_args()
Simon Glassab9272b2023-02-23 18:18:14 -0700109
Simon Glassb3f54742023-02-23 18:18:15 -0700110 # Run our meagre tests
111 if HAVE_TESTS and args.test:
112 ret_code = run_tests(args.processes, args)
113 sys.exit(ret_code)
Simon Glass69f2ed72016-07-04 11:58:09 -0600114
Simon Glassb3f54742023-02-23 18:18:15 -0700115 elif HAVE_TESTS and args.test_coverage:
116 RunTestCoverage(args.build_dir)
Simon Glassc0791922017-06-18 22:09:06 -0600117
Simon Glassb3f54742023-02-23 18:18:15 -0700118 else:
119 dtb_platdata.run_steps(args.files, args.dtb_file, args.include_disabled,
120 args.output,
121 [args.c_output_dir, args.h_output_dir],
122 args.phase, instantiate=args.instantiate)
Simon Glassba765212018-07-06 10:27:33 -0600123
Simon Glassb3f54742023-02-23 18:18:15 -0700124
125if __name__ == '__main__':
126 run_dtoc()