blob: 2e6a4db8bc1b16480cbf2fe2bcfb5d2aaa1e722e [file] [log] [blame]
Masahiro Yamadac05e7912018-01-21 18:34:57 +09001#!/usr/bin/env python2
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
25see doc/driver-model/of-plat.txt
26"""
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'))
36
Simon Glassd570dec2017-06-18 22:08:58 -060037import dtb_platdata
Simon Glassbfad22e2016-07-04 11:58:09 -060038
Simon Glass70cd0d72018-07-06 10:27:20 -060039def run_tests(args):
40 """Run all the test we have for dtoc
41
42 Args:
Simon Glassc38fee042018-07-06 10:27:32 -060043 args: List of positional args provided to dtoc. This can hold a test
44 name to execute (as in 'dtoc -t test_empty_file', for example)
Simon Glass70cd0d72018-07-06 10:27:20 -060045 """
Simon Glass9d2eb922017-06-18 22:09:06 -060046 import test_dtoc
Simon Glassbfad22e2016-07-04 11:58:09 -060047
Simon Glass9d2eb922017-06-18 22:09:06 -060048 result = unittest.TestResult()
49 sys.argv = [sys.argv[0]]
Simon Glass70cd0d72018-07-06 10:27:20 -060050 test_name = args and args[0] or None
Simon Glass9d2eb922017-06-18 22:09:06 -060051 for module in (test_dtoc.TestDtoc,):
Simon Glass70cd0d72018-07-06 10:27:20 -060052 if test_name:
53 try:
54 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
55 except AttributeError:
56 continue
57 else:
58 suite = unittest.TestLoader().loadTestsFromTestCase(module)
Simon Glass9d2eb922017-06-18 22:09:06 -060059 suite.run(result)
60
61 print result
62 for _, err in result.errors:
63 print err
64 for _, err in result.failures:
65 print err
66
67if __name__ != '__main__':
68 sys.exit(1)
Simon Glassbfad22e2016-07-04 11:58:09 -060069
70parser = OptionParser()
71parser.add_option('-d', '--dtb-file', action='store',
72 help='Specify the .dtb input file')
73parser.add_option('--include-disabled', action='store_true',
74 help='Include disabled nodes')
75parser.add_option('-o', '--output', action='store', default='-',
76 help='Select output filename')
Simon Glass9d2eb922017-06-18 22:09:06 -060077parser.add_option('-t', '--test', action='store_true', dest='test',
78 default=False, help='run tests')
Simon Glassbfad22e2016-07-04 11:58:09 -060079(options, args) = parser.parse_args()
80
Simon Glass9d2eb922017-06-18 22:09:06 -060081# Run our meagre tests
82if options.test:
Simon Glass70cd0d72018-07-06 10:27:20 -060083 run_tests(args)
Simon Glass9d2eb922017-06-18 22:09:06 -060084
85else:
86 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled,
87 options.output)