2017-06-19 04:08:58 +00:00
|
|
|
#!/usr/bin/python
|
2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2017-06-19 04:08:58 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2017 Google, Inc
|
|
|
|
# Written by Simon Glass <sjg@chromium.org>
|
|
|
|
#
|
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
"""Device tree to platform data class
|
|
|
|
|
|
|
|
This supports converting device tree data to C structures definitions and
|
|
|
|
static data.
|
2020-11-09 03:36:21 +00:00
|
|
|
|
|
|
|
See doc/driver-model/of-plat.rst for more informaiton
|
2017-06-19 04:08:59 +00:00
|
|
|
"""
|
|
|
|
|
2017-08-29 20:15:55 +00:00
|
|
|
import collections
|
2017-06-19 04:08:58 +00:00
|
|
|
import copy
|
2020-12-29 03:34:51 +00:00
|
|
|
from enum import IntEnum
|
2020-07-03 11:07:17 +00:00
|
|
|
import os
|
|
|
|
import re
|
2017-06-19 04:08:59 +00:00
|
|
|
import sys
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2020-04-18 00:09:04 +00:00
|
|
|
from dtoc import fdt
|
|
|
|
from dtoc import fdt_util
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2020-11-09 03:36:21 +00:00
|
|
|
# When we see these properties we ignore them - i.e. do not create a structure
|
|
|
|
# member
|
2017-06-19 04:08:58 +00:00
|
|
|
PROP_IGNORE_LIST = [
|
|
|
|
'#address-cells',
|
|
|
|
'#gpio-cells',
|
|
|
|
'#size-cells',
|
|
|
|
'compatible',
|
|
|
|
'linux,phandle',
|
|
|
|
"status",
|
|
|
|
'phandle',
|
|
|
|
'u-boot,dm-pre-reloc',
|
|
|
|
'u-boot,dm-tpl',
|
|
|
|
'u-boot,dm-spl',
|
|
|
|
]
|
|
|
|
|
2020-11-09 03:36:17 +00:00
|
|
|
# C type declarations for the types we support
|
2017-06-19 04:08:58 +00:00
|
|
|
TYPE_NAMES = {
|
2020-11-09 03:36:17 +00:00
|
|
|
fdt.Type.INT: 'fdt32_t',
|
|
|
|
fdt.Type.BYTE: 'unsigned char',
|
|
|
|
fdt.Type.STRING: 'const char *',
|
|
|
|
fdt.Type.BOOL: 'bool',
|
|
|
|
fdt.Type.INT64: 'fdt64_t',
|
2017-06-19 04:08:59 +00:00
|
|
|
}
|
2017-06-19 04:08:58 +00:00
|
|
|
|
|
|
|
STRUCT_PREFIX = 'dtd_'
|
|
|
|
VAL_PREFIX = 'dtv_'
|
|
|
|
|
2020-12-29 03:34:51 +00:00
|
|
|
class Ftype(IntEnum):
|
|
|
|
SOURCE, HEADER = range(2)
|
|
|
|
|
|
|
|
|
|
|
|
# This holds information about each type of output file dtoc can create
|
|
|
|
# type: Type of file (Ftype)
|
2020-12-29 03:35:00 +00:00
|
|
|
# fname: Filename excluding directory, e.g. 'dt-plat.c'
|
|
|
|
# hdr_comment: Comment explaining the purpose of the file
|
|
|
|
OutputFile = collections.namedtuple('OutputFile',
|
2020-12-29 03:35:02 +00:00
|
|
|
['ftype', 'fname', 'method', 'hdr_comment'])
|
2020-12-29 03:34:51 +00:00
|
|
|
|
2017-08-29 20:15:55 +00:00
|
|
|
# This holds information about a property which includes phandles.
|
|
|
|
#
|
|
|
|
# max_args: integer: Maximum number or arguments that any phandle uses (int).
|
|
|
|
# args: Number of args for each phandle in the property. The total number of
|
|
|
|
# phandles is len(args). This is a list of integers.
|
|
|
|
PhandleInfo = collections.namedtuple('PhandleInfo', ['max_args', 'args'])
|
|
|
|
|
2020-10-03 15:25:19 +00:00
|
|
|
# Holds a single phandle link, allowing a C struct value to be assigned to point
|
|
|
|
# to a device
|
|
|
|
#
|
|
|
|
# var_node: C variable to assign (e.g. 'dtv_mmc.clocks[0].node')
|
|
|
|
# dev_name: Name of device to assign to (e.g. 'clock')
|
|
|
|
PhandleLink = collections.namedtuple('PhandleLink', ['var_node', 'dev_name'])
|
|
|
|
|
2017-08-29 20:15:55 +00:00
|
|
|
|
2020-12-23 15:11:23 +00:00
|
|
|
class Driver:
|
|
|
|
"""Information about a driver in U-Boot
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
name: Name of driver. For U_BOOT_DRIVER(x) this is 'x'
|
|
|
|
"""
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return self.name == other.name
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "Driver(name='%s')" % self.name
|
|
|
|
|
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def conv_name_to_c(name):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Convert a device-tree name to a C identifier
|
|
|
|
|
2017-06-19 04:09:04 +00:00
|
|
|
This uses multiple replace() calls instead of re.sub() since it is faster
|
|
|
|
(400ms for 1m calls versus 1000ms for the 're' version).
|
|
|
|
|
2017-06-19 04:08:58 +00:00
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
name (str): Name to convert
|
2017-06-19 04:08:58 +00:00
|
|
|
Return:
|
2020-11-09 03:36:21 +00:00
|
|
|
str: String containing the C version of this name
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2017-06-19 04:08:59 +00:00
|
|
|
new = name.replace('@', '_at_')
|
|
|
|
new = new.replace('-', '_')
|
|
|
|
new = new.replace(',', '_')
|
|
|
|
new = new.replace('.', '_')
|
|
|
|
return new
|
|
|
|
|
|
|
|
def tab_to(num_tabs, line):
|
|
|
|
"""Append tabs to a line of text to reach a tab stop.
|
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
num_tabs (int): Tab stop to obtain (0 = column 0, 1 = column 8, etc.)
|
|
|
|
line (str): Line of text to append to
|
2017-06-19 04:08:59 +00:00
|
|
|
|
|
|
|
Returns:
|
2020-11-09 03:36:21 +00:00
|
|
|
str: line with the correct number of tabs appeneded. If the line already
|
2017-06-19 04:08:59 +00:00
|
|
|
extends past that tab stop then a single space is appended.
|
|
|
|
"""
|
|
|
|
if len(line) >= num_tabs * 8:
|
|
|
|
return line + ' '
|
|
|
|
return line + '\t' * (num_tabs - len(line) // 8)
|
|
|
|
|
2017-06-19 04:09:02 +00:00
|
|
|
def get_value(ftype, value):
|
|
|
|
"""Get a value as a C expression
|
|
|
|
|
|
|
|
For integers this returns a byte-swapped (little-endian) hex string
|
|
|
|
For bytes this returns a hex string, e.g. 0x12
|
|
|
|
For strings this returns a literal string enclosed in quotes
|
|
|
|
For booleans this return 'true'
|
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
ftype (fdt.Type): Data type (fdt_util)
|
|
|
|
value (bytes): Data value, as a string of bytes
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: String representation of the value
|
2017-06-19 04:09:02 +00:00
|
|
|
"""
|
2020-11-09 03:36:17 +00:00
|
|
|
if ftype == fdt.Type.INT:
|
2020-12-23 15:11:19 +00:00
|
|
|
val = '%#x' % fdt_util.fdt32_to_cpu(value)
|
2020-11-09 03:36:17 +00:00
|
|
|
elif ftype == fdt.Type.BYTE:
|
2020-12-03 23:55:16 +00:00
|
|
|
char = value[0]
|
2020-12-23 15:11:19 +00:00
|
|
|
val = '%#x' % (ord(char) if isinstance(char, str) else char)
|
2020-11-09 03:36:17 +00:00
|
|
|
elif ftype == fdt.Type.STRING:
|
2020-07-08 03:32:06 +00:00
|
|
|
# Handle evil ACPI backslashes by adding another backslash before them.
|
|
|
|
# So "\\_SB.GPO0" in the device tree effectively stays like that in C
|
2020-12-23 15:11:19 +00:00
|
|
|
val = '"%s"' % value.replace('\\', '\\\\')
|
2020-11-09 03:36:17 +00:00
|
|
|
elif ftype == fdt.Type.BOOL:
|
2020-12-23 15:11:19 +00:00
|
|
|
val = 'true'
|
2020-11-09 03:36:21 +00:00
|
|
|
else: # ftype == fdt.Type.INT64:
|
2020-12-23 15:11:19 +00:00
|
|
|
val = '%#x' % value
|
|
|
|
return val
|
2017-06-19 04:09:02 +00:00
|
|
|
|
|
|
|
def get_compat_name(node):
|
2020-07-23 03:22:03 +00:00
|
|
|
"""Get the node's list of compatible string as a C identifiers
|
2017-06-19 04:09:02 +00:00
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
node (fdt.Node): Node object to check
|
2017-06-19 04:09:02 +00:00
|
|
|
Return:
|
2020-12-23 15:11:19 +00:00
|
|
|
list of str: List of C identifiers for all the compatible strings
|
2017-06-19 04:09:02 +00:00
|
|
|
"""
|
|
|
|
compat = node.props['compatible'].value
|
2020-07-23 03:22:03 +00:00
|
|
|
if not isinstance(compat, list):
|
|
|
|
compat = [compat]
|
|
|
|
return [conv_name_to_c(c) for c in compat]
|
2017-06-19 04:09:02 +00:00
|
|
|
|
|
|
|
|
2020-12-23 15:11:19 +00:00
|
|
|
class DtbPlatdata():
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Provide a means to convert device tree binary data to platform data
|
|
|
|
|
|
|
|
The output of this process is C structures which can be used in space-
|
|
|
|
constrained encvironments where the ~3KB code overhead of device tree
|
|
|
|
code is not affordable.
|
|
|
|
|
|
|
|
Properties:
|
2017-06-19 04:08:59 +00:00
|
|
|
_fdt: Fdt object, referencing the device tree
|
2017-06-19 04:08:58 +00:00
|
|
|
_dtb_fname: Filename of the input device tree binary file
|
2020-10-03 17:31:25 +00:00
|
|
|
_valid_nodes: A list of Node object with compatible strings. The list
|
|
|
|
is ordered by conv_name_to_c(node.name)
|
2017-06-19 04:09:01 +00:00
|
|
|
_include_disabled: true to include nodes marked status = "disabled"
|
2017-06-19 04:08:58 +00:00
|
|
|
_outfile: The current output file (sys.stdout or a real file)
|
2020-06-25 04:10:08 +00:00
|
|
|
_warning_disabled: true to disable warnings about driver names not found
|
2017-06-19 04:08:58 +00:00
|
|
|
_lines: Stashed list of output lines for outputting in the future
|
2020-12-23 15:11:23 +00:00
|
|
|
_drivers: Dict of valid driver names found in drivers/
|
|
|
|
key: Driver name
|
|
|
|
value: Driver for that driver
|
2020-07-03 11:07:17 +00:00
|
|
|
_driver_aliases: Dict that holds aliases for driver names
|
|
|
|
key: Driver alias declared with
|
2020-12-29 03:34:57 +00:00
|
|
|
DM_DRIVER_ALIAS(driver_alias, driver_name)
|
2020-07-03 11:07:17 +00:00
|
|
|
value: Driver name declared with U_BOOT_DRIVER(driver_name)
|
2020-07-28 22:06:23 +00:00
|
|
|
_drivers_additional: List of additional drivers to use during scanning
|
2020-12-29 03:34:51 +00:00
|
|
|
_dirname: Directory to hold output files, or None for none (all files
|
|
|
|
go to stdout)
|
2020-12-29 03:35:02 +00:00
|
|
|
_struct_data (dict): OrderedDict of dtplat structures to output
|
|
|
|
key (str): Node name, as a C identifier
|
|
|
|
value: dict containing structure fields:
|
|
|
|
key (str): Field name
|
|
|
|
value: Prop object with field information
|
2020-12-29 03:35:03 +00:00
|
|
|
_basedir (str): Base directory of source tree
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2020-07-28 22:06:23 +00:00
|
|
|
def __init__(self, dtb_fname, include_disabled, warning_disabled,
|
2020-12-03 23:55:16 +00:00
|
|
|
drivers_additional=None):
|
2017-06-19 04:08:59 +00:00
|
|
|
self._fdt = None
|
2017-06-19 04:08:58 +00:00
|
|
|
self._dtb_fname = dtb_fname
|
|
|
|
self._valid_nodes = None
|
2017-06-19 04:09:01 +00:00
|
|
|
self._include_disabled = include_disabled
|
2017-06-19 04:08:58 +00:00
|
|
|
self._outfile = None
|
2020-06-25 04:10:08 +00:00
|
|
|
self._warning_disabled = warning_disabled
|
2017-06-19 04:08:58 +00:00
|
|
|
self._lines = []
|
2020-12-23 15:11:23 +00:00
|
|
|
self._drivers = {}
|
2020-07-03 11:07:17 +00:00
|
|
|
self._driver_aliases = {}
|
2020-12-03 23:55:16 +00:00
|
|
|
self._drivers_additional = drivers_additional or []
|
2020-12-29 03:34:51 +00:00
|
|
|
self._dirnames = [None] * len(Ftype)
|
2020-12-29 03:35:02 +00:00
|
|
|
self._struct_data = collections.OrderedDict()
|
2020-12-29 03:35:03 +00:00
|
|
|
self._basedir = None
|
2020-07-03 11:07:17 +00:00
|
|
|
|
|
|
|
def get_normalized_compat_name(self, node):
|
|
|
|
"""Get a node's normalized compat name
|
|
|
|
|
2020-07-23 03:22:03 +00:00
|
|
|
Returns a valid driver name by retrieving node's list of compatible
|
2020-07-03 11:07:17 +00:00
|
|
|
string as a C identifier and performing a check against _drivers
|
|
|
|
and a lookup in driver_aliases printing a warning in case of failure.
|
|
|
|
|
|
|
|
Args:
|
2020-12-23 15:11:19 +00:00
|
|
|
node (Node): Node object to check
|
2020-07-03 11:07:17 +00:00
|
|
|
Return:
|
|
|
|
Tuple:
|
|
|
|
Driver name associated with the first compatible string
|
|
|
|
List of C identifiers for all the other compatible strings
|
|
|
|
(possibly empty)
|
|
|
|
In case of no match found, the return will be the same as
|
|
|
|
get_compat_name()
|
|
|
|
"""
|
2020-07-23 03:22:03 +00:00
|
|
|
compat_list_c = get_compat_name(node)
|
|
|
|
|
|
|
|
for compat_c in compat_list_c:
|
2020-12-23 15:11:23 +00:00
|
|
|
if not compat_c in self._drivers.keys():
|
2020-07-23 03:22:03 +00:00
|
|
|
compat_c = self._driver_aliases.get(compat_c)
|
|
|
|
if not compat_c:
|
|
|
|
continue
|
|
|
|
|
|
|
|
aliases_c = compat_list_c
|
|
|
|
if compat_c in aliases_c:
|
|
|
|
aliases_c.remove(compat_c)
|
|
|
|
return compat_c, aliases_c
|
|
|
|
|
|
|
|
if not self._warning_disabled:
|
|
|
|
print('WARNING: the driver %s was not found in the driver list'
|
|
|
|
% (compat_list_c[0]))
|
|
|
|
|
|
|
|
return compat_list_c[0], compat_list_c[1:]
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2020-12-29 03:34:51 +00:00
|
|
|
def setup_output_dirs(self, output_dirs):
|
|
|
|
"""Set up the output directories
|
|
|
|
|
|
|
|
This should be done before setup_output() is called
|
|
|
|
|
|
|
|
Args:
|
|
|
|
output_dirs (tuple of str):
|
|
|
|
Directory to use for C output files.
|
|
|
|
Use None to write files relative current directory
|
|
|
|
Directory to use for H output files.
|
|
|
|
Defaults to the C output dir
|
|
|
|
"""
|
|
|
|
def process_dir(ftype, dirname):
|
|
|
|
if dirname:
|
|
|
|
os.makedirs(dirname, exist_ok=True)
|
|
|
|
self._dirnames[ftype] = dirname
|
|
|
|
|
|
|
|
if output_dirs:
|
|
|
|
c_dirname = output_dirs[0]
|
|
|
|
h_dirname = output_dirs[1] if len(output_dirs) > 1 else c_dirname
|
|
|
|
process_dir(Ftype.SOURCE, c_dirname)
|
|
|
|
process_dir(Ftype.HEADER, h_dirname)
|
|
|
|
|
|
|
|
def setup_output(self, ftype, fname):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Set up the output destination
|
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
Once this is done, future calls to self.out() will output to this
|
2020-12-29 03:34:51 +00:00
|
|
|
file. The file used is as follows:
|
|
|
|
|
|
|
|
self._dirnames[ftype] is None: output to fname, or stdout if None
|
|
|
|
self._dirnames[ftype] is not None: output to fname in that directory
|
|
|
|
|
|
|
|
Calling this function multiple times will close the old file and open
|
|
|
|
the new one. If they are the same file, nothing happens and output will
|
|
|
|
continue to the same file.
|
2017-06-19 04:08:58 +00:00
|
|
|
|
|
|
|
Args:
|
2020-12-29 03:34:51 +00:00
|
|
|
ftype (str): Type of file to create ('c' or 'h')
|
|
|
|
fname (str): Filename to send output to. If there is a directory in
|
|
|
|
self._dirnames for this file type, it will be put in that
|
|
|
|
directory
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2020-12-29 03:34:51 +00:00
|
|
|
dirname = self._dirnames[ftype]
|
|
|
|
if dirname:
|
|
|
|
pathname = os.path.join(dirname, fname)
|
|
|
|
if self._outfile:
|
|
|
|
self._outfile.close()
|
|
|
|
self._outfile = open(pathname, 'w')
|
|
|
|
elif fname:
|
|
|
|
if not self._outfile:
|
|
|
|
self._outfile = open(fname, 'w')
|
2020-12-29 03:34:48 +00:00
|
|
|
else:
|
|
|
|
self._outfile = sys.stdout
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2020-12-29 03:34:51 +00:00
|
|
|
def finish_output(self):
|
|
|
|
"""Finish outputing to a file
|
|
|
|
|
|
|
|
This closes the output file, if one is in use
|
|
|
|
"""
|
|
|
|
if self._outfile != sys.stdout:
|
|
|
|
self._outfile.close()
|
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def out(self, line):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Output a string to the output file
|
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
line (str): String to output
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2017-06-19 04:08:59 +00:00
|
|
|
self._outfile.write(line)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def buf(self, line):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Buffer up a string to send later
|
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
line (str): String to add to our 'buffer' list
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2017-06-19 04:08:59 +00:00
|
|
|
self._lines.append(line)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def get_buf(self):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Get the contents of the output buffer, and clear it
|
|
|
|
|
|
|
|
Returns:
|
2020-11-09 03:36:21 +00:00
|
|
|
list(str): The output buffer, which is then cleared for future use
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
|
|
|
lines = self._lines
|
|
|
|
self._lines = []
|
|
|
|
return lines
|
|
|
|
|
2020-12-29 03:35:00 +00:00
|
|
|
def out_header(self, outfile):
|
|
|
|
"""Output a message indicating that this is an auto-generated file
|
|
|
|
|
|
|
|
Args:
|
|
|
|
outfile: OutputFile describing the file being generated
|
|
|
|
"""
|
2017-08-29 20:16:01 +00:00
|
|
|
self.out('''/*
|
|
|
|
* DO NOT MODIFY
|
|
|
|
*
|
2020-12-29 03:35:00 +00:00
|
|
|
* %s.
|
|
|
|
* This was generated by dtoc from a .dtb (device tree binary) file.
|
2017-08-29 20:16:01 +00:00
|
|
|
*/
|
|
|
|
|
2020-12-29 03:35:00 +00:00
|
|
|
''' % outfile.hdr_comment)
|
2017-08-29 20:16:01 +00:00
|
|
|
|
2017-08-29 20:15:55 +00:00
|
|
|
def get_phandle_argc(self, prop, node_name):
|
|
|
|
"""Check if a node contains phandles
|
2017-08-29 20:15:54 +00:00
|
|
|
|
2017-08-29 20:15:55 +00:00
|
|
|
We have no reliable way of detecting whether a node uses a phandle
|
|
|
|
or not. As an interim measure, use a list of known property names.
|
2017-08-29 20:15:54 +00:00
|
|
|
|
2017-08-29 20:15:55 +00:00
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
prop (fdt.Prop): Prop object to check
|
|
|
|
node_name (str): Node name, only used for raising an error
|
|
|
|
Returns:
|
|
|
|
int or None: Number of argument cells is this is a phandle,
|
|
|
|
else None
|
|
|
|
Raises:
|
|
|
|
ValueError: if the phandle cannot be parsed or the required property
|
|
|
|
is not present
|
2017-08-29 20:15:55 +00:00
|
|
|
"""
|
2020-06-25 04:10:16 +00:00
|
|
|
if prop.name in ['clocks', 'cd-gpios']:
|
2018-07-06 16:27:31 +00:00
|
|
|
if not isinstance(prop.value, list):
|
|
|
|
prop.value = [prop.value]
|
2017-08-29 20:15:55 +00:00
|
|
|
val = prop.value
|
|
|
|
i = 0
|
|
|
|
|
|
|
|
max_args = 0
|
|
|
|
args = []
|
|
|
|
while i < len(val):
|
|
|
|
phandle = fdt_util.fdt32_to_cpu(val[i])
|
2018-07-06 16:27:31 +00:00
|
|
|
# If we get to the end of the list, stop. This can happen
|
|
|
|
# since some nodes have more phandles in the list than others,
|
|
|
|
# but we allocate enough space for the largest list. So those
|
|
|
|
# nodes with shorter lists end up with zeroes at the end.
|
|
|
|
if not phandle:
|
|
|
|
break
|
2017-08-29 20:15:55 +00:00
|
|
|
target = self._fdt.phandle_to_node.get(phandle)
|
|
|
|
if not target:
|
|
|
|
raise ValueError("Cannot parse '%s' in node '%s'" %
|
|
|
|
(prop.name, node_name))
|
2020-06-25 04:10:16 +00:00
|
|
|
cells = None
|
|
|
|
for prop_name in ['#clock-cells', '#gpio-cells']:
|
|
|
|
cells = target.props.get(prop_name)
|
|
|
|
if cells:
|
|
|
|
break
|
2017-08-29 20:15:55 +00:00
|
|
|
if not cells:
|
2020-06-25 04:10:16 +00:00
|
|
|
raise ValueError("Node '%s' has no cells property" %
|
2020-11-09 03:36:21 +00:00
|
|
|
(target.name))
|
2017-08-29 20:15:55 +00:00
|
|
|
num_args = fdt_util.fdt32_to_cpu(cells.value)
|
|
|
|
max_args = max(max_args, num_args)
|
|
|
|
args.append(num_args)
|
|
|
|
i += 1 + num_args
|
|
|
|
return PhandleInfo(max_args, args)
|
|
|
|
return None
|
2017-08-29 20:15:54 +00:00
|
|
|
|
2020-12-03 23:55:16 +00:00
|
|
|
def scan_driver(self, fname):
|
2020-07-03 11:07:17 +00:00
|
|
|
"""Scan a driver file to build a list of driver names and aliases
|
|
|
|
|
|
|
|
This procedure will populate self._drivers and self._driver_aliases
|
|
|
|
|
|
|
|
Args
|
2020-12-03 23:55:16 +00:00
|
|
|
fname: Driver filename to scan
|
2020-07-03 11:07:17 +00:00
|
|
|
"""
|
2020-12-03 23:55:16 +00:00
|
|
|
with open(fname, encoding='utf-8') as inf:
|
2020-07-03 11:07:17 +00:00
|
|
|
try:
|
2020-12-03 23:55:16 +00:00
|
|
|
buff = inf.read()
|
2020-07-03 11:07:17 +00:00
|
|
|
except UnicodeDecodeError:
|
|
|
|
# This seems to happen on older Python versions
|
2020-12-03 23:55:16 +00:00
|
|
|
print("Skipping file '%s' due to unicode error" % fname)
|
2020-07-03 11:07:17 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
# The following re will search for driver names declared as
|
|
|
|
# U_BOOT_DRIVER(driver_name)
|
2020-12-23 15:11:19 +00:00
|
|
|
drivers = re.findall(r'U_BOOT_DRIVER\((.*)\)', buff)
|
2020-07-03 11:07:17 +00:00
|
|
|
|
|
|
|
for driver in drivers:
|
2020-12-23 15:11:23 +00:00
|
|
|
self._drivers[driver] = Driver(driver)
|
2020-07-03 11:07:17 +00:00
|
|
|
|
|
|
|
# The following re will search for driver aliases declared as
|
2020-12-29 03:34:57 +00:00
|
|
|
# DM_DRIVER_ALIAS(alias, driver_name)
|
2020-12-03 23:55:16 +00:00
|
|
|
driver_aliases = re.findall(
|
2020-12-29 03:34:57 +00:00
|
|
|
r'DM_DRIVER_ALIAS\(\s*(\w+)\s*,\s*(\w+)\s*\)',
|
2020-12-03 23:55:16 +00:00
|
|
|
buff)
|
2020-07-03 11:07:17 +00:00
|
|
|
|
|
|
|
for alias in driver_aliases: # pragma: no cover
|
|
|
|
if len(alias) != 2:
|
|
|
|
continue
|
|
|
|
self._driver_aliases[alias[1]] = alias[0]
|
|
|
|
|
2020-12-29 03:35:03 +00:00
|
|
|
def scan_drivers(self, basedir=None):
|
2020-07-03 11:07:17 +00:00
|
|
|
"""Scan the driver folders to build a list of driver names and aliases
|
|
|
|
|
|
|
|
This procedure will populate self._drivers and self._driver_aliases
|
|
|
|
|
|
|
|
"""
|
2020-12-29 03:35:03 +00:00
|
|
|
if not basedir:
|
|
|
|
basedir = sys.argv[0].replace('tools/dtoc/dtoc', '')
|
|
|
|
if basedir == '':
|
|
|
|
basedir = './'
|
|
|
|
self._basedir = basedir
|
2020-12-03 23:55:16 +00:00
|
|
|
for (dirpath, _, filenames) in os.walk(basedir):
|
|
|
|
for fname in filenames:
|
|
|
|
if not fname.endswith('.c'):
|
2020-07-03 11:07:17 +00:00
|
|
|
continue
|
2020-12-03 23:55:16 +00:00
|
|
|
self.scan_driver(dirpath + '/' + fname)
|
2020-07-03 11:07:17 +00:00
|
|
|
|
2020-12-03 23:55:16 +00:00
|
|
|
for fname in self._drivers_additional:
|
|
|
|
if not isinstance(fname, str) or len(fname) == 0:
|
2020-07-28 22:06:23 +00:00
|
|
|
continue
|
2020-12-03 23:55:16 +00:00
|
|
|
if fname[0] == '/':
|
|
|
|
self.scan_driver(fname)
|
2020-07-28 22:06:23 +00:00
|
|
|
else:
|
2020-12-03 23:55:16 +00:00
|
|
|
self.scan_driver(basedir + '/' + fname)
|
2020-07-28 22:06:23 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def scan_dtb(self):
|
2017-08-18 15:58:51 +00:00
|
|
|
"""Scan the device tree to obtain a tree of nodes and properties
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
Once this is done, self._fdt.GetRoot() can be called to obtain the
|
2017-06-19 04:08:58 +00:00
|
|
|
device tree root node, and progress from there.
|
|
|
|
"""
|
2017-06-19 04:08:59 +00:00
|
|
|
self._fdt = fdt.FdtScan(self._dtb_fname)
|
|
|
|
|
2020-10-03 17:31:25 +00:00
|
|
|
def scan_node(self, root, valid_nodes):
|
2017-06-19 04:08:59 +00:00
|
|
|
"""Scan a node and subnodes to build a tree of node and phandle info
|
|
|
|
|
2017-08-29 20:15:53 +00:00
|
|
|
This adds each node to self._valid_nodes.
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
Args:
|
2020-12-23 15:11:19 +00:00
|
|
|
root (Node): Root node for scan
|
|
|
|
valid_nodes (list of Node): List of Node objects to add to
|
2017-06-19 04:08:59 +00:00
|
|
|
"""
|
2017-06-19 04:08:58 +00:00
|
|
|
for node in root.subnodes:
|
|
|
|
if 'compatible' in node.props:
|
|
|
|
status = node.props.get('status')
|
2017-06-19 04:09:01 +00:00
|
|
|
if (not self._include_disabled and not status or
|
2017-06-19 04:08:59 +00:00
|
|
|
status.value != 'disabled'):
|
2020-10-03 17:31:25 +00:00
|
|
|
valid_nodes.append(node)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
|
|
|
# recurse to handle any subnodes
|
2020-10-03 17:31:25 +00:00
|
|
|
self.scan_node(node, valid_nodes)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def scan_tree(self):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Scan the device tree for useful information
|
|
|
|
|
|
|
|
This fills in the following properties:
|
|
|
|
_valid_nodes: A list of nodes we wish to consider include in the
|
|
|
|
platform data
|
|
|
|
"""
|
2020-10-03 17:31:25 +00:00
|
|
|
valid_nodes = []
|
|
|
|
self.scan_node(self._fdt.GetRoot(), valid_nodes)
|
|
|
|
self._valid_nodes = sorted(valid_nodes,
|
|
|
|
key=lambda x: conv_name_to_c(x.name))
|
|
|
|
for idx, node in enumerate(self._valid_nodes):
|
|
|
|
node.idx = idx
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-08-29 20:15:50 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_num_cells(node):
|
|
|
|
"""Get the number of cells in addresses and sizes for this node
|
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
node (fdt.None): Node to check
|
2017-08-29 20:15:50 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
Tuple:
|
|
|
|
Number of address cells for this node
|
|
|
|
Number of size cells for this node
|
|
|
|
"""
|
|
|
|
parent = node.parent
|
2020-12-03 23:55:16 +00:00
|
|
|
num_addr, num_size = 2, 2
|
2017-08-29 20:15:50 +00:00
|
|
|
if parent:
|
2020-12-03 23:55:16 +00:00
|
|
|
addr_prop = parent.props.get('#address-cells')
|
|
|
|
size_prop = parent.props.get('#size-cells')
|
|
|
|
if addr_prop:
|
|
|
|
num_addr = fdt_util.fdt32_to_cpu(addr_prop.value)
|
|
|
|
if size_prop:
|
|
|
|
num_size = fdt_util.fdt32_to_cpu(size_prop.value)
|
|
|
|
return num_addr, num_size
|
2017-08-29 20:15:50 +00:00
|
|
|
|
|
|
|
def scan_reg_sizes(self):
|
|
|
|
"""Scan for 64-bit 'reg' properties and update the values
|
|
|
|
|
|
|
|
This finds 'reg' properties with 64-bit data and converts the value to
|
|
|
|
an array of 64-values. This allows it to be output in a way that the
|
|
|
|
C code can read.
|
|
|
|
"""
|
|
|
|
for node in self._valid_nodes:
|
|
|
|
reg = node.props.get('reg')
|
|
|
|
if not reg:
|
|
|
|
continue
|
2020-12-03 23:55:16 +00:00
|
|
|
num_addr, num_size = self.get_num_cells(node)
|
|
|
|
total = num_addr + num_size
|
2017-08-29 20:15:50 +00:00
|
|
|
|
2020-11-09 03:36:17 +00:00
|
|
|
if reg.type != fdt.Type.INT:
|
2018-07-06 16:27:32 +00:00
|
|
|
raise ValueError("Node '%s' reg property is not an int" %
|
|
|
|
node.name)
|
2017-08-29 20:15:50 +00:00
|
|
|
if len(reg.value) % total:
|
2020-11-09 03:36:21 +00:00
|
|
|
raise ValueError(
|
|
|
|
"Node '%s' reg property has %d cells "
|
|
|
|
'which is not a multiple of na + ns = %d + %d)' %
|
2020-12-03 23:55:16 +00:00
|
|
|
(node.name, len(reg.value), num_addr, num_size))
|
|
|
|
reg.num_addr = num_addr
|
|
|
|
reg.num_size = num_size
|
|
|
|
if num_addr != 1 or num_size != 1:
|
2020-11-09 03:36:17 +00:00
|
|
|
reg.type = fdt.Type.INT64
|
2017-08-29 20:15:50 +00:00
|
|
|
i = 0
|
|
|
|
new_value = []
|
|
|
|
val = reg.value
|
|
|
|
if not isinstance(val, list):
|
|
|
|
val = [val]
|
|
|
|
while i < len(val):
|
2020-12-03 23:55:16 +00:00
|
|
|
addr = fdt_util.fdt_cells_to_cpu(val[i:], reg.num_addr)
|
|
|
|
i += num_addr
|
|
|
|
size = fdt_util.fdt_cells_to_cpu(val[i:], reg.num_size)
|
|
|
|
i += num_size
|
2017-08-29 20:15:50 +00:00
|
|
|
new_value += [addr, size]
|
|
|
|
reg.value = new_value
|
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def scan_structs(self):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Scan the device tree building up the C structures we will use.
|
|
|
|
|
|
|
|
Build a dict keyed by C struct name containing a dict of Prop
|
|
|
|
object for each struct field (keyed by property name). Where the
|
|
|
|
same struct appears multiple times, try to use the 'widest'
|
|
|
|
property, i.e. the one with a type which can express all others.
|
|
|
|
|
|
|
|
Once the widest property is determined, all other properties are
|
|
|
|
updated to match that width.
|
2020-10-03 17:31:24 +00:00
|
|
|
|
2020-12-29 03:35:02 +00:00
|
|
|
The results are written to self._struct_data
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2020-12-29 03:35:02 +00:00
|
|
|
structs = self._struct_data
|
2017-06-19 04:08:58 +00:00
|
|
|
for node in self._valid_nodes:
|
2020-07-03 11:07:17 +00:00
|
|
|
node_name, _ = self.get_normalized_compat_name(node)
|
2017-06-19 04:08:58 +00:00
|
|
|
fields = {}
|
|
|
|
|
|
|
|
# Get a list of all the valid properties in this node.
|
|
|
|
for name, prop in node.props.items():
|
|
|
|
if name not in PROP_IGNORE_LIST and name[0] != '#':
|
|
|
|
fields[name] = copy.deepcopy(prop)
|
|
|
|
|
|
|
|
# If we've seen this node_name before, update the existing struct.
|
|
|
|
if node_name in structs:
|
|
|
|
struct = structs[node_name]
|
|
|
|
for name, prop in fields.items():
|
|
|
|
oldprop = struct.get(name)
|
|
|
|
if oldprop:
|
|
|
|
oldprop.Widen(prop)
|
|
|
|
else:
|
|
|
|
struct[name] = prop
|
|
|
|
|
|
|
|
# Otherwise store this as a new struct.
|
|
|
|
else:
|
|
|
|
structs[node_name] = fields
|
|
|
|
|
|
|
|
for node in self._valid_nodes:
|
2020-07-03 11:07:17 +00:00
|
|
|
node_name, _ = self.get_normalized_compat_name(node)
|
2017-06-19 04:08:58 +00:00
|
|
|
struct = structs[node_name]
|
|
|
|
for name, prop in node.props.items():
|
|
|
|
if name not in PROP_IGNORE_LIST and name[0] != '#':
|
|
|
|
prop.Widen(struct[name])
|
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def scan_phandles(self):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Figure out what phandles each node uses
|
|
|
|
|
|
|
|
We need to be careful when outputing nodes that use phandles since
|
|
|
|
they must come after the declaration of the phandles in the C file.
|
|
|
|
Otherwise we get a compiler error since the phandle struct is not yet
|
|
|
|
declared.
|
|
|
|
|
|
|
|
This function adds to each node a list of phandle nodes that the node
|
|
|
|
depends on. This allows us to output things in the right order.
|
|
|
|
"""
|
|
|
|
for node in self._valid_nodes:
|
|
|
|
node.phandles = set()
|
|
|
|
for pname, prop in node.props.items():
|
|
|
|
if pname in PROP_IGNORE_LIST or pname[0] == '#':
|
|
|
|
continue
|
2017-08-29 20:15:55 +00:00
|
|
|
info = self.get_phandle_argc(prop, node.name)
|
|
|
|
if info:
|
|
|
|
# Process the list as pairs of (phandle, id)
|
2017-08-29 20:15:59 +00:00
|
|
|
pos = 0
|
|
|
|
for args in info.args:
|
|
|
|
phandle_cell = prop.value[pos]
|
2017-08-29 20:15:55 +00:00
|
|
|
phandle = fdt_util.fdt32_to_cpu(phandle_cell)
|
|
|
|
target_node = self._fdt.phandle_to_node[phandle]
|
|
|
|
node.phandles.add(target_node)
|
2017-08-29 20:15:59 +00:00
|
|
|
pos += 1 + args
|
2017-06-19 04:08:58 +00:00
|
|
|
|
|
|
|
|
2020-12-29 03:35:02 +00:00
|
|
|
def generate_structs(self):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Generate struct defintions for the platform data
|
|
|
|
|
|
|
|
This writes out the body of a header file consisting of structure
|
|
|
|
definitions for node in self._valid_nodes. See the documentation in
|
2020-02-25 20:35:39 +00:00
|
|
|
doc/driver-model/of-plat.rst for more information.
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2020-12-29 03:35:02 +00:00
|
|
|
structs = self._struct_data
|
2017-06-19 04:08:59 +00:00
|
|
|
self.out('#include <stdbool.h>\n')
|
2018-03-04 16:20:11 +00:00
|
|
|
self.out('#include <linux/libfdt.h>\n')
|
2017-06-19 04:08:58 +00:00
|
|
|
|
|
|
|
# Output the struct definition
|
|
|
|
for name in sorted(structs):
|
2017-06-19 04:08:59 +00:00
|
|
|
self.out('struct %s%s {\n' % (STRUCT_PREFIX, name))
|
2017-06-19 04:08:58 +00:00
|
|
|
for pname in sorted(structs[name]):
|
|
|
|
prop = structs[name][pname]
|
2017-08-29 20:15:55 +00:00
|
|
|
info = self.get_phandle_argc(prop, structs[name])
|
|
|
|
if info:
|
2017-06-19 04:08:58 +00:00
|
|
|
# For phandles, include a reference to the target
|
2017-08-29 20:15:56 +00:00
|
|
|
struct_name = 'struct phandle_%d_arg' % info.max_args
|
|
|
|
self.out('\t%s%s[%d]' % (tab_to(2, struct_name),
|
2017-06-19 04:08:59 +00:00
|
|
|
conv_name_to_c(prop.name),
|
2017-08-29 20:15:59 +00:00
|
|
|
len(info.args)))
|
2017-06-19 04:08:58 +00:00
|
|
|
else:
|
|
|
|
ptype = TYPE_NAMES[prop.type]
|
2017-06-19 04:08:59 +00:00
|
|
|
self.out('\t%s%s' % (tab_to(2, ptype),
|
|
|
|
conv_name_to_c(prop.name)))
|
|
|
|
if isinstance(prop.value, list):
|
|
|
|
self.out('[%d]' % len(prop.value))
|
|
|
|
self.out(';\n')
|
|
|
|
self.out('};\n')
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2020-12-23 15:11:20 +00:00
|
|
|
def _output_list(self, node, prop):
|
|
|
|
"""Output the C code for a devicetree property that holds a list
|
|
|
|
|
|
|
|
Args:
|
|
|
|
node (fdt.Node): Node to output
|
|
|
|
prop (fdt.Prop): Prop to output
|
|
|
|
"""
|
|
|
|
self.buf('{')
|
|
|
|
vals = []
|
|
|
|
# For phandles, output a reference to the platform data
|
|
|
|
# of the target node.
|
|
|
|
info = self.get_phandle_argc(prop, node.name)
|
|
|
|
if info:
|
|
|
|
# Process the list as pairs of (phandle, id)
|
|
|
|
pos = 0
|
|
|
|
for args in info.args:
|
|
|
|
phandle_cell = prop.value[pos]
|
|
|
|
phandle = fdt_util.fdt32_to_cpu(phandle_cell)
|
|
|
|
target_node = self._fdt.phandle_to_node[phandle]
|
|
|
|
arg_values = []
|
|
|
|
for i in range(args):
|
|
|
|
arg_values.append(
|
|
|
|
str(fdt_util.fdt32_to_cpu(prop.value[pos + 1 + i])))
|
|
|
|
pos += 1 + args
|
|
|
|
vals.append('\t{%d, {%s}}' % (target_node.idx,
|
|
|
|
', '.join(arg_values)))
|
|
|
|
for val in vals:
|
|
|
|
self.buf('\n\t\t%s,' % val)
|
|
|
|
else:
|
|
|
|
for val in prop.value:
|
|
|
|
vals.append(get_value(prop.type, val))
|
|
|
|
|
|
|
|
# Put 8 values per line to avoid very long lines.
|
|
|
|
for i in range(0, len(vals), 8):
|
|
|
|
if i:
|
|
|
|
self.buf(',\n\t\t')
|
|
|
|
self.buf(', '.join(vals[i:i + 8]))
|
|
|
|
self.buf('}')
|
|
|
|
|
2020-12-23 15:11:21 +00:00
|
|
|
def _declare_device(self, var_name, struct_name, node_parent):
|
|
|
|
"""Add a device declaration to the output
|
|
|
|
|
2020-12-29 03:34:54 +00:00
|
|
|
This declares a U_BOOT_DRVINFO() for the device being processed
|
2020-12-23 15:11:21 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
var_name (str): C name for the node
|
|
|
|
struct_name (str): Name for the dt struct associated with the node
|
|
|
|
node_parent (Node): Parent of the node (or None if none)
|
|
|
|
"""
|
2020-12-29 03:34:54 +00:00
|
|
|
self.buf('U_BOOT_DRVINFO(%s) = {\n' % var_name)
|
2020-12-23 15:11:21 +00:00
|
|
|
self.buf('\t.name\t\t= "%s",\n' % struct_name)
|
|
|
|
self.buf('\t.plat\t= &%s%s,\n' % (VAL_PREFIX, var_name))
|
|
|
|
self.buf('\t.plat_size\t= sizeof(%s%s),\n' % (VAL_PREFIX, var_name))
|
|
|
|
idx = -1
|
|
|
|
if node_parent and node_parent in self._valid_nodes:
|
|
|
|
idx = node_parent.idx
|
|
|
|
self.buf('\t.parent_idx\t= %d,\n' % idx)
|
|
|
|
self.buf('};\n')
|
|
|
|
self.buf('\n')
|
|
|
|
|
2020-12-23 15:11:22 +00:00
|
|
|
def _output_prop(self, node, prop):
|
|
|
|
"""Output a line containing the value of a struct member
|
|
|
|
|
|
|
|
Args:
|
|
|
|
node (Node): Node being output
|
|
|
|
prop (Prop): Prop object to output
|
|
|
|
"""
|
|
|
|
if prop.name in PROP_IGNORE_LIST or prop.name[0] == '#':
|
|
|
|
return
|
|
|
|
member_name = conv_name_to_c(prop.name)
|
|
|
|
self.buf('\t%s= ' % tab_to(3, '.' + member_name))
|
|
|
|
|
|
|
|
# Special handling for lists
|
|
|
|
if isinstance(prop.value, list):
|
|
|
|
self._output_list(node, prop)
|
|
|
|
else:
|
|
|
|
self.buf(get_value(prop.type, prop.value))
|
|
|
|
self.buf(',\n')
|
|
|
|
|
|
|
|
def _output_values(self, var_name, struct_name, node):
|
|
|
|
"""Output the definition of a device's struct values
|
|
|
|
|
|
|
|
Args:
|
|
|
|
var_name (str): C name for the node
|
|
|
|
struct_name (str): Name for the dt struct associated with the node
|
|
|
|
node (Node): Node being output
|
|
|
|
"""
|
|
|
|
self.buf('static struct %s%s %s%s = {\n' %
|
|
|
|
(STRUCT_PREFIX, struct_name, VAL_PREFIX, var_name))
|
|
|
|
for pname in sorted(node.props):
|
|
|
|
self._output_prop(node, node.props[pname])
|
|
|
|
self.buf('};\n')
|
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
def output_node(self, node):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Output the C code for a node
|
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
node (fdt.Node): node to output
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2020-07-03 11:07:17 +00:00
|
|
|
struct_name, _ = self.get_normalized_compat_name(node)
|
2017-06-19 04:08:59 +00:00
|
|
|
var_name = conv_name_to_c(node.name)
|
2020-10-03 17:31:25 +00:00
|
|
|
self.buf('/* Node %s index %d */\n' % (node.path, node.idx))
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2020-12-23 15:11:22 +00:00
|
|
|
self._output_values(var_name, struct_name, node)
|
2020-12-23 15:11:21 +00:00
|
|
|
self._declare_device(var_name, struct_name, node.parent)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
self.out(''.join(self.get_buf()))
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2020-12-29 03:35:02 +00:00
|
|
|
def generate_plat(self):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Generate device defintions for the platform data
|
|
|
|
|
|
|
|
This writes out C platform data initialisation data and
|
2020-12-29 03:34:54 +00:00
|
|
|
U_BOOT_DRVINFO() declarations for each valid node. Where a node has
|
2017-06-19 04:08:58 +00:00
|
|
|
multiple compatible strings, a #define is used to make them equivalent.
|
|
|
|
|
2020-02-25 20:35:39 +00:00
|
|
|
See the documentation in doc/driver-model/of-plat.rst for more
|
2017-06-19 04:08:58 +00:00
|
|
|
information.
|
|
|
|
"""
|
2020-12-29 03:34:54 +00:00
|
|
|
self.out('/* Allow use of U_BOOT_DRVINFO() in this file */\n')
|
2020-12-29 03:35:01 +00:00
|
|
|
self.out('#define DT_PLAT_C\n')
|
2020-10-03 17:31:41 +00:00
|
|
|
self.out('\n')
|
2017-06-19 04:08:59 +00:00
|
|
|
self.out('#include <common.h>\n')
|
|
|
|
self.out('#include <dm.h>\n')
|
|
|
|
self.out('#include <dt-structs.h>\n')
|
|
|
|
self.out('\n')
|
2020-12-29 03:35:04 +00:00
|
|
|
|
|
|
|
for node in self._valid_nodes:
|
2017-06-19 04:08:59 +00:00
|
|
|
self.output_node(node)
|
2017-06-19 04:09:03 +00:00
|
|
|
|
2020-06-25 04:10:13 +00:00
|
|
|
# Define dm_populate_phandle_data() which will add the linking between
|
2020-12-29 03:34:55 +00:00
|
|
|
# nodes using DM_DRVINFO_GET
|
|
|
|
# dtv_dmc_at_xxx.clocks[0].node = DM_DRVINFO_GET(clock_controller_at_xxx)
|
2020-06-25 04:10:13 +00:00
|
|
|
self.buf('void dm_populate_phandle_data(void) {\n')
|
|
|
|
self.buf('}\n')
|
|
|
|
|
|
|
|
self.out(''.join(self.get_buf()))
|
2017-06-19 04:09:03 +00:00
|
|
|
|
2020-12-29 03:34:50 +00:00
|
|
|
|
2020-12-29 03:34:51 +00:00
|
|
|
# Types of output file we understand
|
|
|
|
# key: Command used to generate this file
|
|
|
|
# value: OutputFile for this command
|
|
|
|
OUTPUT_FILES = {
|
2020-12-29 03:35:00 +00:00
|
|
|
'struct':
|
|
|
|
OutputFile(Ftype.HEADER, 'dt-structs-gen.h',
|
2020-12-29 03:35:02 +00:00
|
|
|
DtbPlatdata.generate_structs,
|
2020-12-29 03:35:00 +00:00
|
|
|
'Defines the structs used to hold devicetree data'),
|
|
|
|
'platdata':
|
2020-12-29 03:35:02 +00:00
|
|
|
OutputFile(Ftype.SOURCE, 'dt-plat.c', DtbPlatdata.generate_plat,
|
2020-12-29 03:35:00 +00:00
|
|
|
'Declares the U_BOOT_DRIVER() records and platform data'),
|
2020-12-29 03:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-29 03:34:50 +00:00
|
|
|
def run_steps(args, dtb_file, include_disabled, output, output_dirs,
|
2020-12-29 03:35:03 +00:00
|
|
|
warning_disabled=False, drivers_additional=None, basedir=None):
|
2017-06-19 04:09:03 +00:00
|
|
|
"""Run all the steps of the dtoc tool
|
|
|
|
|
|
|
|
Args:
|
2020-11-09 03:36:21 +00:00
|
|
|
args (list): List of non-option arguments provided to the problem
|
|
|
|
dtb_file (str): Filename of dtb file to process
|
|
|
|
include_disabled (bool): True to include disabled nodes
|
2020-12-29 03:34:48 +00:00
|
|
|
output (str): Name of output file (None for stdout)
|
2020-12-29 03:34:50 +00:00
|
|
|
output_dirs (tuple of str):
|
|
|
|
Directory to put C output files
|
|
|
|
Directory to put H output files
|
2020-12-03 23:55:16 +00:00
|
|
|
warning_disabled (bool): True to avoid showing warnings about missing
|
|
|
|
drivers
|
2020-12-23 15:11:19 +00:00
|
|
|
drivers_additional (list): List of additional drivers to use during
|
2020-12-03 23:55:16 +00:00
|
|
|
scanning
|
2020-12-29 03:35:03 +00:00
|
|
|
basedir (str): Base directory of U-Boot source code. Defaults to the
|
|
|
|
grandparent of this file's directory
|
2020-11-09 03:36:21 +00:00
|
|
|
Raises:
|
|
|
|
ValueError: if args has no command, or an unknown command
|
2017-06-19 04:09:03 +00:00
|
|
|
"""
|
|
|
|
if not args:
|
2020-12-29 03:34:51 +00:00
|
|
|
raise ValueError('Please specify a command: struct, platdata, all')
|
|
|
|
if output and output_dirs and any(output_dirs):
|
|
|
|
raise ValueError('Must specify either output or output_dirs, not both')
|
2017-06-19 04:09:03 +00:00
|
|
|
|
2020-12-03 23:55:16 +00:00
|
|
|
plat = DtbPlatdata(dtb_file, include_disabled, warning_disabled,
|
|
|
|
drivers_additional)
|
2020-12-29 03:35:03 +00:00
|
|
|
plat.scan_drivers(basedir)
|
2017-06-19 04:09:03 +00:00
|
|
|
plat.scan_dtb()
|
|
|
|
plat.scan_tree()
|
2017-08-29 20:15:50 +00:00
|
|
|
plat.scan_reg_sizes()
|
2020-12-29 03:34:51 +00:00
|
|
|
plat.setup_output_dirs(output_dirs)
|
2020-12-29 03:35:02 +00:00
|
|
|
plat.scan_structs()
|
2017-06-19 04:09:03 +00:00
|
|
|
plat.scan_phandles()
|
|
|
|
|
2020-12-29 03:34:52 +00:00
|
|
|
cmds = args[0].split(',')
|
|
|
|
if 'all' in cmds:
|
|
|
|
cmds = sorted(OUTPUT_FILES.keys())
|
|
|
|
for cmd in cmds:
|
2020-12-29 03:34:51 +00:00
|
|
|
outfile = OUTPUT_FILES.get(cmd)
|
|
|
|
if not outfile:
|
|
|
|
raise ValueError("Unknown command '%s': (use: %s)" %
|
2020-12-29 03:34:52 +00:00
|
|
|
(cmd, ', '.join(sorted(OUTPUT_FILES.keys()))))
|
2020-12-29 03:34:51 +00:00
|
|
|
plat.setup_output(outfile.ftype,
|
|
|
|
outfile.fname if output_dirs else output)
|
2020-12-29 03:35:00 +00:00
|
|
|
plat.out_header(outfile)
|
2020-12-29 03:35:02 +00:00
|
|
|
outfile.method(plat)
|
2020-12-29 03:34:51 +00:00
|
|
|
plat.finish_output()
|