blob: 91521661f4615e36a02f4626d9a7f86d95723f9c [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 Glass87827df2021-07-04 12:19:44 -060024from argparse import ArgumentParser
Simon Glassbfad22e2016-07-04 11:58:09 -060025import os
Simon Glass48265ed2023-02-23 18:18:14 -070026import pathlib
Simon Glassbfad22e2016-07-04 11:58:09 -060027import sys
28
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
Simon Glass131444f2023-02-23 18:18:04 -070039from u_boot_pylib import test_util
Simon Glassbfad22e2016-07-04 11:58:09 -060040
Simon Glass48265ed2023-02-23 18:18:14 -070041DTOC_DIR = pathlib.Path(__file__).parent
42HAVE_TESTS = (DTOC_DIR / 'test_dtoc.py').exists()
43
Simon Glass5fa24b02020-12-28 20:34:59 -070044def run_tests(processes, args):
Simon Glass70cd0d72018-07-06 10:27:20 -060045 """Run all the test we have for dtoc
46
47 Args:
Simon Glass5fa24b02020-12-28 20:34:59 -070048 processes: Number of processes to use to run tests (None=same as #CPUs)
Simon Glassc38fee042018-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 Glass70cd0d72018-07-06 10:27:20 -060051 """
Simon Glassdf692c32020-12-28 20:35:07 -070052 from dtoc import test_src_scan
53 from dtoc import test_dtoc
Simon Glassbfad22e2016-07-04 11:58:09 -060054
Simon Glass9d2eb922017-06-18 22:09:06 -060055 sys.argv = [sys.argv[0]]
Simon Glass87827df2021-07-04 12:19:44 -060056 test_name = args.files and args.files[0] or None
Simon Glass9d2eb922017-06-18 22:09:06 -060057
Simon Glass768ff0a2021-02-03 06:00:51 -070058 test_dtoc.setup()
59
Alper Nebi Yasakca1c5882022-04-02 20:06:06 +030060 result = test_util.run_test_suites(
61 toolname='dtoc', debug=True, verbosity=1, test_preserve_dirs=False,
Simon Glass5fa24b02020-12-28 20:34:59 -070062 processes=processes, test_name=test_name, toolpath=[],
Simon Glassc27d22d2022-01-22 05:07:28 -070063 class_and_module_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan])
Simon Glass5fa24b02020-12-28 20:34:59 -070064
Alper Nebi Yasakca1c5882022-04-02 20:06:06 +030065 return (0 if result.wasSuccessful() else 1)
66
Simon Glass9d2eb922017-06-18 22:09:06 -060067
Simon Glass03725402018-07-06 10:27:33 -060068def RunTestCoverage():
69 """Run the tests and check that we get 100% coverage"""
70 sys.argv = [sys.argv[0]]
Simon Glass1b53d902022-01-29 14:14:14 -070071 test_util.run_test_coverage('tools/dtoc/dtoc', '/main.py',
Simon Glass131444f2023-02-23 18:18:04 -070072 ['tools/patman/*.py', 'tools/u_boot_pylib/*','*/fdt*', '*test*'],
73 args.build_dir)
Simon Glass03725402018-07-06 10:27:33 -060074
75
Simon Glass9d2eb922017-06-18 22:09:06 -060076if __name__ != '__main__':
77 sys.exit(1)
Simon Glassbfad22e2016-07-04 11:58:09 -060078
Simon Glass87827df2021-07-04 12:19:44 -060079epilog = '''Generate C code from devicetree files. See of-plat.rst for details'''
80
81parser = ArgumentParser(epilog=epilog)
82parser.add_argument('-B', '--build-dir', type=str, default='b',
Simon Glass03725402018-07-06 10:27:33 -060083 help='Directory containing the build output')
Simon Glass87827df2021-07-04 12:19:44 -060084parser.add_argument('-c', '--c-output-dir', action='store',
Simon Glass6a65d8a2020-12-28 20:34:50 -070085 help='Select output directory for C files')
Simon Glass87827df2021-07-04 12:19:44 -060086parser.add_argument('-C', '--h-output-dir', action='store',
Simon Glass6a65d8a2020-12-28 20:34:50 -070087 help='Select output directory for H files (defaults to --c-output-di)')
Simon Glass87827df2021-07-04 12:19:44 -060088parser.add_argument('-d', '--dtb-file', action='store',
Simon Glassbfad22e2016-07-04 11:58:09 -060089 help='Specify the .dtb input file')
Simon Glass87827df2021-07-04 12:19:44 -060090parser.add_argument('-i', '--instantiate', action='store_true', default=False,
Simon Glass3809ad92021-02-03 06:01:12 -070091 help='Instantiate devices to avoid needing device_bind()')
Simon Glass87827df2021-07-04 12:19:44 -060092parser.add_argument('--include-disabled', action='store_true',
Simon Glassbfad22e2016-07-04 11:58:09 -060093 help='Include disabled nodes')
Simon Glass87827df2021-07-04 12:19:44 -060094parser.add_argument('-o', '--output', action='store',
Simon Glassbfad22e2016-07-04 11:58:09 -060095 help='Select output filename')
Simon Glass87827df2021-07-04 12:19:44 -060096parser.add_argument('-p', '--phase', type=str,
Simon Glassf303ee72021-02-03 06:01:02 -070097 help='set phase of U-Boot this invocation is for (spl/tpl)')
Simon Glass87827df2021-07-04 12:19:44 -060098parser.add_argument('-P', '--processes', type=int,
Simon Glass7057d022018-10-01 21:12:47 -060099 help='set number of processes to use for running tests')
Simon Glass48265ed2023-02-23 18:18:14 -0700100if HAVE_TESTS:
101 parser.add_argument('-t', '--test', action='store_true', dest='test',
102 default=False, help='run tests')
103 parser.add_argument(
104 '-T', '--test-coverage', action='store_true',
105 default=False, help='run tests and check for 100%% coverage')
106
Simon Glass87827df2021-07-04 12:19:44 -0600107parser.add_argument('files', nargs='*')
108args = parser.parse_args()
Simon Glassbfad22e2016-07-04 11:58:09 -0600109
Simon Glass9d2eb922017-06-18 22:09:06 -0600110# Run our meagre tests
Simon Glass48265ed2023-02-23 18:18:14 -0700111if HAVE_TESTS and args.test:
Simon Glass87827df2021-07-04 12:19:44 -0600112 ret_code = run_tests(args.processes, args)
Simon Glass4b1113c2019-07-20 12:23:23 -0600113 sys.exit(ret_code)
Simon Glass9d2eb922017-06-18 22:09:06 -0600114
Simon Glass48265ed2023-02-23 18:18:14 -0700115elif HAVE_TESTS and args.test_coverage:
Simon Glass03725402018-07-06 10:27:33 -0600116 RunTestCoverage()
117
Simon Glass9d2eb922017-06-18 22:09:06 -0600118else:
Simon Glass87827df2021-07-04 12:19:44 -0600119 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)