blob: 6c63d637a739295312c984c2f70463565209cf5d [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
16Dtoc produces two output files:
17
18 dt-structs.h - contains struct definitions
19 dt-platdata.c - contains data from the device tree using the struct
20 definitions, as well as U-Boot driver definitions.
21
22This tool is used in U-Boot to provide device tree data to SPL without
23increasing the code size of SPL. This supports the CONFIG_SPL_OF_PLATDATA
24options. For more information about the use of this options and tool please
Heinrich Schuchardtc79f03c2020-02-25 21:35:39 +010025see doc/driver-model/of-plat.rst
Simon Glassb7edba12017-06-18 22:08:57 -060026"""
27
Simon Glassd570dec2017-06-18 22:08:58 -060028from optparse import OptionParser
Simon Glassbfad22e2016-07-04 11:58:09 -060029import os
30import sys
Simon Glass9d2eb922017-06-18 22:09:06 -060031import unittest
Simon Glassbfad22e2016-07-04 11:58:09 -060032
Simon Glassbfad22e2016-07-04 11:58:09 -060033# Bring in the patman libraries
34our_path = os.path.dirname(os.path.realpath(__file__))
35sys.path.append(os.path.join(our_path, '../patman'))
Simon Glassa997ea52020-04-17 18:09:04 -060036sys.path.append(os.path.join(our_path, '..'))
Simon Glassbfad22e2016-07-04 11:58:09 -060037
Simon Glass5656ca22018-10-01 21:12:40 -060038# Bring in the libfdt module
39sys.path.insert(0, 'scripts/dtc/pylibfdt')
40sys.path.insert(0, os.path.join(our_path,
41 '../../build-sandbox_spl/scripts/dtc/pylibfdt'))
42
Simon Glassa997ea52020-04-17 18:09:04 -060043from dtoc import dtb_platdata
44from patman import test_util
Simon Glassbfad22e2016-07-04 11:58:09 -060045
Simon Glass70cd0d72018-07-06 10:27:20 -060046def run_tests(args):
47 """Run all the test we have for dtoc
48
49 Args:
Simon Glassc38fee042018-07-06 10:27:32 -060050 args: List of positional args provided to dtoc. This can hold a test
51 name to execute (as in 'dtoc -t test_empty_file', for example)
Simon Glass70cd0d72018-07-06 10:27:20 -060052 """
Simon Glass9d2eb922017-06-18 22:09:06 -060053 import test_dtoc
Simon Glassbfad22e2016-07-04 11:58:09 -060054
Simon Glass9d2eb922017-06-18 22:09:06 -060055 result = unittest.TestResult()
56 sys.argv = [sys.argv[0]]
Simon Glass70cd0d72018-07-06 10:27:20 -060057 test_name = args and args[0] or None
Simon Glass9d2eb922017-06-18 22:09:06 -060058 for module in (test_dtoc.TestDtoc,):
Simon Glass70cd0d72018-07-06 10:27:20 -060059 if test_name:
60 try:
61 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
62 except AttributeError:
63 continue
64 else:
65 suite = unittest.TestLoader().loadTestsFromTestCase(module)
Simon Glass9d2eb922017-06-18 22:09:06 -060066 suite.run(result)
67
Simon Glass61b88e52019-05-17 22:00:31 -060068 print(result)
Simon Glass9d2eb922017-06-18 22:09:06 -060069 for _, err in result.errors:
Simon Glass61b88e52019-05-17 22:00:31 -060070 print(err)
Simon Glass9d2eb922017-06-18 22:09:06 -060071 for _, err in result.failures:
Simon Glass61b88e52019-05-17 22:00:31 -060072 print(err)
Simon Glass4b1113c2019-07-20 12:23:23 -060073 if result.errors or result.failures:
74 print('dtoc tests FAILED')
75 return 1
76 return 0
Simon Glass9d2eb922017-06-18 22:09:06 -060077
Simon Glass03725402018-07-06 10:27:33 -060078def RunTestCoverage():
79 """Run the tests and check that we get 100% coverage"""
80 sys.argv = [sys.argv[0]]
Simon Glass8fde9812020-04-17 18:08:57 -060081 test_util.RunTestCoverage('tools/dtoc/dtoc', '/main.py',
Simon Glass03725402018-07-06 10:27:33 -060082 ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir)
83
84
Simon Glass9d2eb922017-06-18 22:09:06 -060085if __name__ != '__main__':
86 sys.exit(1)
Simon Glassbfad22e2016-07-04 11:58:09 -060087
88parser = OptionParser()
Simon Glass03725402018-07-06 10:27:33 -060089parser.add_option('-B', '--build-dir', type='string', default='b',
90 help='Directory containing the build output')
Simon Glassbfad22e2016-07-04 11:58:09 -060091parser.add_option('-d', '--dtb-file', action='store',
92 help='Specify the .dtb input file')
93parser.add_option('--include-disabled', action='store_true',
94 help='Include disabled nodes')
95parser.add_option('-o', '--output', action='store', default='-',
96 help='Select output filename')
Simon Glass7057d022018-10-01 21:12:47 -060097parser.add_option('-P', '--processes', type=int,
98 help='set number of processes to use for running tests')
Simon Glass9d2eb922017-06-18 22:09:06 -060099parser.add_option('-t', '--test', action='store_true', dest='test',
100 default=False, help='run tests')
Simon Glass03725402018-07-06 10:27:33 -0600101parser.add_option('-T', '--test-coverage', action='store_true',
102 default=False, help='run tests and check for 100% coverage')
Simon Glassbfad22e2016-07-04 11:58:09 -0600103(options, args) = parser.parse_args()
104
Simon Glass9d2eb922017-06-18 22:09:06 -0600105# Run our meagre tests
106if options.test:
Simon Glass4b1113c2019-07-20 12:23:23 -0600107 ret_code = run_tests(args)
108 sys.exit(ret_code)
Simon Glass9d2eb922017-06-18 22:09:06 -0600109
Simon Glass03725402018-07-06 10:27:33 -0600110elif options.test_coverage:
111 RunTestCoverage()
112
Simon Glass9d2eb922017-06-18 22:09:06 -0600113else:
114 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled,
115 options.output)