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 | |
| 16 | Dtoc 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 | |
| 22 | This tool is used in U-Boot to provide device tree data to SPL without |
| 23 | increasing the code size of SPL. This supports the CONFIG_SPL_OF_PLATDATA |
| 24 | 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] | 25 | see doc/driver-model/of-plat.rst |
Simon Glass | 14f5acf | 2017-06-18 22:08:57 -0600 | [diff] [blame] | 26 | """ |
| 27 | |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 28 | from optparse import OptionParser |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 29 | import os |
| 30 | import sys |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 31 | import unittest |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 32 | |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 33 | # Bring in the patman libraries |
| 34 | our_path = os.path.dirname(os.path.realpath(__file__)) |
| 35 | sys.path.append(os.path.join(our_path, '../patman')) |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame^] | 36 | sys.path.append(os.path.join(our_path, '..')) |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 37 | |
Simon Glass | ed59e00 | 2018-10-01 21:12:40 -0600 | [diff] [blame] | 38 | # Bring in the libfdt module |
| 39 | sys.path.insert(0, 'scripts/dtc/pylibfdt') |
| 40 | sys.path.insert(0, os.path.join(our_path, |
| 41 | '../../build-sandbox_spl/scripts/dtc/pylibfdt')) |
| 42 | |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame^] | 43 | from dtoc import dtb_platdata |
| 44 | from patman import test_util |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 45 | |
Simon Glass | 3def0cf | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 46 | def run_tests(args): |
| 47 | """Run all the test we have for dtoc |
| 48 | |
| 49 | Args: |
Simon Glass | dfe5f5b | 2018-07-06 10:27:32 -0600 | [diff] [blame] | 50 | 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 Glass | 3def0cf | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 52 | """ |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 53 | import test_dtoc |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 54 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 55 | result = unittest.TestResult() |
| 56 | sys.argv = [sys.argv[0]] |
Simon Glass | 3def0cf | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 57 | test_name = args and args[0] or None |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 58 | for module in (test_dtoc.TestDtoc,): |
Simon Glass | 3def0cf | 2018-07-06 10:27:20 -0600 | [diff] [blame] | 59 | 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 Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 66 | suite.run(result) |
| 67 | |
Simon Glass | 90a8132 | 2019-05-17 22:00:31 -0600 | [diff] [blame] | 68 | print(result) |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 69 | for _, err in result.errors: |
Simon Glass | 90a8132 | 2019-05-17 22:00:31 -0600 | [diff] [blame] | 70 | print(err) |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 71 | for _, err in result.failures: |
Simon Glass | 90a8132 | 2019-05-17 22:00:31 -0600 | [diff] [blame] | 72 | print(err) |
Simon Glass | 1000096 | 2019-07-20 12:23:23 -0600 | [diff] [blame] | 73 | if result.errors or result.failures: |
| 74 | print('dtoc tests FAILED') |
| 75 | return 1 |
| 76 | return 0 |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 77 | |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 78 | def RunTestCoverage(): |
| 79 | """Run the tests and check that we get 100% coverage""" |
| 80 | sys.argv = [sys.argv[0]] |
Simon Glass | 4d25fe2 | 2020-04-17 18:08:57 -0600 | [diff] [blame] | 81 | test_util.RunTestCoverage('tools/dtoc/dtoc', '/main.py', |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 82 | ['tools/patman/*.py', '*/fdt*', '*test*'], options.build_dir) |
| 83 | |
| 84 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 85 | if __name__ != '__main__': |
| 86 | sys.exit(1) |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 87 | |
| 88 | parser = OptionParser() |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 89 | parser.add_option('-B', '--build-dir', type='string', default='b', |
| 90 | help='Directory containing the build output') |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 91 | parser.add_option('-d', '--dtb-file', action='store', |
| 92 | help='Specify the .dtb input file') |
| 93 | parser.add_option('--include-disabled', action='store_true', |
| 94 | help='Include disabled nodes') |
| 95 | parser.add_option('-o', '--output', action='store', default='-', |
| 96 | help='Select output filename') |
Simon Glass | 11ae93e | 2018-10-01 21:12:47 -0600 | [diff] [blame] | 97 | parser.add_option('-P', '--processes', type=int, |
| 98 | help='set number of processes to use for running tests') |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 99 | parser.add_option('-t', '--test', action='store_true', dest='test', |
| 100 | default=False, help='run tests') |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 101 | parser.add_option('-T', '--test-coverage', action='store_true', |
| 102 | default=False, help='run tests and check for 100% coverage') |
Simon Glass | 69f2ed7 | 2016-07-04 11:58:09 -0600 | [diff] [blame] | 103 | (options, args) = parser.parse_args() |
| 104 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 105 | # Run our meagre tests |
| 106 | if options.test: |
Simon Glass | 1000096 | 2019-07-20 12:23:23 -0600 | [diff] [blame] | 107 | ret_code = run_tests(args) |
| 108 | sys.exit(ret_code) |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 109 | |
Simon Glass | ba76521 | 2018-07-06 10:27:33 -0600 | [diff] [blame] | 110 | elif options.test_coverage: |
| 111 | RunTestCoverage() |
| 112 | |
Simon Glass | c079192 | 2017-06-18 22:09:06 -0600 | [diff] [blame] | 113 | else: |
| 114 | dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled, |
| 115 | options.output) |