blob: 2d09649f7206f18560d13ce6c0af6ff1e57d6f9f [file] [log] [blame]
Simon Glassfa8974d2016-07-04 11:58:08 -06001#!/usr/bin/python
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glassfa8974d2016-07-04 11:58:08 -06003#
4# Copyright (C) 2016 Google, Inc
5# Written by Simon Glass <sjg@chromium.org>
6#
Simon Glassfa8974d2016-07-04 11:58:08 -06007
Simon Glassefc9bf62016-07-25 18:59:10 -06008import os
Simon Glassfa8974d2016-07-04 11:58:08 -06009import struct
Paul Burton307f1fa2016-09-27 16:03:57 +010010import sys
Simon Glassefc9bf62016-07-25 18:59:10 -060011import tempfile
12
13import command
14import tools
Simon Glassfa8974d2016-07-04 11:58:08 -060015
Simon Glassfa8974d2016-07-04 11:58:08 -060016def fdt32_to_cpu(val):
17 """Convert a device tree cell to an integer
18
19 Args:
20 Value to convert (4-character string representing the cell value)
21
22 Return:
23 A native-endian integer value
24 """
Paul Burton307f1fa2016-09-27 16:03:57 +010025 if sys.version_info > (3, 0):
George McCollister77bb05e2017-03-30 09:44:25 -050026 if isinstance(val, bytes):
27 val = val.decode('utf-8')
Paul Burton307f1fa2016-09-27 16:03:57 +010028 val = val.encode('raw_unicode_escape')
Simon Glass29462c32016-07-25 18:59:17 -060029 return struct.unpack('>I', val)[0]
Simon Glassefc9bf62016-07-25 18:59:10 -060030
Simon Glassfc3ae9c2017-08-29 14:15:48 -060031def fdt_cells_to_cpu(val, cells):
32 """Convert one or two cells to a long integer
33
34 Args:
35 Value to convert (array of one or more 4-character strings)
36
37 Return:
38 A native-endian long value
39 """
Simon Glass1b1fe412017-08-29 14:15:50 -060040 if not cells:
41 return 0
Simon Glassfc3ae9c2017-08-29 14:15:48 -060042 out = long(fdt32_to_cpu(val[0]))
43 if cells == 2:
44 out = out << 32 | fdt32_to_cpu(val[1])
45 return out
46
Simon Glassefc9bf62016-07-25 18:59:10 -060047def EnsureCompiled(fname):
48 """Compile an fdt .dts source file into a .dtb binary blob if needed.
49
50 Args:
51 fname: Filename (if .dts it will be compiled). It not it will be
52 left alone
53
54 Returns:
55 Filename of resulting .dtb file
56 """
57 _, ext = os.path.splitext(fname)
58 if ext != '.dts':
59 return fname
60
61 dts_input = tools.GetOutputFilename('source.dts')
62 dtb_output = tools.GetOutputFilename('source.dtb')
63
64 search_paths = [os.path.join(os.getcwd(), 'include')]
65 root, _ = os.path.splitext(fname)
66 args = ['-E', '-P', '-x', 'assembler-with-cpp', '-D__ASSEMBLY__']
67 args += ['-Ulinux']
68 for path in search_paths:
69 args.extend(['-I', path])
70 args += ['-o', dts_input, fname]
71 command.Run('cc', *args)
72
73 # If we don't have a directory, put it in the tools tempdir
74 search_list = []
75 for path in search_paths:
76 search_list.extend(['-i', path])
Simon Glassc5c7b1a2017-11-12 21:52:09 -070077 args = ['-I', 'dts', '-o', dtb_output, '-O', 'dtb',
78 '-W', 'no-unit_address_vs_reg']
Simon Glassefc9bf62016-07-25 18:59:10 -060079 args.extend(search_list)
80 args.append(dts_input)
Simon Glassade2ef62017-12-24 12:12:07 -070081 dtc = os.environ.get('DTC') or 'dtc'
82 command.Run(dtc, *args)
Simon Glassefc9bf62016-07-25 18:59:10 -060083 return dtb_output
Simon Glass4066b312016-07-25 18:59:18 -060084
85def GetInt(node, propname, default=None):
86 prop = node.props.get(propname)
87 if not prop:
88 return default
89 value = fdt32_to_cpu(prop.value)
90 if type(value) == type(list):
91 raise ValueError("Node '%s' property '%' has list value: expecting"
92 "a single integer" % (node.name, propname))
93 return value
94
95def GetString(node, propname, default=None):
96 prop = node.props.get(propname)
97 if not prop:
98 return default
99 value = prop.value
100 if type(value) == type(list):
101 raise ValueError("Node '%s' property '%' has list value: expecting"
102 "a single string" % (node.name, propname))
103 return value
104
105def GetBool(node, propname, default=False):
106 if propname in node.props:
107 return True
108 return default