Simon Glass | 3c19dc8 | 2019-10-31 07:42:55 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 69f2ed7 | 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 | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 7 | |
Simon Glass | 14f5acf | 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 | 10cbd3b | 2020-12-28 20:34:52 -0700 | [diff] [blame] | 16 | Dtoc produces several output files - see OUTPUT_FILES in dtb_platdata.py |
Simon Glass | 14f5acf | 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 | 2799a69 | 2020-02-25 21:35:39 +0100 | [diff] [blame] | 21 | see doc/driver-model/of-plat.rst |
Simon Glass | 14f5acf | 2017-06-18 22:08:57 -0600 | [diff] [blame] | 22 | """ |
| 23 | |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 24 | from optparse import OptionParser |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 25 | import os |
| 26 | import sys |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 27 | import unittest |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 28 | |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 29 | # Bring in the patman libraries |
| 30 | our_path = os.path.dirname(os.path.realpath(__file__)) |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 31 | sys.path.append(os.path.join(our_path, '..')) |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 32 | |
Simon Glass | ed59e00 | 2018-10-01 21:12:40 -0600 | [diff] [blame] | 33 | # Bring in the libfdt module |
| 34 | sys.path.insert(0, 'scripts/dtc/pylibfdt') |
| 35 | sys.path.insert(0, os.path.join(our_path, |
| 36 | '../../build-sandbox_spl/scripts/dtc/pylibfdt')) |
| 37 | |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 38 | from dtoc import dtb_platdata |
| 39 | from patman import test_util |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 40 | |
Simon Glass | 5d9a3aa | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 41 | def run_tests(processes, args): |
Simon Glass | 3def0cf | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 42 | """Run all the test we have for dtoc |
| 43 | |
| 44 | Args: |
Simon Glass | 5d9a3aa | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 45 | processes: Number of processes to use to run tests (None=same as #CPUs) |
Simon Glass | dfe5f5b | 2018-07-06 10:27:32 -0600 | [diff] [blame] | 46 | args: List of positional args provided to dtoc. This can hold a test |
| 47 | name to execute (as in 'dtoc -t test_empty_file', for example) |
Simon Glass | 3def0cf | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 48 | """ |
Simon Glass | 10ea9c0 | 2020-12-28 20:35:07 -0700 | [diff] [blame] | 49 | from dtoc import test_src_scan |
| 50 | from dtoc import test_dtoc |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 51 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 52 | result = unittest.TestResult() |
| 53 | sys.argv = [sys.argv[0]] |
Simon Glass | 3def0cf | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 54 | test_name = args and args[0] or None |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 55 | |
Simon Glass | a32eb7d | 2021-02-03 06:00:51 -0700 | [diff] [blame] | 56 | test_dtoc.setup() |
| 57 | |
Simon Glass | 5d9a3aa | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 58 | test_util.RunTestSuites( |
| 59 | result, debug=True, verbosity=1, test_preserve_dirs=False, |
| 60 | processes=processes, test_name=test_name, toolpath=[], |
Simon Glass | 10ea9c0 | 2020-12-28 20:35:07 -0700 | [diff] [blame] | 61 | test_class_list=[test_dtoc.TestDtoc,test_src_scan.TestSrcScan]) |
Simon Glass | 5d9a3aa | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 62 | |
| 63 | return test_util.ReportResult('binman', test_name, result) |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 64 | |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 65 | def RunTestCoverage(): |
| 66 | """Run the tests and check that we get 100% coverage""" |
| 67 | sys.argv = [sys.argv[0]] |
Simon Glass | 4d25fe2 | 2020-04-17 18:08:57 -0600 | [diff] [blame] | 68 | test_util.RunTestCoverage('tools/dtoc/dtoc', '/main.py', |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 69 | ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir) |
| 70 | |
| 71 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 72 | if __name__ != '__main__': |
| 73 | sys.exit(1) |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 74 | |
| 75 | parser = OptionParser() |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 76 | parser.add_option('-B', '--build-dir', type='string', default='b', |
| 77 | help='Directory containing the build output') |
Simon Glass | 192c111 | 2020-12-28 20:34:50 -0700 | [diff] [blame] | 78 | parser.add_option('-c', '--c-output-dir', action='store', |
| 79 | help='Select output directory for C files') |
| 80 | parser.add_option('-C', '--h-output-dir', action='store', |
| 81 | help='Select output directory for H files (defaults to --c-output-di)') |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 82 | parser.add_option('-d', '--dtb-file', action='store', |
| 83 | help='Specify the .dtb input file') |
| 84 | parser.add_option('--include-disabled', action='store_true', |
| 85 | help='Include disabled nodes') |
Simon Glass | f62cea0 | 2020-12-28 20:34:48 -0700 | [diff] [blame] | 86 | parser.add_option('-o', '--output', action='store', |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 87 | help='Select output filename') |
Simon Glass | 11ae93e | 2018-10-01 21:12:47 -0600 | [diff] [blame] | 88 | parser.add_option('-P', '--processes', type=int, |
| 89 | help='set number of processes to use for running tests') |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 90 | parser.add_option('-t', '--test', action='store_true', dest='test', |
| 91 | default=False, help='run tests') |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 92 | parser.add_option('-T', '--test-coverage', action='store_true', |
| 93 | default=False, help='run tests and check for 100% coverage') |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 94 | (options, args) = parser.parse_args() |
| 95 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 96 | # Run our meagre tests |
| 97 | if options.test: |
Simon Glass | 5d9a3aa | 2020-12-28 20:34:59 -0700 | [diff] [blame] | 98 | ret_code = run_tests(options.processes, args) |
Simon Glass | 1000096 | 2019-07-20 12:23:23 -0600 | [diff] [blame] | 99 | sys.exit(ret_code) |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 100 | |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 101 | elif options.test_coverage: |
| 102 | RunTestCoverage() |
| 103 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 104 | else: |
| 105 | dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled, |
Simon Glass | 192c111 | 2020-12-28 20:34:50 -0700 | [diff] [blame] | 106 | options.output, |
| 107 | [options.c_output_dir, options.h_output_dir]) |