Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 1 | #!/usr/bin/python |
Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 3 | # |
| 4 | # Copyright (C) 2017 Google, Inc |
| 5 | # Written by Simon Glass <sjg@chromium.org> |
| 6 | # |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 7 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 8 | """Device tree to platform data class |
| 9 | |
| 10 | This supports converting device tree data to C structures definitions and |
| 11 | static data. |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 12 | |
| 13 | See doc/driver-model/of-plat.rst for more informaiton |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 14 | """ |
| 15 | |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 16 | import collections |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 17 | import copy |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 18 | from enum import IntEnum |
Walter Lozano | dac8228 | 2020-07-03 08:07:17 -0300 | [diff] [blame] | 19 | import os |
| 20 | import re |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 21 | import sys |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 22 | |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 23 | from dtoc import fdt |
| 24 | from dtoc import fdt_util |
Simon Glass | a542a70 | 2020-12-28 20:35:06 -0700 | [diff] [blame^] | 25 | from dtoc import src_scan |
| 26 | from dtoc.src_scan import conv_name_to_c |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 27 | |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 28 | # When we see these properties we ignore them - i.e. do not create a structure |
| 29 | # member |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 30 | PROP_IGNORE_LIST = [ |
| 31 | '#address-cells', |
| 32 | '#gpio-cells', |
| 33 | '#size-cells', |
| 34 | 'compatible', |
| 35 | 'linux,phandle', |
| 36 | "status", |
| 37 | 'phandle', |
| 38 | 'u-boot,dm-pre-reloc', |
| 39 | 'u-boot,dm-tpl', |
| 40 | 'u-boot,dm-spl', |
| 41 | ] |
| 42 | |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 43 | # C type declarations for the types we support |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 44 | TYPE_NAMES = { |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 45 | fdt.Type.INT: 'fdt32_t', |
| 46 | fdt.Type.BYTE: 'unsigned char', |
| 47 | fdt.Type.STRING: 'const char *', |
| 48 | fdt.Type.BOOL: 'bool', |
| 49 | fdt.Type.INT64: 'fdt64_t', |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 50 | } |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 51 | |
| 52 | STRUCT_PREFIX = 'dtd_' |
| 53 | VAL_PREFIX = 'dtv_' |
| 54 | |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 55 | class Ftype(IntEnum): |
| 56 | SOURCE, HEADER = range(2) |
| 57 | |
| 58 | |
| 59 | # This holds information about each type of output file dtoc can create |
| 60 | # type: Type of file (Ftype) |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 61 | # fname: Filename excluding directory, e.g. 'dt-plat.c' |
| 62 | # hdr_comment: Comment explaining the purpose of the file |
| 63 | OutputFile = collections.namedtuple('OutputFile', |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 64 | ['ftype', 'fname', 'method', 'hdr_comment']) |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 65 | |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 66 | # This holds information about a property which includes phandles. |
| 67 | # |
| 68 | # max_args: integer: Maximum number or arguments that any phandle uses (int). |
| 69 | # args: Number of args for each phandle in the property. The total number of |
| 70 | # phandles is len(args). This is a list of integers. |
| 71 | PhandleInfo = collections.namedtuple('PhandleInfo', ['max_args', 'args']) |
| 72 | |
Simon Glass | 97136eb | 2020-10-03 09:25:19 -0600 | [diff] [blame] | 73 | # Holds a single phandle link, allowing a C struct value to be assigned to point |
| 74 | # to a device |
| 75 | # |
| 76 | # var_node: C variable to assign (e.g. 'dtv_mmc.clocks[0].node') |
| 77 | # dev_name: Name of device to assign to (e.g. 'clock') |
| 78 | PhandleLink = collections.namedtuple('PhandleLink', ['var_node', 'dev_name']) |
| 79 | |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 80 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 81 | def tab_to(num_tabs, line): |
| 82 | """Append tabs to a line of text to reach a tab stop. |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 83 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 84 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 85 | num_tabs (int): Tab stop to obtain (0 = column 0, 1 = column 8, etc.) |
| 86 | line (str): Line of text to append to |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 87 | |
| 88 | Returns: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 89 | str: line with the correct number of tabs appeneded. If the line already |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 90 | extends past that tab stop then a single space is appended. |
| 91 | """ |
| 92 | if len(line) >= num_tabs * 8: |
| 93 | return line + ' ' |
| 94 | return line + '\t' * (num_tabs - len(line) // 8) |
| 95 | |
Simon Glass | 56e0bbe | 2017-06-18 22:09:02 -0600 | [diff] [blame] | 96 | def get_value(ftype, value): |
| 97 | """Get a value as a C expression |
| 98 | |
| 99 | For integers this returns a byte-swapped (little-endian) hex string |
| 100 | For bytes this returns a hex string, e.g. 0x12 |
| 101 | For strings this returns a literal string enclosed in quotes |
| 102 | For booleans this return 'true' |
| 103 | |
| 104 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 105 | ftype (fdt.Type): Data type (fdt_util) |
| 106 | value (bytes): Data value, as a string of bytes |
| 107 | |
| 108 | Returns: |
| 109 | str: String representation of the value |
Simon Glass | 56e0bbe | 2017-06-18 22:09:02 -0600 | [diff] [blame] | 110 | """ |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 111 | if ftype == fdt.Type.INT: |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 112 | val = '%#x' % fdt_util.fdt32_to_cpu(value) |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 113 | elif ftype == fdt.Type.BYTE: |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 114 | char = value[0] |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 115 | val = '%#x' % (ord(char) if isinstance(char, str) else char) |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 116 | elif ftype == fdt.Type.STRING: |
Simon Glass | f02d0eb | 2020-07-07 21:32:06 -0600 | [diff] [blame] | 117 | # Handle evil ACPI backslashes by adding another backslash before them. |
| 118 | # So "\\_SB.GPO0" in the device tree effectively stays like that in C |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 119 | val = '"%s"' % value.replace('\\', '\\\\') |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 120 | elif ftype == fdt.Type.BOOL: |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 121 | val = 'true' |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 122 | else: # ftype == fdt.Type.INT64: |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 123 | val = '%#x' % value |
| 124 | return val |
Simon Glass | 56e0bbe | 2017-06-18 22:09:02 -0600 | [diff] [blame] | 125 | |
Simon Glass | 56e0bbe | 2017-06-18 22:09:02 -0600 | [diff] [blame] | 126 | |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 127 | class DtbPlatdata(): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 128 | """Provide a means to convert device tree binary data to platform data |
| 129 | |
| 130 | The output of this process is C structures which can be used in space- |
| 131 | constrained encvironments where the ~3KB code overhead of device tree |
| 132 | code is not affordable. |
| 133 | |
| 134 | Properties: |
Simon Glass | a542a70 | 2020-12-28 20:35:06 -0700 | [diff] [blame^] | 135 | _scan: Scan object, for scanning and reporting on useful information |
| 136 | from the U-Boot source code |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 137 | _fdt: Fdt object, referencing the device tree |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 138 | _dtb_fname: Filename of the input device tree binary file |
Simon Glass | 1b27273 | 2020-10-03 11:31:25 -0600 | [diff] [blame] | 139 | _valid_nodes: A list of Node object with compatible strings. The list |
| 140 | is ordered by conv_name_to_c(node.name) |
Simon Glass | e36024b | 2017-06-18 22:09:01 -0600 | [diff] [blame] | 141 | _include_disabled: true to include nodes marked status = "disabled" |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 142 | _outfile: The current output file (sys.stdout or a real file) |
| 143 | _lines: Stashed list of output lines for outputting in the future |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 144 | _dirname: Directory to hold output files, or None for none (all files |
| 145 | go to stdout) |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 146 | _struct_data (dict): OrderedDict of dtplat structures to output |
| 147 | key (str): Node name, as a C identifier |
| 148 | value: dict containing structure fields: |
| 149 | key (str): Field name |
| 150 | value: Prop object with field information |
Simon Glass | 1e0f3f4 | 2020-12-28 20:35:03 -0700 | [diff] [blame] | 151 | _basedir (str): Base directory of source tree |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 152 | """ |
Simon Glass | a542a70 | 2020-12-28 20:35:06 -0700 | [diff] [blame^] | 153 | def __init__(self, scan, dtb_fname, include_disabled): |
| 154 | self._scan = scan |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 155 | self._fdt = None |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 156 | self._dtb_fname = dtb_fname |
| 157 | self._valid_nodes = None |
Simon Glass | e36024b | 2017-06-18 22:09:01 -0600 | [diff] [blame] | 158 | self._include_disabled = include_disabled |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 159 | self._outfile = None |
| 160 | self._lines = [] |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 161 | self._dirnames = [None] * len(Ftype) |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 162 | self._struct_data = collections.OrderedDict() |
Simon Glass | 1e0f3f4 | 2020-12-28 20:35:03 -0700 | [diff] [blame] | 163 | self._basedir = None |
Walter Lozano | dac8228 | 2020-07-03 08:07:17 -0300 | [diff] [blame] | 164 | |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 165 | def setup_output_dirs(self, output_dirs): |
| 166 | """Set up the output directories |
| 167 | |
| 168 | This should be done before setup_output() is called |
| 169 | |
| 170 | Args: |
| 171 | output_dirs (tuple of str): |
| 172 | Directory to use for C output files. |
| 173 | Use None to write files relative current directory |
| 174 | Directory to use for H output files. |
| 175 | Defaults to the C output dir |
| 176 | """ |
| 177 | def process_dir(ftype, dirname): |
| 178 | if dirname: |
| 179 | os.makedirs(dirname, exist_ok=True) |
| 180 | self._dirnames[ftype] = dirname |
| 181 | |
| 182 | if output_dirs: |
| 183 | c_dirname = output_dirs[0] |
| 184 | h_dirname = output_dirs[1] if len(output_dirs) > 1 else c_dirname |
| 185 | process_dir(Ftype.SOURCE, c_dirname) |
| 186 | process_dir(Ftype.HEADER, h_dirname) |
| 187 | |
| 188 | def setup_output(self, ftype, fname): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 189 | """Set up the output destination |
| 190 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 191 | Once this is done, future calls to self.out() will output to this |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 192 | file. The file used is as follows: |
| 193 | |
| 194 | self._dirnames[ftype] is None: output to fname, or stdout if None |
| 195 | self._dirnames[ftype] is not None: output to fname in that directory |
| 196 | |
| 197 | Calling this function multiple times will close the old file and open |
| 198 | the new one. If they are the same file, nothing happens and output will |
| 199 | continue to the same file. |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 200 | |
| 201 | Args: |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 202 | ftype (str): Type of file to create ('c' or 'h') |
| 203 | fname (str): Filename to send output to. If there is a directory in |
| 204 | self._dirnames for this file type, it will be put in that |
| 205 | directory |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 206 | """ |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 207 | dirname = self._dirnames[ftype] |
| 208 | if dirname: |
| 209 | pathname = os.path.join(dirname, fname) |
| 210 | if self._outfile: |
| 211 | self._outfile.close() |
| 212 | self._outfile = open(pathname, 'w') |
| 213 | elif fname: |
| 214 | if not self._outfile: |
| 215 | self._outfile = open(fname, 'w') |
Simon Glass | f62cea0 | 2020-12-28 20:34:48 -0700 | [diff] [blame] | 216 | else: |
| 217 | self._outfile = sys.stdout |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 218 | |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 219 | def finish_output(self): |
| 220 | """Finish outputing to a file |
| 221 | |
| 222 | This closes the output file, if one is in use |
| 223 | """ |
| 224 | if self._outfile != sys.stdout: |
| 225 | self._outfile.close() |
| 226 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 227 | def out(self, line): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 228 | """Output a string to the output file |
| 229 | |
| 230 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 231 | line (str): String to output |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 232 | """ |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 233 | self._outfile.write(line) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 234 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 235 | def buf(self, line): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 236 | """Buffer up a string to send later |
| 237 | |
| 238 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 239 | line (str): String to add to our 'buffer' list |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 240 | """ |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 241 | self._lines.append(line) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 242 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 243 | def get_buf(self): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 244 | """Get the contents of the output buffer, and clear it |
| 245 | |
| 246 | Returns: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 247 | list(str): The output buffer, which is then cleared for future use |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 248 | """ |
| 249 | lines = self._lines |
| 250 | self._lines = [] |
| 251 | return lines |
| 252 | |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 253 | def out_header(self, outfile): |
| 254 | """Output a message indicating that this is an auto-generated file |
| 255 | |
| 256 | Args: |
| 257 | outfile: OutputFile describing the file being generated |
| 258 | """ |
Simon Glass | d503114 | 2017-08-29 14:16:01 -0600 | [diff] [blame] | 259 | self.out('''/* |
| 260 | * DO NOT MODIFY |
| 261 | * |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 262 | * %s. |
| 263 | * This was generated by dtoc from a .dtb (device tree binary) file. |
Simon Glass | d503114 | 2017-08-29 14:16:01 -0600 | [diff] [blame] | 264 | */ |
| 265 | |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 266 | ''' % outfile.hdr_comment) |
Simon Glass | d503114 | 2017-08-29 14:16:01 -0600 | [diff] [blame] | 267 | |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 268 | def get_phandle_argc(self, prop, node_name): |
| 269 | """Check if a node contains phandles |
Simon Glass | 2925c26 | 2017-08-29 14:15:54 -0600 | [diff] [blame] | 270 | |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 271 | We have no reliable way of detecting whether a node uses a phandle |
| 272 | or not. As an interim measure, use a list of known property names. |
Simon Glass | 2925c26 | 2017-08-29 14:15:54 -0600 | [diff] [blame] | 273 | |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 274 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 275 | prop (fdt.Prop): Prop object to check |
| 276 | node_name (str): Node name, only used for raising an error |
| 277 | Returns: |
| 278 | int or None: Number of argument cells is this is a phandle, |
| 279 | else None |
| 280 | Raises: |
| 281 | ValueError: if the phandle cannot be parsed or the required property |
| 282 | is not present |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 283 | """ |
Walter Lozano | ad34017 | 2020-06-25 01:10:16 -0300 | [diff] [blame] | 284 | if prop.name in ['clocks', 'cd-gpios']: |
Simon Glass | 760b717 | 2018-07-06 10:27:31 -0600 | [diff] [blame] | 285 | if not isinstance(prop.value, list): |
| 286 | prop.value = [prop.value] |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 287 | val = prop.value |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 288 | i = 0 |
| 289 | |
| 290 | max_args = 0 |
| 291 | args = [] |
| 292 | while i < len(val): |
| 293 | phandle = fdt_util.fdt32_to_cpu(val[i]) |
Simon Glass | 760b717 | 2018-07-06 10:27:31 -0600 | [diff] [blame] | 294 | # If we get to the end of the list, stop. This can happen |
| 295 | # since some nodes have more phandles in the list than others, |
| 296 | # but we allocate enough space for the largest list. So those |
| 297 | # nodes with shorter lists end up with zeroes at the end. |
| 298 | if not phandle: |
| 299 | break |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 300 | target = self._fdt.phandle_to_node.get(phandle) |
| 301 | if not target: |
| 302 | raise ValueError("Cannot parse '%s' in node '%s'" % |
| 303 | (prop.name, node_name)) |
Walter Lozano | ad34017 | 2020-06-25 01:10:16 -0300 | [diff] [blame] | 304 | cells = None |
| 305 | for prop_name in ['#clock-cells', '#gpio-cells']: |
| 306 | cells = target.props.get(prop_name) |
| 307 | if cells: |
| 308 | break |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 309 | if not cells: |
Walter Lozano | ad34017 | 2020-06-25 01:10:16 -0300 | [diff] [blame] | 310 | raise ValueError("Node '%s' has no cells property" % |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 311 | (target.name)) |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 312 | num_args = fdt_util.fdt32_to_cpu(cells.value) |
| 313 | max_args = max(max_args, num_args) |
| 314 | args.append(num_args) |
| 315 | i += 1 + num_args |
| 316 | return PhandleInfo(max_args, args) |
| 317 | return None |
Simon Glass | 2925c26 | 2017-08-29 14:15:54 -0600 | [diff] [blame] | 318 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 319 | def scan_dtb(self): |
Anatolij Gustschin | f1a7ba1 | 2017-08-18 17:58:51 +0200 | [diff] [blame] | 320 | """Scan the device tree to obtain a tree of nodes and properties |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 321 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 322 | Once this is done, self._fdt.GetRoot() can be called to obtain the |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 323 | device tree root node, and progress from there. |
| 324 | """ |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 325 | self._fdt = fdt.FdtScan(self._dtb_fname) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 326 | |
Simon Glass | 1b27273 | 2020-10-03 11:31:25 -0600 | [diff] [blame] | 327 | def scan_node(self, root, valid_nodes): |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 328 | """Scan a node and subnodes to build a tree of node and phandle info |
| 329 | |
Simon Glass | 72ab7c5 | 2017-08-29 14:15:53 -0600 | [diff] [blame] | 330 | This adds each node to self._valid_nodes. |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 331 | |
| 332 | Args: |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 333 | root (Node): Root node for scan |
| 334 | valid_nodes (list of Node): List of Node objects to add to |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 335 | """ |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 336 | for node in root.subnodes: |
| 337 | if 'compatible' in node.props: |
| 338 | status = node.props.get('status') |
Simon Glass | e36024b | 2017-06-18 22:09:01 -0600 | [diff] [blame] | 339 | if (not self._include_disabled and not status or |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 340 | status.value != 'disabled'): |
Simon Glass | 1b27273 | 2020-10-03 11:31:25 -0600 | [diff] [blame] | 341 | valid_nodes.append(node) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 342 | |
| 343 | # recurse to handle any subnodes |
Simon Glass | 1b27273 | 2020-10-03 11:31:25 -0600 | [diff] [blame] | 344 | self.scan_node(node, valid_nodes) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 345 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 346 | def scan_tree(self): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 347 | """Scan the device tree for useful information |
| 348 | |
| 349 | This fills in the following properties: |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 350 | _valid_nodes: A list of nodes we wish to consider include in the |
| 351 | platform data |
| 352 | """ |
Simon Glass | 1b27273 | 2020-10-03 11:31:25 -0600 | [diff] [blame] | 353 | valid_nodes = [] |
| 354 | self.scan_node(self._fdt.GetRoot(), valid_nodes) |
| 355 | self._valid_nodes = sorted(valid_nodes, |
| 356 | key=lambda x: conv_name_to_c(x.name)) |
| 357 | for idx, node in enumerate(self._valid_nodes): |
| 358 | node.idx = idx |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 359 | |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 360 | @staticmethod |
| 361 | def get_num_cells(node): |
| 362 | """Get the number of cells in addresses and sizes for this node |
| 363 | |
| 364 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 365 | node (fdt.None): Node to check |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 366 | |
| 367 | Returns: |
| 368 | Tuple: |
| 369 | Number of address cells for this node |
| 370 | Number of size cells for this node |
| 371 | """ |
| 372 | parent = node.parent |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 373 | num_addr, num_size = 2, 2 |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 374 | if parent: |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 375 | addr_prop = parent.props.get('#address-cells') |
| 376 | size_prop = parent.props.get('#size-cells') |
| 377 | if addr_prop: |
| 378 | num_addr = fdt_util.fdt32_to_cpu(addr_prop.value) |
| 379 | if size_prop: |
| 380 | num_size = fdt_util.fdt32_to_cpu(size_prop.value) |
| 381 | return num_addr, num_size |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 382 | |
| 383 | def scan_reg_sizes(self): |
| 384 | """Scan for 64-bit 'reg' properties and update the values |
| 385 | |
| 386 | This finds 'reg' properties with 64-bit data and converts the value to |
| 387 | an array of 64-values. This allows it to be output in a way that the |
| 388 | C code can read. |
| 389 | """ |
| 390 | for node in self._valid_nodes: |
| 391 | reg = node.props.get('reg') |
| 392 | if not reg: |
| 393 | continue |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 394 | num_addr, num_size = self.get_num_cells(node) |
| 395 | total = num_addr + num_size |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 396 | |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 397 | if reg.type != fdt.Type.INT: |
Simon Glass | dfe5f5b | 2018-07-06 10:27:32 -0600 | [diff] [blame] | 398 | raise ValueError("Node '%s' reg property is not an int" % |
| 399 | node.name) |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 400 | if len(reg.value) % total: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 401 | raise ValueError( |
| 402 | "Node '%s' reg property has %d cells " |
| 403 | 'which is not a multiple of na + ns = %d + %d)' % |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 404 | (node.name, len(reg.value), num_addr, num_size)) |
| 405 | reg.num_addr = num_addr |
| 406 | reg.num_size = num_size |
| 407 | if num_addr != 1 or num_size != 1: |
Simon Glass | 5ea9dcc | 2020-11-08 20:36:17 -0700 | [diff] [blame] | 408 | reg.type = fdt.Type.INT64 |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 409 | i = 0 |
| 410 | new_value = [] |
| 411 | val = reg.value |
| 412 | if not isinstance(val, list): |
| 413 | val = [val] |
| 414 | while i < len(val): |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 415 | addr = fdt_util.fdt_cells_to_cpu(val[i:], reg.num_addr) |
| 416 | i += num_addr |
| 417 | size = fdt_util.fdt_cells_to_cpu(val[i:], reg.num_size) |
| 418 | i += num_size |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 419 | new_value += [addr, size] |
| 420 | reg.value = new_value |
| 421 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 422 | def scan_structs(self): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 423 | """Scan the device tree building up the C structures we will use. |
| 424 | |
| 425 | Build a dict keyed by C struct name containing a dict of Prop |
| 426 | object for each struct field (keyed by property name). Where the |
| 427 | same struct appears multiple times, try to use the 'widest' |
| 428 | property, i.e. the one with a type which can express all others. |
| 429 | |
| 430 | Once the widest property is determined, all other properties are |
| 431 | updated to match that width. |
Simon Glass | e4fb5fa | 2020-10-03 11:31:24 -0600 | [diff] [blame] | 432 | |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 433 | The results are written to self._struct_data |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 434 | """ |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 435 | structs = self._struct_data |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 436 | for node in self._valid_nodes: |
Simon Glass | a542a70 | 2020-12-28 20:35:06 -0700 | [diff] [blame^] | 437 | node_name, _ = self._scan.get_normalized_compat_name(node) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 438 | fields = {} |
| 439 | |
| 440 | # Get a list of all the valid properties in this node. |
| 441 | for name, prop in node.props.items(): |
| 442 | if name not in PROP_IGNORE_LIST and name[0] != '#': |
| 443 | fields[name] = copy.deepcopy(prop) |
| 444 | |
| 445 | # If we've seen this node_name before, update the existing struct. |
| 446 | if node_name in structs: |
| 447 | struct = structs[node_name] |
| 448 | for name, prop in fields.items(): |
| 449 | oldprop = struct.get(name) |
| 450 | if oldprop: |
| 451 | oldprop.Widen(prop) |
| 452 | else: |
| 453 | struct[name] = prop |
| 454 | |
| 455 | # Otherwise store this as a new struct. |
| 456 | else: |
| 457 | structs[node_name] = fields |
| 458 | |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 459 | for node in self._valid_nodes: |
Simon Glass | a542a70 | 2020-12-28 20:35:06 -0700 | [diff] [blame^] | 460 | node_name, _ = self._scan.get_normalized_compat_name(node) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 461 | struct = structs[node_name] |
| 462 | for name, prop in node.props.items(): |
| 463 | if name not in PROP_IGNORE_LIST and name[0] != '#': |
| 464 | prop.Widen(struct[name]) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 465 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 466 | def scan_phandles(self): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 467 | """Figure out what phandles each node uses |
| 468 | |
| 469 | We need to be careful when outputing nodes that use phandles since |
| 470 | they must come after the declaration of the phandles in the C file. |
| 471 | Otherwise we get a compiler error since the phandle struct is not yet |
| 472 | declared. |
| 473 | |
| 474 | This function adds to each node a list of phandle nodes that the node |
| 475 | depends on. This allows us to output things in the right order. |
| 476 | """ |
| 477 | for node in self._valid_nodes: |
| 478 | node.phandles = set() |
| 479 | for pname, prop in node.props.items(): |
| 480 | if pname in PROP_IGNORE_LIST or pname[0] == '#': |
| 481 | continue |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 482 | info = self.get_phandle_argc(prop, node.name) |
| 483 | if info: |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 484 | # Process the list as pairs of (phandle, id) |
Simon Glass | 634eba4 | 2017-08-29 14:15:59 -0600 | [diff] [blame] | 485 | pos = 0 |
| 486 | for args in info.args: |
| 487 | phandle_cell = prop.value[pos] |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 488 | phandle = fdt_util.fdt32_to_cpu(phandle_cell) |
| 489 | target_node = self._fdt.phandle_to_node[phandle] |
| 490 | node.phandles.add(target_node) |
Simon Glass | 634eba4 | 2017-08-29 14:15:59 -0600 | [diff] [blame] | 491 | pos += 1 + args |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 492 | |
| 493 | |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 494 | def generate_structs(self): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 495 | """Generate struct defintions for the platform data |
| 496 | |
| 497 | This writes out the body of a header file consisting of structure |
| 498 | definitions for node in self._valid_nodes. See the documentation in |
Heinrich Schuchardt | 2799a69 | 2020-02-25 21:35:39 +0100 | [diff] [blame] | 499 | doc/driver-model/of-plat.rst for more information. |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 500 | """ |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 501 | structs = self._struct_data |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 502 | self.out('#include <stdbool.h>\n') |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 503 | self.out('#include <linux/libfdt.h>\n') |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 504 | |
| 505 | # Output the struct definition |
| 506 | for name in sorted(structs): |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 507 | self.out('struct %s%s {\n' % (STRUCT_PREFIX, name)) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 508 | for pname in sorted(structs[name]): |
| 509 | prop = structs[name][pname] |
Simon Glass | 8fed2eb | 2017-08-29 14:15:55 -0600 | [diff] [blame] | 510 | info = self.get_phandle_argc(prop, structs[name]) |
| 511 | if info: |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 512 | # For phandles, include a reference to the target |
Simon Glass | 0d15463 | 2017-08-29 14:15:56 -0600 | [diff] [blame] | 513 | struct_name = 'struct phandle_%d_arg' % info.max_args |
| 514 | self.out('\t%s%s[%d]' % (tab_to(2, struct_name), |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 515 | conv_name_to_c(prop.name), |
Simon Glass | 634eba4 | 2017-08-29 14:15:59 -0600 | [diff] [blame] | 516 | len(info.args))) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 517 | else: |
| 518 | ptype = TYPE_NAMES[prop.type] |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 519 | self.out('\t%s%s' % (tab_to(2, ptype), |
| 520 | conv_name_to_c(prop.name))) |
| 521 | if isinstance(prop.value, list): |
| 522 | self.out('[%d]' % len(prop.value)) |
| 523 | self.out(';\n') |
| 524 | self.out('};\n') |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 525 | |
Simon Glass | abf0c80 | 2020-12-23 08:11:20 -0700 | [diff] [blame] | 526 | def _output_list(self, node, prop): |
| 527 | """Output the C code for a devicetree property that holds a list |
| 528 | |
| 529 | Args: |
| 530 | node (fdt.Node): Node to output |
| 531 | prop (fdt.Prop): Prop to output |
| 532 | """ |
| 533 | self.buf('{') |
| 534 | vals = [] |
| 535 | # For phandles, output a reference to the platform data |
| 536 | # of the target node. |
| 537 | info = self.get_phandle_argc(prop, node.name) |
| 538 | if info: |
| 539 | # Process the list as pairs of (phandle, id) |
| 540 | pos = 0 |
| 541 | for args in info.args: |
| 542 | phandle_cell = prop.value[pos] |
| 543 | phandle = fdt_util.fdt32_to_cpu(phandle_cell) |
| 544 | target_node = self._fdt.phandle_to_node[phandle] |
| 545 | arg_values = [] |
| 546 | for i in range(args): |
| 547 | arg_values.append( |
| 548 | str(fdt_util.fdt32_to_cpu(prop.value[pos + 1 + i]))) |
| 549 | pos += 1 + args |
| 550 | vals.append('\t{%d, {%s}}' % (target_node.idx, |
| 551 | ', '.join(arg_values))) |
| 552 | for val in vals: |
| 553 | self.buf('\n\t\t%s,' % val) |
| 554 | else: |
| 555 | for val in prop.value: |
| 556 | vals.append(get_value(prop.type, val)) |
| 557 | |
| 558 | # Put 8 values per line to avoid very long lines. |
| 559 | for i in range(0, len(vals), 8): |
| 560 | if i: |
| 561 | self.buf(',\n\t\t') |
| 562 | self.buf(', '.join(vals[i:i + 8])) |
| 563 | self.buf('}') |
| 564 | |
Simon Glass | 221ddc1 | 2020-12-23 08:11:21 -0700 | [diff] [blame] | 565 | def _declare_device(self, var_name, struct_name, node_parent): |
| 566 | """Add a device declaration to the output |
| 567 | |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 568 | This declares a U_BOOT_DRVINFO() for the device being processed |
Simon Glass | 221ddc1 | 2020-12-23 08:11:21 -0700 | [diff] [blame] | 569 | |
| 570 | Args: |
| 571 | var_name (str): C name for the node |
| 572 | struct_name (str): Name for the dt struct associated with the node |
| 573 | node_parent (Node): Parent of the node (or None if none) |
| 574 | """ |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 575 | self.buf('U_BOOT_DRVINFO(%s) = {\n' % var_name) |
Simon Glass | 221ddc1 | 2020-12-23 08:11:21 -0700 | [diff] [blame] | 576 | self.buf('\t.name\t\t= "%s",\n' % struct_name) |
| 577 | self.buf('\t.plat\t= &%s%s,\n' % (VAL_PREFIX, var_name)) |
| 578 | self.buf('\t.plat_size\t= sizeof(%s%s),\n' % (VAL_PREFIX, var_name)) |
| 579 | idx = -1 |
| 580 | if node_parent and node_parent in self._valid_nodes: |
| 581 | idx = node_parent.idx |
| 582 | self.buf('\t.parent_idx\t= %d,\n' % idx) |
| 583 | self.buf('};\n') |
| 584 | self.buf('\n') |
| 585 | |
Simon Glass | 161dac1 | 2020-12-23 08:11:22 -0700 | [diff] [blame] | 586 | def _output_prop(self, node, prop): |
| 587 | """Output a line containing the value of a struct member |
| 588 | |
| 589 | Args: |
| 590 | node (Node): Node being output |
| 591 | prop (Prop): Prop object to output |
| 592 | """ |
| 593 | if prop.name in PROP_IGNORE_LIST or prop.name[0] == '#': |
| 594 | return |
| 595 | member_name = conv_name_to_c(prop.name) |
| 596 | self.buf('\t%s= ' % tab_to(3, '.' + member_name)) |
| 597 | |
| 598 | # Special handling for lists |
| 599 | if isinstance(prop.value, list): |
| 600 | self._output_list(node, prop) |
| 601 | else: |
| 602 | self.buf(get_value(prop.type, prop.value)) |
| 603 | self.buf(',\n') |
| 604 | |
| 605 | def _output_values(self, var_name, struct_name, node): |
| 606 | """Output the definition of a device's struct values |
| 607 | |
| 608 | Args: |
| 609 | var_name (str): C name for the node |
| 610 | struct_name (str): Name for the dt struct associated with the node |
| 611 | node (Node): Node being output |
| 612 | """ |
| 613 | self.buf('static struct %s%s %s%s = {\n' % |
| 614 | (STRUCT_PREFIX, struct_name, VAL_PREFIX, var_name)) |
| 615 | for pname in sorted(node.props): |
| 616 | self._output_prop(node, node.props[pname]) |
| 617 | self.buf('};\n') |
| 618 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 619 | def output_node(self, node): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 620 | """Output the C code for a node |
| 621 | |
| 622 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 623 | node (fdt.Node): node to output |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 624 | """ |
Simon Glass | a542a70 | 2020-12-28 20:35:06 -0700 | [diff] [blame^] | 625 | struct_name, _ = self._scan.get_normalized_compat_name(node) |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 626 | var_name = conv_name_to_c(node.name) |
Simon Glass | 1b27273 | 2020-10-03 11:31:25 -0600 | [diff] [blame] | 627 | self.buf('/* Node %s index %d */\n' % (node.path, node.idx)) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 628 | |
Simon Glass | 161dac1 | 2020-12-23 08:11:22 -0700 | [diff] [blame] | 629 | self._output_values(var_name, struct_name, node) |
Simon Glass | 221ddc1 | 2020-12-23 08:11:21 -0700 | [diff] [blame] | 630 | self._declare_device(var_name, struct_name, node.parent) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 631 | |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 632 | self.out(''.join(self.get_buf())) |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 633 | |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 634 | def generate_plat(self): |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 635 | """Generate device defintions for the platform data |
| 636 | |
| 637 | This writes out C platform data initialisation data and |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 638 | U_BOOT_DRVINFO() declarations for each valid node. Where a node has |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 639 | multiple compatible strings, a #define is used to make them equivalent. |
| 640 | |
Heinrich Schuchardt | 2799a69 | 2020-02-25 21:35:39 +0100 | [diff] [blame] | 641 | See the documentation in doc/driver-model/of-plat.rst for more |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 642 | information. |
| 643 | """ |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 644 | self.out('/* Allow use of U_BOOT_DRVINFO() in this file */\n') |
Simon Glass | f31fa99 | 2020-12-28 20:35:01 -0700 | [diff] [blame] | 645 | self.out('#define DT_PLAT_C\n') |
Simon Glass | cb43ac1 | 2020-10-03 11:31:41 -0600 | [diff] [blame] | 646 | self.out('\n') |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 647 | self.out('#include <common.h>\n') |
| 648 | self.out('#include <dm.h>\n') |
| 649 | self.out('#include <dt-structs.h>\n') |
| 650 | self.out('\n') |
Simon Glass | 7581c01 | 2017-06-18 22:08:58 -0600 | [diff] [blame] | 651 | |
Simon Glass | 9eca08d | 2020-12-28 20:35:04 -0700 | [diff] [blame] | 652 | for node in self._valid_nodes: |
Simon Glass | 2be282c | 2017-06-18 22:08:59 -0600 | [diff] [blame] | 653 | self.output_node(node) |
Simon Glass | fa0ea5b | 2017-06-18 22:09:03 -0600 | [diff] [blame] | 654 | |
Walter Lozano | 51f1263 | 2020-06-25 01:10:13 -0300 | [diff] [blame] | 655 | self.out(''.join(self.get_buf())) |
Simon Glass | fa0ea5b | 2017-06-18 22:09:03 -0600 | [diff] [blame] | 656 | |
Simon Glass | 192c111 | 2020-12-28 20:34:50 -0700 | [diff] [blame] | 657 | |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 658 | # Types of output file we understand |
| 659 | # key: Command used to generate this file |
| 660 | # value: OutputFile for this command |
| 661 | OUTPUT_FILES = { |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 662 | 'struct': |
| 663 | OutputFile(Ftype.HEADER, 'dt-structs-gen.h', |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 664 | DtbPlatdata.generate_structs, |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 665 | 'Defines the structs used to hold devicetree data'), |
| 666 | 'platdata': |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 667 | OutputFile(Ftype.SOURCE, 'dt-plat.c', DtbPlatdata.generate_plat, |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 668 | 'Declares the U_BOOT_DRIVER() records and platform data'), |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | |
Simon Glass | 192c111 | 2020-12-28 20:34:50 -0700 | [diff] [blame] | 672 | def run_steps(args, dtb_file, include_disabled, output, output_dirs, |
Simon Glass | 1e0f3f4 | 2020-12-28 20:35:03 -0700 | [diff] [blame] | 673 | warning_disabled=False, drivers_additional=None, basedir=None): |
Simon Glass | fa0ea5b | 2017-06-18 22:09:03 -0600 | [diff] [blame] | 674 | """Run all the steps of the dtoc tool |
| 675 | |
| 676 | Args: |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 677 | args (list): List of non-option arguments provided to the problem |
| 678 | dtb_file (str): Filename of dtb file to process |
| 679 | include_disabled (bool): True to include disabled nodes |
Simon Glass | f62cea0 | 2020-12-28 20:34:48 -0700 | [diff] [blame] | 680 | output (str): Name of output file (None for stdout) |
Simon Glass | 192c111 | 2020-12-28 20:34:50 -0700 | [diff] [blame] | 681 | output_dirs (tuple of str): |
| 682 | Directory to put C output files |
| 683 | Directory to put H output files |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 684 | warning_disabled (bool): True to avoid showing warnings about missing |
| 685 | drivers |
Simon Glass | ccc3da7 | 2020-12-23 08:11:19 -0700 | [diff] [blame] | 686 | drivers_additional (list): List of additional drivers to use during |
Simon Glass | 78128d5 | 2020-12-03 16:55:16 -0700 | [diff] [blame] | 687 | scanning |
Simon Glass | 1e0f3f4 | 2020-12-28 20:35:03 -0700 | [diff] [blame] | 688 | basedir (str): Base directory of U-Boot source code. Defaults to the |
| 689 | grandparent of this file's directory |
Simon Glass | 9b33038 | 2020-11-08 20:36:21 -0700 | [diff] [blame] | 690 | Raises: |
| 691 | ValueError: if args has no command, or an unknown command |
Simon Glass | fa0ea5b | 2017-06-18 22:09:03 -0600 | [diff] [blame] | 692 | """ |
| 693 | if not args: |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 694 | raise ValueError('Please specify a command: struct, platdata, all') |
| 695 | if output and output_dirs and any(output_dirs): |
| 696 | raise ValueError('Must specify either output or output_dirs, not both') |
Simon Glass | fa0ea5b | 2017-06-18 22:09:03 -0600 | [diff] [blame] | 697 | |
Simon Glass | a542a70 | 2020-12-28 20:35:06 -0700 | [diff] [blame^] | 698 | scan = src_scan.Scanner(basedir, drivers_additional, warning_disabled) |
| 699 | plat = DtbPlatdata(scan, dtb_file, include_disabled) |
| 700 | scan.scan_drivers() |
Simon Glass | fa0ea5b | 2017-06-18 22:09:03 -0600 | [diff] [blame] | 701 | plat.scan_dtb() |
| 702 | plat.scan_tree() |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 703 | plat.scan_reg_sizes() |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 704 | plat.setup_output_dirs(output_dirs) |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 705 | plat.scan_structs() |
Simon Glass | fa0ea5b | 2017-06-18 22:09:03 -0600 | [diff] [blame] | 706 | plat.scan_phandles() |
| 707 | |
Simon Glass | 10cbd3b | 2020-12-28 20:34:52 -0700 | [diff] [blame] | 708 | cmds = args[0].split(',') |
| 709 | if 'all' in cmds: |
| 710 | cmds = sorted(OUTPUT_FILES.keys()) |
| 711 | for cmd in cmds: |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 712 | outfile = OUTPUT_FILES.get(cmd) |
| 713 | if not outfile: |
| 714 | raise ValueError("Unknown command '%s': (use: %s)" % |
Simon Glass | 10cbd3b | 2020-12-28 20:34:52 -0700 | [diff] [blame] | 715 | (cmd, ', '.join(sorted(OUTPUT_FILES.keys())))) |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 716 | plat.setup_output(outfile.ftype, |
| 717 | outfile.fname if output_dirs else output) |
Simon Glass | d1055d6 | 2020-12-28 20:35:00 -0700 | [diff] [blame] | 718 | plat.out_header(outfile) |
Simon Glass | a7d5f96 | 2020-12-28 20:35:02 -0700 | [diff] [blame] | 719 | outfile.method(plat) |
Simon Glass | be44f27 | 2020-12-28 20:34:51 -0700 | [diff] [blame] | 720 | plat.finish_output() |