Simon Glass | bfb0bb2 | 2019-10-31 07:42:55 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 3 | # |
| 4 | # Copyright (C) 2016 Google, Inc |
| 5 | # Written by Simon Glass <sjg@chromium.org> |
| 6 | # |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 7 | |
Simon Glass | b7edba1 | 2017-06-18 22:08:57 -0600 | [diff] [blame] | 8 | """Device tree to C tool |
| 9 | |
| 10 | This tool converts a device tree binary file (.dtb) into two C files. The |
| 11 | indent is to allow a C program to access data from the device tree without |
| 12 | having to link against libfdt. By putting the data from the device tree into |
| 13 | C structures, normal C code can be used. This helps to reduce the size of the |
| 14 | compiled program. |
| 15 | |
Simon Glass | 4e8e846 | 2020-12-28 20:34:52 -0700 | [diff] [blame] | 16 | Dtoc produces several output files - see OUTPUT_FILES in dtb_platdata.py |
Simon Glass | b7edba1 | 2017-06-18 22:08:57 -0600 | [diff] [blame] | 17 | |
| 18 | This tool is used in U-Boot to provide device tree data to SPL without |
| 19 | increasing the code size of SPL. This supports the CONFIG_SPL_OF_PLATDATA |
| 20 | options. For more information about the use of this options and tool please |
Heinrich Schuchardt | c79f03c | 2020-02-25 21:35:39 +0100 | [diff] [blame] | 21 | see doc/driver-model/of-plat.rst |
Simon Glass | b7edba1 | 2017-06-18 22:08:57 -0600 | [diff] [blame] | 22 | """ |
| 23 | |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 24 | from argparse import ArgumentParser |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 25 | import os |
| 26 | import sys |
| 27 | |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 28 | # Bring in the patman libraries |
| 29 | our_path = os.path.dirname(os.path.realpath(__file__)) |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 30 | sys.path.append(os.path.join(our_path, '..')) |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 31 | |
Simon Glass | 5656ca2 | 2018-10-01 21:12:40 -0600 | [diff] [blame] | 32 | # Bring in the libfdt module |
| 33 | sys.path.insert(0, 'scripts/dtc/pylibfdt') |
| 34 | sys.path.insert(0, os.path.join(our_path, |
| 35 | '../../build-sandbox_spl/scripts/dtc/pylibfdt')) |
| 36 | |
Simon Glass | a997ea5 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 37 | from dtoc import dtb_platdata |
| 38 | from patman import test_util |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 39 | |
Simon Glass | 5fa24b0 | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 40 | def run_tests(processes, args): |
Simon Glass | 70cd0d7 | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 41 | """Run all the test we have for dtoc |
| 42 | |
| 43 | Args: |
Simon Glass | 5fa24b0 | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 44 | processes: Number of processes to use to run tests (None=same as #CPUs) |
Simon Glass | c38fee04 | 2018-07-06 10:27:32 -0600 | [diff] [blame] | 45 | 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 Glass | 70cd0d7 | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 47 | """ |
Simon Glass | df692c3 | 2020-12-28 20:35:07 -0700 | [diff] [blame] | 48 | from dtoc import test_src_scan |
| 49 | from dtoc import test_dtoc |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 50 | |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 51 | sys.argv = [sys.argv[0]] |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 52 | test_name = args.files and args.files[0] or None |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 53 | |
Simon Glass | 768ff0a | 2021-02-03 06:00:51 -0700 | [diff] [blame] | 54 | test_dtoc.setup() |
| 55 | |
Alper Nebi Yasak | ca1c588 | 2022-04-02 20:06:06 +0300 | [diff] [blame] | 56 | result = test_util.run_test_suites( |
| 57 | toolname='dtoc', debug=True, verbosity=1, test_preserve_dirs=False, |
Simon Glass | 5fa24b0 | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 58 | processes=processes, test_name=test_name, toolpath=[], |
Simon Glass | c27d22d | 2022-01-22 05:07:28 -0700 | [diff] [blame] | 59 | class_and_module_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan]) |
Simon Glass | 5fa24b0 | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 60 | |
Alper Nebi Yasak | ca1c588 | 2022-04-02 20:06:06 +0300 | [diff] [blame] | 61 | return (0 if result.wasSuccessful() else 1) |
| 62 | |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 63 | |
Simon Glass | 0372540 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 64 | def RunTestCoverage(): |
| 65 | """Run the tests and check that we get 100% coverage""" |
| 66 | sys.argv = [sys.argv[0]] |
Simon Glass | 1b53d90 | 2022-01-29 14:14:14 -0700 | [diff] [blame] | 67 | test_util.run_test_coverage('tools/dtoc/dtoc', '/main.py', |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 68 | ['tools/patman/*.py', '*/fdt*', '*test*'], args.build_dir) |
Simon Glass | 0372540 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 69 | |
| 70 | |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 71 | if __name__ != '__main__': |
| 72 | sys.exit(1) |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 73 | |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 74 | epilog = '''Generate C code from devicetree files. See of-plat.rst for details''' |
| 75 | |
| 76 | parser = ArgumentParser(epilog=epilog) |
| 77 | parser.add_argument('-B', '--build-dir', type=str, default='b', |
Simon Glass | 0372540 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 78 | help='Directory containing the build output') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 79 | parser.add_argument('-c', '--c-output-dir', action='store', |
Simon Glass | 6a65d8a | 2020-12-28 20:34:50 -0700 | [diff] [blame] | 80 | help='Select output directory for C files') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 81 | parser.add_argument('-C', '--h-output-dir', action='store', |
Simon Glass | 6a65d8a | 2020-12-28 20:34:50 -0700 | [diff] [blame] | 82 | help='Select output directory for H files (defaults to --c-output-di)') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 83 | parser.add_argument('-d', '--dtb-file', action='store', |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 84 | help='Specify the .dtb input file') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 85 | parser.add_argument('-i', '--instantiate', action='store_true', default=False, |
Simon Glass | 3809ad9 | 2021-02-03 06:01:12 -0700 | [diff] [blame] | 86 | help='Instantiate devices to avoid needing device_bind()') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 87 | parser.add_argument('--include-disabled', action='store_true', |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 88 | help='Include disabled nodes') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 89 | parser.add_argument('-o', '--output', action='store', |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 90 | help='Select output filename') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 91 | parser.add_argument('-p', '--phase', type=str, |
Simon Glass | f303ee7 | 2021-02-03 06:01:02 -0700 | [diff] [blame] | 92 | help='set phase of U-Boot this invocation is for (spl/tpl)') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 93 | parser.add_argument('-P', '--processes', type=int, |
Simon Glass | 7057d02 | 2018-10-01 21:12:47 -0600 | [diff] [blame] | 94 | help='set number of processes to use for running tests') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 95 | parser.add_argument('-t', '--test', action='store_true', dest='test', |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 96 | default=False, help='run tests') |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 97 | parser.add_argument('-T', '--test-coverage', action='store_true', |
| 98 | default=False, help='run tests and check for 100%% coverage') |
| 99 | parser.add_argument('files', nargs='*') |
| 100 | args = parser.parse_args() |
Simon Glass | bfad22e | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 101 | |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 102 | # Run our meagre tests |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 103 | if args.test: |
| 104 | ret_code = run_tests(args.processes, args) |
Simon Glass | 4b1113c | 2019-07-20 12:23:23 -0600 | [diff] [blame] | 105 | sys.exit(ret_code) |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 106 | |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 107 | elif args.test_coverage: |
Simon Glass | 0372540 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 108 | RunTestCoverage() |
| 109 | |
Simon Glass | 9d2eb92 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 110 | else: |
Simon Glass | 87827df | 2021-07-04 12:19:44 -0600 | [diff] [blame] | 111 | 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) |