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
|
2020-12-29 03:35:06 +00:00
|
|
|
from dtoc import src_scan
|
|
|
|
from dtoc.src_scan import conv_name_to_c
|
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_'
|
|
|
|
|
2021-02-03 13:01:18 +00:00
|
|
|
# Properties which are considered to be phandles
|
|
|
|
# key: property name
|
|
|
|
# value: name of associated #cells property in the target node
|
|
|
|
#
|
|
|
|
# New phandle properties must be added here; otherwise they will come through as
|
|
|
|
# simple integers and finding devices by phandle will not work.
|
|
|
|
# Any property that ends with one of these (e.g. 'cd-gpios') will be considered
|
|
|
|
# a phandle property.
|
|
|
|
PHANDLE_PROPS = {
|
|
|
|
'clocks': '#clock-cells',
|
|
|
|
'gpios': '#gpio-cells',
|
|
|
|
'sandbox,emul': '#emul-cells',
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
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:
|
2020-12-29 03:35:06 +00:00
|
|
|
_scan: Scan object, for scanning and reporting on useful information
|
|
|
|
from the U-Boot source code
|
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
|
2021-02-03 13:01:09 +00:00
|
|
|
_valid_nodes_unsorted: A list of Node object with compatible strings,
|
|
|
|
ordered by devicetree node order
|
|
|
|
_valid_nodes: A list of Node object with compatible strings, 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)
|
|
|
|
_lines: Stashed list of output lines for outputting in the future
|
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
|
2021-02-03 13:01:10 +00:00
|
|
|
_valid_uclasses (list of src_scan.Uclass): List of uclasses needed for
|
|
|
|
the selected devices (see _valid_node), in alphabetical order
|
2021-02-03 13:01:12 +00:00
|
|
|
_instantiate: Instantiate devices so they don't need to be bound at
|
|
|
|
run-time
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2021-02-03 13:01:12 +00:00
|
|
|
def __init__(self, scan, dtb_fname, include_disabled, instantiate=False):
|
2020-12-29 03:35:06 +00:00
|
|
|
self._scan = scan
|
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
|
2021-02-03 13:01:09 +00:00
|
|
|
self._valid_nodes_unsorted = 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
|
|
|
|
self._lines = []
|
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
|
2021-02-03 13:01:10 +00:00
|
|
|
self._valid_uclasses = None
|
2021-02-03 13:01:12 +00:00
|
|
|
self._instantiate = instantiate
|
2020-07-03 11:07:17 +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()
|
2021-02-03 13:01:20 +00:00
|
|
|
self._outfile = None
|
2020-12-29 03:34:51 +00:00
|
|
|
|
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
|
|
|
"""
|
2021-02-03 13:01:18 +00:00
|
|
|
cells_prop = None
|
|
|
|
for name, cprop in PHANDLE_PROPS.items():
|
|
|
|
if prop.name.endswith(name):
|
|
|
|
cells_prop = cprop
|
|
|
|
if cells_prop:
|
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))
|
2021-02-03 13:01:18 +00:00
|
|
|
cells = target.props.get(cells_prop)
|
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" %
|
2021-02-03 13:01:18 +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
|
|
|
|
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)
|
|
|
|
|
2021-02-03 13:01:09 +00:00
|
|
|
def scan_node(self, node, valid_nodes):
|
2017-06-19 04:08:59 +00:00
|
|
|
"""Scan a node and subnodes to build a tree of node and phandle info
|
|
|
|
|
2021-02-03 13:01:09 +00:00
|
|
|
This adds each subnode to self._valid_nodes if it is enabled and has a
|
|
|
|
compatible string.
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2017-06-19 04:08:59 +00:00
|
|
|
Args:
|
2021-02-03 13:01:09 +00:00
|
|
|
node (Node): Node for scan for subnodes
|
2020-12-23 15:11:19 +00:00
|
|
|
valid_nodes (list of Node): List of Node objects to add to
|
2017-06-19 04:08:59 +00:00
|
|
|
"""
|
2021-02-03 13:01:09 +00:00
|
|
|
for subnode in node.subnodes:
|
|
|
|
if 'compatible' in subnode.props:
|
|
|
|
status = subnode.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'):
|
2021-02-03 13:01:09 +00:00
|
|
|
valid_nodes.append(subnode)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
|
|
|
# recurse to handle any subnodes
|
2021-02-03 13:01:09 +00:00
|
|
|
self.scan_node(subnode, valid_nodes)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2021-02-03 13:01:11 +00:00
|
|
|
def scan_tree(self, add_root):
|
2017-06-19 04:08:58 +00:00
|
|
|
"""Scan the device tree for useful information
|
|
|
|
|
|
|
|
This fills in the following properties:
|
2021-02-03 13:01:09 +00:00
|
|
|
_valid_nodes_unsorted: A list of nodes we wish to consider include
|
|
|
|
in the platform data (in devicetree node order)
|
|
|
|
_valid_nodes: Sorted version of _valid_nodes_unsorted
|
2021-02-03 13:01:11 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
add_root: True to add the root node also (which wouldn't normally
|
|
|
|
be added as it may not have a compatible string)
|
2017-06-19 04:08:58 +00:00
|
|
|
"""
|
2021-02-03 13:01:09 +00:00
|
|
|
root = self._fdt.GetRoot()
|
2020-10-03 17:31:25 +00:00
|
|
|
valid_nodes = []
|
2021-02-03 13:01:11 +00:00
|
|
|
if add_root:
|
|
|
|
valid_nodes.append(root)
|
2021-02-03 13:01:09 +00:00
|
|
|
self.scan_node(root, valid_nodes)
|
|
|
|
self._valid_nodes_unsorted = valid_nodes
|
2020-10-03 17:31:25 +00:00
|
|
|
self._valid_nodes = sorted(valid_nodes,
|
|
|
|
key=lambda x: conv_name_to_c(x.name))
|
2021-02-03 13:00:58 +00:00
|
|
|
|
|
|
|
def prepare_nodes(self):
|
|
|
|
"""Add extra properties to the nodes we are using
|
|
|
|
|
|
|
|
The following properties are added for use by dtoc:
|
|
|
|
idx: Index number of this node (0=first, etc.)
|
|
|
|
struct_name: Name of the struct dtd used by this node
|
|
|
|
var_name: C name for this node
|
|
|
|
child_devs: List of child devices for this node, each a None
|
|
|
|
child_refs: Dict of references for each child:
|
|
|
|
key: Position in child list (-1=head, 0=first, 1=second, ...
|
|
|
|
n-1=last, n=head)
|
|
|
|
seq: Sequence number of the device (unique within its uclass), or
|
|
|
|
-1 not not known yet
|
|
|
|
dev_ref: Reference to this device, e.g. 'DM_DEVICE_REF(serial)'
|
|
|
|
driver: Driver record for this node, or None if not known
|
|
|
|
uclass: Uclass record for this node, or None if not known
|
|
|
|
uclass_seq: Position of this device within the uclass list (0=first,
|
|
|
|
n-1=last)
|
|
|
|
parent_seq: Position of this device within it siblings (0=first,
|
|
|
|
n-1=last)
|
|
|
|
parent_driver: Driver record of the node's parent, or None if none.
|
|
|
|
We don't use node.parent.driver since node.parent may not be in
|
|
|
|
the list of valid nodes
|
|
|
|
"""
|
2020-10-03 17:31:25 +00:00
|
|
|
for idx, node in enumerate(self._valid_nodes):
|
|
|
|
node.idx = idx
|
2021-02-03 13:00:58 +00:00
|
|
|
node.struct_name, _ = self._scan.get_normalized_compat_name(node)
|
|
|
|
node.var_name = conv_name_to_c(node.name)
|
|
|
|
node.child_devs = []
|
|
|
|
node.child_refs = {}
|
|
|
|
node.seq = -1
|
|
|
|
node.dev_ref = None
|
|
|
|
node.driver = None
|
|
|
|
node.uclass = None
|
|
|
|
node.uclass_seq = None
|
|
|
|
node.parent_seq = None
|
|
|
|
node.parent_driver = None
|
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
|
2021-03-26 03:17:27 +00:00
|
|
|
if parent and not parent.props:
|
|
|
|
raise ValueError("Parent node '%s' has no properties - do you need u-boot,dm-spl or similar?" %
|
|
|
|
parent.path)
|
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)
|
2021-03-26 03:17:26 +00:00
|
|
|
if not isinstance(reg.value, list):
|
|
|
|
reg.value = [reg.value]
|
2017-08-29 20:15:50 +00:00
|
|
|
if len(reg.value) % total:
|
2020-11-09 03:36:21 +00:00
|
|
|
raise ValueError(
|
2021-03-26 03:17:27 +00:00
|
|
|
"Node '%s' (parent '%s') reg property has %d cells "
|
2020-11-09 03:36:21 +00:00
|
|
|
'which is not a multiple of na + ns = %d + %d)' %
|
2021-03-26 03:17:27 +00:00
|
|
|
(node.name, node.parent.name, len(reg.value), num_addr,
|
|
|
|
num_size))
|
2020-12-03 23:55:16 +00:00
|
|
|
reg.num_addr = num_addr
|
|
|
|
reg.num_size = num_size
|
2021-03-26 03:17:26 +00:00
|
|
|
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
|
|
|
|
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:
|
|
|
|
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)
|
|
|
|
|
2021-02-03 13:00:59 +00:00
|
|
|
# If we've seen this struct_name before, update the existing struct
|
|
|
|
if node.struct_name in structs:
|
|
|
|
struct = structs[node.struct_name]
|
2017-06-19 04:08:58 +00:00
|
|
|
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:
|
2021-02-03 13:00:59 +00:00
|
|
|
structs[node.struct_name] = fields
|
2017-06-19 04:08:58 +00:00
|
|
|
|
|
|
|
for node in self._valid_nodes:
|
2021-02-03 13:00:59 +00:00
|
|
|
struct = structs[node.struct_name]
|
2017-06-19 04:08:58 +00:00
|
|
|
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('}')
|
|
|
|
|
2021-02-03 13:00:59 +00:00
|
|
|
def _declare_device(self, node):
|
2020-12-23 15:11:21 +00:00
|
|
|
"""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:
|
2021-02-03 13:00:59 +00:00
|
|
|
node: Node to process
|
2020-12-23 15:11:21 +00:00
|
|
|
"""
|
2021-02-03 13:00:59 +00:00
|
|
|
self.buf('U_BOOT_DRVINFO(%s) = {\n' % node.var_name)
|
|
|
|
self.buf('\t.name\t\t= "%s",\n' % node.struct_name)
|
2021-02-03 13:01:19 +00:00
|
|
|
self.buf('\t.plat\t\t= &%s%s,\n' % (VAL_PREFIX, node.var_name))
|
2021-02-03 13:00:59 +00:00
|
|
|
self.buf('\t.plat_size\t= sizeof(%s%s),\n' %
|
|
|
|
(VAL_PREFIX, node.var_name))
|
2020-12-23 15:11:21 +00:00
|
|
|
idx = -1
|
2021-02-03 13:00:59 +00:00
|
|
|
if node.parent and node.parent in self._valid_nodes:
|
|
|
|
idx = node.parent.idx
|
2020-12-23 15:11:21 +00:00
|
|
|
self.buf('\t.parent_idx\t= %d,\n' % idx)
|
|
|
|
self.buf('};\n')
|
|
|
|
self.buf('\n')
|
|
|
|
|
2021-02-03 13:01:20 +00:00
|
|
|
def prep_priv(self, struc, name, suffix, section='.priv_data'):
|
|
|
|
if not struc:
|
|
|
|
return None
|
|
|
|
var_name = '_%s%s' % (name, suffix)
|
|
|
|
hdr = self._scan._structs.get(struc)
|
|
|
|
if hdr:
|
|
|
|
self.buf('#include <%s>\n' % hdr.fname)
|
|
|
|
else:
|
|
|
|
print('Warning: Cannot find header file for struct %s' % struc)
|
|
|
|
attr = '__attribute__ ((section ("%s")))' % section
|
|
|
|
return var_name, struc, attr
|
|
|
|
|
|
|
|
def alloc_priv(self, info, name, extra, suffix='_priv'):
|
|
|
|
result = self.prep_priv(info, name, suffix)
|
|
|
|
if not result:
|
|
|
|
return None
|
|
|
|
var_name, struc, section = result
|
|
|
|
self.buf('u8 %s_%s[sizeof(struct %s)]\n\t%s;\n' %
|
|
|
|
(var_name, extra, struc.strip(), section))
|
|
|
|
return '%s_%s' % (var_name, extra)
|
|
|
|
|
2021-02-03 13:01:21 +00:00
|
|
|
def alloc_plat(self, info, name, extra, node):
|
|
|
|
result = self.prep_priv(info, name, '_plat')
|
|
|
|
if not result:
|
|
|
|
return None
|
|
|
|
var_name, struc, section = result
|
|
|
|
self.buf('struct %s %s\n\t%s_%s = {\n' %
|
|
|
|
(struc.strip(), section, var_name, extra))
|
|
|
|
self.buf('\t.dtplat = {\n')
|
|
|
|
for pname in sorted(node.props):
|
|
|
|
self._output_prop(node, node.props[pname], 2)
|
|
|
|
self.buf('\t},\n')
|
|
|
|
self.buf('};\n')
|
|
|
|
return '&%s_%s' % (var_name, extra)
|
|
|
|
|
|
|
|
def _declare_device_inst(self, node, parent_driver):
|
|
|
|
"""Add a device instance declaration to the output
|
|
|
|
|
|
|
|
This declares a DM_DEVICE_INST() for the device being processed
|
|
|
|
|
|
|
|
Args:
|
|
|
|
node: Node to output
|
|
|
|
"""
|
|
|
|
driver = node.driver
|
|
|
|
uclass = node.uclass
|
|
|
|
self.buf('\n')
|
|
|
|
num_lines = len(self._lines)
|
|
|
|
plat_name = self.alloc_plat(driver.plat, driver.name, node.var_name,
|
|
|
|
node)
|
|
|
|
priv_name = self.alloc_priv(driver.priv, driver.name, node.var_name)
|
|
|
|
parent_plat_name = None
|
|
|
|
parent_priv_name = None
|
|
|
|
if parent_driver:
|
|
|
|
# TODO: deal with uclass providing these values
|
|
|
|
parent_plat_name = self.alloc_priv(
|
|
|
|
parent_driver.child_plat, driver.name, node.var_name,
|
|
|
|
'_parent_plat')
|
|
|
|
parent_priv_name = self.alloc_priv(
|
|
|
|
parent_driver.child_priv, driver.name, node.var_name,
|
|
|
|
'_parent_priv')
|
|
|
|
uclass_plat_name = self.alloc_priv(
|
|
|
|
uclass.per_dev_plat, driver.name + '_uc', node.var_name, 'plat')
|
|
|
|
uclass_priv_name = self.alloc_priv(uclass.per_dev_priv,
|
|
|
|
driver.name + '_uc', node.var_name)
|
|
|
|
for hdr in driver.headers:
|
|
|
|
self.buf('#include %s\n' % hdr)
|
|
|
|
|
|
|
|
# Add a blank line if we emitted any stuff above, for readability
|
|
|
|
if num_lines != len(self._lines):
|
|
|
|
self.buf('\n')
|
|
|
|
|
|
|
|
self.buf('DM_DEVICE_INST(%s) = {\n' % node.var_name)
|
|
|
|
self.buf('\t.driver\t\t= DM_DRIVER_REF(%s),\n' % node.struct_name)
|
|
|
|
self.buf('\t.name\t\t= "%s",\n' % node.struct_name)
|
|
|
|
if plat_name:
|
|
|
|
self.buf('\t.plat_\t\t= %s,\n' % plat_name)
|
|
|
|
else:
|
|
|
|
self.buf('\t.plat_\t\t= &%s%s,\n' % (VAL_PREFIX, node.var_name))
|
|
|
|
if parent_plat_name:
|
|
|
|
self.buf('\t.parent_plat_\t= %s,\n' % parent_plat_name)
|
|
|
|
if uclass_plat_name:
|
|
|
|
self.buf('\t.uclass_plat_\t= %s,\n' % uclass_plat_name)
|
|
|
|
driver_date = None
|
|
|
|
|
|
|
|
if node != self._fdt.GetRoot():
|
|
|
|
compat_list = node.props['compatible'].value
|
|
|
|
if not isinstance(compat_list, list):
|
|
|
|
compat_list = [compat_list]
|
|
|
|
for compat in compat_list:
|
|
|
|
driver_data = driver.compat.get(compat)
|
|
|
|
if driver_data:
|
|
|
|
self.buf('\t.driver_data\t= %s,\n' % driver_data)
|
|
|
|
break
|
|
|
|
|
|
|
|
if node.parent and node.parent.parent:
|
2021-06-27 23:51:10 +00:00
|
|
|
if node.parent not in self._valid_nodes:
|
|
|
|
# This might indicate that the parent node is not in the
|
|
|
|
# SPL/TPL devicetree but the child is. For example if we are
|
|
|
|
# dealing with of-platdata in TPL, the parent has a
|
|
|
|
# u-boot,dm-tpl tag but the child has u-boot,dm-pre-reloc. In
|
|
|
|
# this case the child node exists in TPL but the parent does
|
|
|
|
# not.
|
|
|
|
raise ValueError("Node '%s' requires parent node '%s' but it is not in the valid list" %
|
|
|
|
(node.path, node.parent.path))
|
2021-02-03 13:01:21 +00:00
|
|
|
self.buf('\t.parent\t\t= DM_DEVICE_REF(%s),\n' %
|
|
|
|
node.parent.var_name)
|
|
|
|
if priv_name:
|
|
|
|
self.buf('\t.priv_\t\t= %s,\n' % priv_name)
|
|
|
|
self.buf('\t.uclass\t\t= DM_UCLASS_REF(%s),\n' % uclass.name)
|
|
|
|
|
|
|
|
if uclass_priv_name:
|
|
|
|
self.buf('\t.uclass_priv_ = %s,\n' % uclass_priv_name)
|
|
|
|
if parent_priv_name:
|
|
|
|
self.buf('\t.parent_priv_\t= %s,\n' % parent_priv_name)
|
|
|
|
self.list_node('uclass_node', uclass.node_refs, node.uclass_seq)
|
|
|
|
self.list_head('child_head', 'sibling_node', node.child_devs, node.var_name)
|
|
|
|
if node.parent in self._valid_nodes:
|
|
|
|
self.list_node('sibling_node', node.parent.child_refs,
|
|
|
|
node.parent_seq)
|
|
|
|
# flags is left as 0
|
|
|
|
|
|
|
|
self.buf('\t.seq_ = %d,\n' % node.seq)
|
|
|
|
|
|
|
|
self.buf('};\n')
|
|
|
|
self.buf('\n')
|
|
|
|
return parent_plat_name
|
|
|
|
|
|
|
|
def _output_prop(self, node, prop, tabs=1):
|
2020-12-23 15:11:22 +00:00
|
|
|
"""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)
|
2021-02-03 13:01:21 +00:00
|
|
|
self.buf('%s%s= ' % ('\t' * tabs, tab_to(3, '.' + member_name)))
|
2020-12-23 15:11:22 +00:00
|
|
|
|
|
|
|
# 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')
|
|
|
|
|
2021-02-03 13:00:59 +00:00
|
|
|
def _output_values(self, node):
|
2020-12-23 15:11:22 +00:00
|
|
|
"""Output the definition of a device's struct values
|
|
|
|
|
|
|
|
Args:
|
2021-02-03 13:00:59 +00:00
|
|
|
node (Node): Node to output
|
2020-12-23 15:11:22 +00:00
|
|
|
"""
|
|
|
|
self.buf('static struct %s%s %s%s = {\n' %
|
2021-02-03 13:00:59 +00:00
|
|
|
(STRUCT_PREFIX, node.struct_name, VAL_PREFIX, node.var_name))
|
2020-12-23 15:11:22 +00:00
|
|
|
for pname in sorted(node.props):
|
|
|
|
self._output_prop(node, node.props[pname])
|
|
|
|
self.buf('};\n')
|
|
|
|
|
2021-02-03 13:01:20 +00:00
|
|
|
def list_head(self, head_member, node_member, node_refs, var_name):
|
|
|
|
self.buf('\t.%s\t= {\n' % head_member)
|
|
|
|
if node_refs:
|
|
|
|
last = node_refs[-1].dev_ref
|
|
|
|
first = node_refs[0].dev_ref
|
|
|
|
member = node_member
|
|
|
|
else:
|
|
|
|
last = 'DM_DEVICE_REF(%s)' % var_name
|
|
|
|
first = last
|
|
|
|
member = head_member
|
|
|
|
self.buf('\t\t.prev = &%s->%s,\n' % (last, member))
|
|
|
|
self.buf('\t\t.next = &%s->%s,\n' % (first, member))
|
|
|
|
self.buf('\t},\n')
|
|
|
|
|
|
|
|
def list_node(self, member, node_refs, seq):
|
|
|
|
self.buf('\t.%s\t= {\n' % member)
|
|
|
|
self.buf('\t\t.prev = %s,\n' % node_refs[seq - 1])
|
|
|
|
self.buf('\t\t.next = %s,\n' % node_refs[seq + 1])
|
|
|
|
self.buf('\t},\n')
|
|
|
|
|
|
|
|
def generate_uclasses(self):
|
|
|
|
self.out('\n')
|
|
|
|
self.out('#include <common.h>\n')
|
|
|
|
self.out('#include <dm.h>\n')
|
|
|
|
self.out('#include <dt-structs.h>\n')
|
|
|
|
self.out('\n')
|
|
|
|
self.buf('/*\n')
|
2021-02-03 13:01:21 +00:00
|
|
|
self.buf(
|
|
|
|
" * uclass declarations, ordered by 'struct uclass' linker_list idx:\n")
|
2021-02-03 13:01:20 +00:00
|
|
|
uclass_list = self._valid_uclasses
|
2021-02-03 13:01:21 +00:00
|
|
|
for seq, uclass in enumerate(uclass_list):
|
|
|
|
self.buf(' * %3d: %s\n' % (seq, uclass.name))
|
|
|
|
self.buf(' *\n')
|
|
|
|
self.buf(' * Sequence numbers allocated in each uclass:\n')
|
2021-02-03 13:01:20 +00:00
|
|
|
for uclass in uclass_list:
|
|
|
|
if uclass.alias_num_to_node:
|
|
|
|
self.buf(' * %s: %s\n' % (uclass.name, uclass.uclass_id))
|
|
|
|
for seq, node in uclass.alias_num_to_node.items():
|
|
|
|
self.buf(' * %d: %s\n' % (seq, node.path))
|
|
|
|
self.buf(' */\n')
|
|
|
|
|
|
|
|
uclass_node = {}
|
|
|
|
for seq, uclass in enumerate(uclass_list):
|
|
|
|
uclass_node[seq] = ('&DM_UCLASS_REF(%s)->sibling_node' %
|
|
|
|
uclass.name)
|
|
|
|
uclass_node[-1] = '&uclass_head'
|
|
|
|
uclass_node[len(uclass_list)] = '&uclass_head'
|
|
|
|
self.buf('\n')
|
|
|
|
self.buf('struct list_head %s = {\n' % 'uclass_head')
|
|
|
|
self.buf('\t.prev = %s,\n' % uclass_node[len(uclass_list) -1])
|
|
|
|
self.buf('\t.next = %s,\n' % uclass_node[0])
|
|
|
|
self.buf('};\n')
|
|
|
|
self.buf('\n')
|
|
|
|
|
|
|
|
for seq, uclass in enumerate(uclass_list):
|
|
|
|
uc_drv = self._scan._uclass.get(uclass.uclass_id)
|
|
|
|
|
|
|
|
priv_name = self.alloc_priv(uc_drv.priv, uc_drv.name, '')
|
|
|
|
|
|
|
|
self.buf('DM_UCLASS_INST(%s) = {\n' % uclass.name)
|
|
|
|
if priv_name:
|
|
|
|
self.buf('\t.priv_\t\t= %s,\n' % priv_name)
|
|
|
|
self.buf('\t.uc_drv\t\t= DM_UCLASS_DRIVER_REF(%s),\n' % uclass.name)
|
|
|
|
self.list_node('sibling_node', uclass_node, seq)
|
|
|
|
self.list_head('dev_head', 'uclass_node', uc_drv.devs, None)
|
|
|
|
self.buf('};\n')
|
|
|
|
self.buf('\n')
|
|
|
|
self.out(''.join(self.get_buf()))
|
|
|
|
|
2021-02-03 13:01:07 +00:00
|
|
|
def read_aliases(self):
|
|
|
|
"""Read the aliases and attach the information to self._alias
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError: The alias path is not found
|
|
|
|
"""
|
|
|
|
alias_node = self._fdt.GetNode('/aliases')
|
|
|
|
if not alias_node:
|
|
|
|
return
|
|
|
|
re_num = re.compile('(^[a-z0-9-]+[a-z]+)([0-9]+)$')
|
|
|
|
for prop in alias_node.props.values():
|
|
|
|
m_alias = re_num.match(prop.name)
|
|
|
|
if not m_alias:
|
|
|
|
raise ValueError("Cannot decode alias '%s'" % prop.name)
|
|
|
|
name, num = m_alias.groups()
|
|
|
|
node = self._fdt.GetNode(prop.value)
|
|
|
|
result = self._scan.add_uclass_alias(name, num, node)
|
|
|
|
if result is None:
|
|
|
|
raise ValueError("Alias '%s' path '%s' not found" %
|
|
|
|
(prop.name, prop.value))
|
|
|
|
elif result is False:
|
|
|
|
print("Could not find uclass for alias '%s'" % prop.name)
|
|
|
|
|
2021-02-03 13:01:14 +00:00
|
|
|
def generate_decl(self):
|
|
|
|
nodes_to_output = list(self._valid_nodes)
|
|
|
|
|
|
|
|
self.buf('#include <dm/device-internal.h>\n')
|
|
|
|
self.buf('#include <dm/uclass-internal.h>\n')
|
|
|
|
self.buf('\n')
|
|
|
|
self.buf(
|
|
|
|
'/* driver declarations - these allow DM_DRIVER_GET() to be used */\n')
|
|
|
|
for node in nodes_to_output:
|
2021-03-15 04:25:11 +00:00
|
|
|
self.buf('extern U_BOOT_DRIVER(%s);\n' % node.struct_name);
|
2021-02-03 13:01:14 +00:00
|
|
|
self.buf('\n')
|
|
|
|
|
|
|
|
if self._instantiate:
|
|
|
|
self.buf(
|
|
|
|
'/* device declarations - these allow DM_DEVICE_REF() to be used */\n')
|
|
|
|
for node in nodes_to_output:
|
2021-03-15 04:25:11 +00:00
|
|
|
self.buf('extern DM_DEVICE_INST(%s);\n' % node.var_name)
|
2021-02-03 13:01:14 +00:00
|
|
|
self.buf('\n')
|
|
|
|
|
|
|
|
uclass_list = self._valid_uclasses
|
|
|
|
|
|
|
|
self.buf(
|
|
|
|
'/* uclass driver declarations - needed for DM_UCLASS_DRIVER_REF() */\n')
|
|
|
|
for uclass in uclass_list:
|
2021-03-15 04:25:11 +00:00
|
|
|
self.buf('extern UCLASS_DRIVER(%s);\n' % uclass.name)
|
2021-02-03 13:01:14 +00:00
|
|
|
|
|
|
|
if self._instantiate:
|
|
|
|
self.buf('\n')
|
|
|
|
self.buf('/* uclass declarations - needed for DM_UCLASS_REF() */\n')
|
|
|
|
for uclass in uclass_list:
|
2021-03-15 04:25:11 +00:00
|
|
|
self.buf('extern DM_UCLASS_INST(%s);\n' % uclass.name)
|
2021-02-03 13:01:14 +00:00
|
|
|
self.out(''.join(self.get_buf()))
|
|
|
|
|
2021-02-03 13:01:10 +00:00
|
|
|
def assign_seqs(self):
|
2021-02-03 13:01:09 +00:00
|
|
|
"""Assign a sequence number to each node"""
|
|
|
|
for node in self._valid_nodes_unsorted:
|
2021-02-03 13:01:10 +00:00
|
|
|
seq = self._scan.assign_seq(node)
|
|
|
|
if seq is not None:
|
|
|
|
node.seq = seq
|
2021-02-03 13:01:09 +00:00
|
|
|
|
2021-02-03 13:01:00 +00:00
|
|
|
def process_nodes(self, need_drivers):
|
|
|
|
nodes_to_output = list(self._valid_nodes)
|
|
|
|
|
2021-02-03 13:01:01 +00:00
|
|
|
# Figure out which drivers we actually use
|
|
|
|
self._scan.mark_used(nodes_to_output)
|
|
|
|
|
2021-02-03 13:01:00 +00:00
|
|
|
for node in nodes_to_output:
|
|
|
|
node.dev_ref = 'DM_DEVICE_REF(%s)' % node.var_name
|
|
|
|
driver = self._scan.get_driver(node.struct_name)
|
|
|
|
if not driver:
|
|
|
|
if not need_drivers:
|
|
|
|
continue
|
|
|
|
raise ValueError("Cannot parse/find driver for '%s'" %
|
|
|
|
node.struct_name)
|
|
|
|
node.driver = driver
|
2021-02-03 13:01:10 +00:00
|
|
|
uclass = self._scan._uclass.get(driver.uclass_id)
|
|
|
|
if not uclass:
|
|
|
|
raise ValueError("Cannot parse/find uclass '%s' for driver '%s'" %
|
|
|
|
(driver.uclass_id, node.struct_name))
|
|
|
|
node.uclass = uclass
|
|
|
|
node.uclass_seq = len(node.uclass.devs)
|
|
|
|
node.uclass.devs.append(node)
|
|
|
|
uclass.node_refs[node.uclass_seq] = \
|
|
|
|
'&%s->uclass_node' % node.dev_ref
|
|
|
|
|
2021-02-03 13:01:00 +00:00
|
|
|
parent_driver = None
|
|
|
|
if node.parent in self._valid_nodes:
|
|
|
|
parent_driver = self._scan.get_driver(node.parent.struct_name)
|
|
|
|
if not parent_driver:
|
|
|
|
if not need_drivers:
|
|
|
|
continue
|
|
|
|
raise ValueError(
|
|
|
|
"Cannot parse/find parent driver '%s' for '%s'" %
|
|
|
|
(node.parent.struct_name, node.struct_name))
|
|
|
|
node.parent_seq = len(node.parent.child_devs)
|
|
|
|
node.parent.child_devs.append(node)
|
|
|
|
node.parent.child_refs[node.parent_seq] = \
|
|
|
|
'&%s->sibling_node' % node.dev_ref
|
|
|
|
node.parent_driver = parent_driver
|
|
|
|
|
|
|
|
for node in nodes_to_output:
|
|
|
|
ref = '&%s->child_head' % node.dev_ref
|
|
|
|
node.child_refs[-1] = ref
|
|
|
|
node.child_refs[len(node.child_devs)] = ref
|
|
|
|
|
2021-02-03 13:01:10 +00:00
|
|
|
uclass_set = set()
|
|
|
|
for driver in self._scan._drivers.values():
|
|
|
|
if driver.used and driver.uclass:
|
|
|
|
uclass_set.add(driver.uclass)
|
|
|
|
self._valid_uclasses = sorted(list(uclass_set),
|
|
|
|
key=lambda uc: uc.uclass_id)
|
|
|
|
|
|
|
|
for seq, uclass in enumerate(uclass_set):
|
|
|
|
ref = '&DM_UCLASS_REF(%s)->dev_head' % uclass.name
|
|
|
|
uclass.node_refs[-1] = ref
|
|
|
|
uclass.node_refs[len(uclass.devs)] = ref
|
|
|
|
|
2021-02-03 13:01:15 +00:00
|
|
|
def output_node_plat(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
|
|
|
"""
|
2021-02-03 13:01:15 +00:00
|
|
|
driver = node.driver
|
|
|
|
parent_driver = node.parent_driver
|
|
|
|
|
|
|
|
line1 = 'Node %s index %d' % (node.path, node.idx)
|
|
|
|
if driver:
|
|
|
|
self.buf('/*\n')
|
|
|
|
self.buf(' * %s\n' % line1)
|
|
|
|
self.buf(' * driver %s parent %s\n' % (driver.name,
|
|
|
|
parent_driver.name if parent_driver else 'None'))
|
|
|
|
self.buf(' */\n')
|
|
|
|
else:
|
|
|
|
self.buf('/* %s */\n' % line1)
|
2017-06-19 04:08:58 +00:00
|
|
|
|
2021-02-03 13:00:59 +00:00
|
|
|
self._output_values(node)
|
|
|
|
self._declare_device(node)
|
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
|
|
|
|
2021-02-03 13:01:21 +00:00
|
|
|
def output_node_instance(self, node):
|
|
|
|
"""Output the C code for a node
|
|
|
|
|
|
|
|
Args:
|
|
|
|
node (fdt.Node): node to output
|
|
|
|
"""
|
|
|
|
parent_driver = node.parent_driver
|
|
|
|
|
|
|
|
self.buf('/*\n')
|
|
|
|
self.buf(' * Node %s index %d\n' % (node.path, node.idx))
|
|
|
|
self.buf(' * driver %s parent %s\n' % (node.driver.name,
|
|
|
|
parent_driver.name if parent_driver else 'None'))
|
|
|
|
self.buf('*/\n')
|
|
|
|
|
|
|
|
if not node.driver.plat:
|
|
|
|
self._output_values(node)
|
|
|
|
self._declare_device_inst(node, parent_driver)
|
|
|
|
|
|
|
|
self.out(''.join(self.get_buf()))
|
|
|
|
|
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
|
|
|
|
2021-02-03 13:01:19 +00:00
|
|
|
if self._valid_nodes:
|
|
|
|
self.out('/*\n')
|
|
|
|
self.out(
|
|
|
|
" * driver_info declarations, ordered by 'struct driver_info' linker_list idx:\n")
|
|
|
|
self.out(' *\n')
|
|
|
|
self.out(' * idx %-20s %-s\n' % ('driver_info', 'driver'))
|
|
|
|
self.out(' * --- %-20s %-s\n' % ('-' * 20, '-' * 20))
|
|
|
|
for node in self._valid_nodes:
|
|
|
|
self.out(' * %3d: %-20s %-s\n' %
|
|
|
|
(node.idx, node.var_name, node.struct_name))
|
|
|
|
self.out(' * --- %-20s %-s\n' % ('-' * 20, '-' * 20))
|
|
|
|
self.out(' */\n')
|
|
|
|
self.out('\n')
|
|
|
|
|
|
|
|
for node in self._valid_nodes:
|
|
|
|
self.output_node_plat(node)
|
2017-06-19 04:09:03 +00:00
|
|
|
|
2020-06-25 04:10:13 +00:00
|
|
|
self.out(''.join(self.get_buf()))
|
2017-06-19 04:09:03 +00:00
|
|
|
|
2021-02-03 13:01:21 +00:00
|
|
|
def generate_device(self):
|
|
|
|
"""Generate device instances
|
|
|
|
|
|
|
|
This writes out DM_DEVICE_INST() records for each device in the
|
|
|
|
build.
|
|
|
|
|
|
|
|
See the documentation in doc/driver-model/of-plat.rst for more
|
|
|
|
information.
|
|
|
|
"""
|
|
|
|
self.out('#include <common.h>\n')
|
|
|
|
self.out('#include <dm.h>\n')
|
|
|
|
self.out('#include <dt-structs.h>\n')
|
|
|
|
self.out('\n')
|
|
|
|
|
|
|
|
if self._valid_nodes:
|
|
|
|
self.out('/*\n')
|
|
|
|
self.out(
|
|
|
|
" * udevice declarations, ordered by 'struct udevice' linker_list position:\n")
|
|
|
|
self.out(' *\n')
|
|
|
|
self.out(' * idx %-20s %-s\n' % ('udevice', 'driver'))
|
|
|
|
self.out(' * --- %-20s %-s\n' % ('-' * 20, '-' * 20))
|
|
|
|
for node in self._valid_nodes:
|
|
|
|
self.out(' * %3d: %-20s %-s\n' %
|
|
|
|
(node.idx, node.var_name, node.struct_name))
|
|
|
|
self.out(' * --- %-20s %-s\n' % ('-' * 20, '-' * 20))
|
|
|
|
self.out(' */\n')
|
|
|
|
self.out('\n')
|
|
|
|
|
|
|
|
for node in self._valid_nodes:
|
|
|
|
self.output_node_instance(node)
|
|
|
|
|
|
|
|
self.out(''.join(self.get_buf()))
|
|
|
|
|
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
|
2021-03-24 17:40:51 +00:00
|
|
|
OUTPUT_FILES_COMMON = {
|
2021-02-03 13:01:14 +00:00
|
|
|
'decl':
|
|
|
|
OutputFile(Ftype.HEADER, 'dt-decl.h', DtbPlatdata.generate_decl,
|
|
|
|
'Declares externs for all device/uclass instances'),
|
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'),
|
2021-03-24 17:40:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# File generated without instantiate
|
|
|
|
OUTPUT_FILES_NOINST = {
|
2020-12-29 03:35:00 +00:00
|
|
|
'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'),
|
2021-03-24 17:40:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# File generated with instantiate
|
|
|
|
OUTPUT_FILES_INST = {
|
2021-02-03 13:01:21 +00:00
|
|
|
'device':
|
|
|
|
OutputFile(Ftype.SOURCE, 'dt-device.c', DtbPlatdata.generate_device,
|
|
|
|
'Declares the DM_DEVICE_INST() records'),
|
2021-02-03 13:01:20 +00:00
|
|
|
'uclass':
|
|
|
|
OutputFile(Ftype.SOURCE, 'dt-uclass.c', DtbPlatdata.generate_uclasses,
|
|
|
|
'Declares the uclass instances (struct uclass)'),
|
2020-12-29 03:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-02-03 13:01:02 +00:00
|
|
|
def run_steps(args, dtb_file, include_disabled, output, output_dirs, phase,
|
2021-02-03 13:01:12 +00:00
|
|
|
instantiate, warning_disabled=False, drivers_additional=None,
|
|
|
|
basedir=None, scan=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
|
2021-02-03 13:01:02 +00:00
|
|
|
phase: The phase of U-Boot that we are generating data for, e.g. 'spl'
|
|
|
|
or 'tpl'. None if not known
|
2021-02-03 13:01:12 +00:00
|
|
|
instantiate: Instantiate devices so they don't need to be bound at
|
|
|
|
run-time
|
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
|
2021-02-03 13:00:51 +00:00
|
|
|
scan (src_src.Scanner): Scanner from a previous run. This can help speed
|
|
|
|
up tests. Use None for normal operation
|
|
|
|
|
2021-02-03 13:01:07 +00:00
|
|
|
Returns:
|
|
|
|
DtbPlatdata object
|
|
|
|
|
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
|
|
|
|
2021-02-03 13:00:51 +00:00
|
|
|
if not scan:
|
2021-03-26 03:17:25 +00:00
|
|
|
scan = src_scan.Scanner(basedir, drivers_additional, phase)
|
2021-02-03 13:00:51 +00:00
|
|
|
scan.scan_drivers()
|
2021-02-03 13:01:00 +00:00
|
|
|
do_process = True
|
|
|
|
else:
|
|
|
|
do_process = False
|
2021-02-03 13:01:12 +00:00
|
|
|
plat = DtbPlatdata(scan, dtb_file, include_disabled, instantiate)
|
2017-06-19 04:09:03 +00:00
|
|
|
plat.scan_dtb()
|
2021-02-03 13:01:12 +00:00
|
|
|
plat.scan_tree(add_root=instantiate)
|
2021-02-03 13:00:58 +00:00
|
|
|
plat.prepare_nodes()
|
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()
|
2021-02-03 13:01:12 +00:00
|
|
|
plat.process_nodes(instantiate)
|
2021-02-03 13:01:07 +00:00
|
|
|
plat.read_aliases()
|
2021-02-03 13:01:10 +00:00
|
|
|
plat.assign_seqs()
|
2017-06-19 04:09:03 +00:00
|
|
|
|
2021-03-24 17:40:51 +00:00
|
|
|
# Figure out what output files we plan to generate
|
2021-04-26 20:19:48 +00:00
|
|
|
output_files = dict(OUTPUT_FILES_COMMON)
|
2021-03-24 17:40:51 +00:00
|
|
|
if instantiate:
|
|
|
|
output_files.update(OUTPUT_FILES_INST)
|
|
|
|
else:
|
|
|
|
output_files.update(OUTPUT_FILES_NOINST)
|
|
|
|
|
2020-12-29 03:34:52 +00:00
|
|
|
cmds = args[0].split(',')
|
|
|
|
if 'all' in cmds:
|
2021-03-24 17:40:51 +00:00
|
|
|
cmds = sorted(output_files.keys())
|
2020-12-29 03:34:52 +00:00
|
|
|
for cmd in cmds:
|
2021-03-24 17:40:51 +00:00
|
|
|
outfile = output_files.get(cmd)
|
2020-12-29 03:34:51 +00:00
|
|
|
if not outfile:
|
|
|
|
raise ValueError("Unknown command '%s': (use: %s)" %
|
2021-03-24 17:40:51 +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()
|
2021-03-26 03:17:25 +00:00
|
|
|
|
|
|
|
if not warning_disabled:
|
|
|
|
scan.show_warnings()
|
2021-02-03 13:01:07 +00:00
|
|
|
return plat
|