blob: 5508759d4d5658d8d9c5cf2a406f4b2263b877c6 [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
27
Simon Glass69f2ed72016-07-04 11:58:09 -060028# Bring in the patman libraries
29our_path = os.path.dirname(os.path.realpath(__file__))
Simon Glassbf776672020-04-17 18:09:04 -060030sys.path.append(os.path.join(our_path, '..'))
Simon Glass69f2ed72016-07-04 11:58:09 -060031
Simon Glassed59e002018-10-01 21:12:40 -060032# Bring in the libfdt module
33sys.path.insert(0, 'scripts/dtc/pylibfdt')
34sys.path.insert(0, os.path.join(our_path,
35 '../../build-sandbox_spl/scripts/dtc/pylibfdt'))
36
Simon Glassbf776672020-04-17 18:09:04 -060037from dtoc import dtb_platdata
38from patman import test_util
Simon Glass69f2ed72016-07-04 11:58:09 -060039
Simon Glass5d9a3aa2020-12-28 20:34:59 -070040def run_tests(processes, args):
Simon Glass3def0cf2018-07-06 10:27:20 -060041 """Run all the test we have for dtoc
42
43 Args:
Simon Glass5d9a3aa2020-12-28 20:34:59 -070044 processes: Number of processes to use to run tests (None=same as #CPUs)
Simon Glassdfe5f5b2018-07-06 10:27:32 -060045 args: List of positional args provided to dtoc. This can hold a test
46 name to execute (as in 'dtoc -t test_empty_file', for example)
Simon Glass3def0cf2018-07-06 10:27:20 -060047 """
Simon Glass10ea9c02020-12-28 20:35:07 -070048 from dtoc import test_src_scan
49 from dtoc import test_dtoc
Simon Glass69f2ed72016-07-04 11:58:09 -060050
Simon Glassc0791922017-06-18 22:09:06 -060051 sys.argv = [sys.argv[0]]
Simon Glass973fa522021-07-04 12:19:44 -060052 test_name = args.files and args.files[0] or None
Simon Glassc0791922017-06-18 22:09:06 -060053
Simon Glassa32eb7d2021-02-03 06:00:51 -070054 test_dtoc.setup()
55
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +030056 result = test_util.run_test_suites(
57 toolname='dtoc', debug=True, verbosity=1, test_preserve_dirs=False,
Simon Glass5d9a3aa2020-12-28 20:34:59 -070058 processes=processes, test_name=test_name, toolpath=[],
Simon Glass1d0f30e2022-01-22 05:07:28 -070059 class_and_module_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan])
Simon Glass5d9a3aa2020-12-28 20:34:59 -070060
Alper Nebi Yasakd8318fe2022-04-02 20:06:06 +030061 return (0 if result.wasSuccessful() else 1)
62
Simon Glassc0791922017-06-18 22:09:06 -060063
Simon Glassba765212018-07-06 10:27:33 -060064def RunTestCoverage():
65 """Run the tests and check that we get 100% coverage"""
66 sys.argv = [sys.argv[0]]
Simon Glass5e2ab402022-01-29 14:14:14 -070067 test_util.run_test_coverage('tools/dtoc/dtoc', '/main.py',
Simon Glass973fa522021-07-04 12:19:44 -060068 ['tools/patman/*.py', '*/fdt*', '*test*'], args.build_dir)
Simon Glassba765212018-07-06 10:27:33 -060069
70
Simon Glassc0791922017-06-18 22:09:06 -060071if __name__ != '__main__':
72 sys.exit(1)
Simon Glass69f2ed72016-07-04 11:58:09 -060073
Simon Glass973fa522021-07-04 12:19:44 -060074epilog = '''Generate C code from devicetree files. See of-plat.rst for details'''
75
76parser = ArgumentParser(epilog=epilog)
77parser.add_argument('-B', '--build-dir', type=str, default='b',
Simon Glassba765212018-07-06 10:27:33 -060078 help='Directory containing the build output')
Simon Glass973fa522021-07-04 12:19:44 -060079parser.add_argument('-c', '--c-output-dir', action='store',
Simon Glass192c1112020-12-28 20:34:50 -070080 help='Select output directory for C files')
Simon Glass973fa522021-07-04 12:19:44 -060081parser.add_argument('-C', '--h-output-dir', action='store',
Simon Glass192c1112020-12-28 20:34:50 -070082 help='Select output directory for H files (defaults to --c-output-di)')
Simon Glass973fa522021-07-04 12:19:44 -060083parser.add_argument('-d', '--dtb-file', action='store',
Simon Glass69f2ed72016-07-04 11:58:09 -060084 help='Specify the .dtb input file')
Simon Glass973fa522021-07-04 12:19:44 -060085parser.add_argument('-i', '--instantiate', action='store_true', default=False,
Simon Glass4a092352021-02-03 06:01:12 -070086 help='Instantiate devices to avoid needing device_bind()')
Simon Glass973fa522021-07-04 12:19:44 -060087parser.add_argument('--include-disabled', action='store_true',
Simon Glass69f2ed72016-07-04 11:58:09 -060088 help='Include disabled nodes')
Simon Glass973fa522021-07-04 12:19:44 -060089parser.add_argument('-o', '--output', action='store',
Simon Glass69f2ed72016-07-04 11:58:09 -060090 help='Select output filename')
Simon Glass973fa522021-07-04 12:19:44 -060091parser.add_argument('-p', '--phase', type=str,
Simon Glassb00f0062021-02-03 06:01:02 -070092 help='set phase of U-Boot this invocation is for (spl/tpl)')
Simon Glass973fa522021-07-04 12:19:44 -060093parser.add_argument('-P', '--processes', type=int,
Simon Glass11ae93e2018-10-01 21:12:47 -060094 help='set number of processes to use for running tests')
Simon Glass973fa522021-07-04 12:19:44 -060095parser.add_argument('-t', '--test', action='store_true', dest='test',
Simon Glassc0791922017-06-18 22:09:06 -060096 default=False, help='run tests')
Simon Glass973fa522021-07-04 12:19:44 -060097parser.add_argument('-T', '--test-coverage', action='store_true',
98 default=False, help='run tests and check for 100%% coverage')
99parser.add_argument('files', nargs='*')
100args = parser.parse_args()
Simon Glass69f2ed72016-07-04 11:58:09 -0600101
Simon Glassc0791922017-06-18 22:09:06 -0600102# Run our meagre tests
Simon Glass973fa522021-07-04 12:19:44 -0600103if args.test:
104 ret_code = run_tests(args.processes, args)
Simon Glass10000962019-07-20 12:23:23 -0600105 sys.exit(ret_code)
Simon Glassc0791922017-06-18 22:09:06 -0600106
Simon Glass973fa522021-07-04 12:19:44 -0600107elif args.test_coverage:
Simon Glassba765212018-07-06 10:27:33 -0600108 RunTestCoverage()
109
Simon Glassc0791922017-06-18 22:09:06 -0600110else:
Simon Glass973fa522021-07-04 12:19:44 -0600111 dtb_platdata.run_steps(args.files, args.dtb_file, args.include_disabled,
112 args.output,
113 [args.c_output_dir, args.h_output_dir],
114 args.phase, instantiate=args.instantiate)