blob: 6716da9c659f3cce2dd710324a868206867b7b36 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassb5220bc2011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glassb5220bc2011-10-24 19:15:32 +00004 */
5
Simon Glass5bfa78d2012-07-12 05:25:02 +00006#ifndef __fdtdec_h
7#define __fdtdec_h
Simon Glassb5220bc2011-10-24 19:15:32 +00008
9/*
10 * This file contains convenience functions for decoding useful and
11 * enlightening information from FDTs. It is intended to be used by device
12 * drivers and board-specific code within U-Boot. It aims to reduce the
13 * amount of FDT munging required within U-Boot itself, so that driver code
14 * changes to support FDT are minimized.
15 */
16
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Bin Menga62e84d2014-12-31 16:05:11 +080018#include <pci.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000019
20/*
21 * A typedef for a physical address. Note that fdt data is always big
22 * endian even on a litle endian machine.
23 */
York Sun28445aa2015-08-03 12:02:04 -070024typedef phys_addr_t fdt_addr_t;
25typedef phys_size_t fdt_size_t;
Thierry Reding4f253ad2019-03-21 19:10:00 +010026
Chen Guanqiaoaa351a12021-04-12 14:51:11 +080027#define FDT_SIZE_T_NONE (-1U)
28
29#ifdef CONFIG_PHYS_64BIT
Patrice Chotard9876ae72022-01-04 08:42:48 +010030#define FDT_ADDR_T_NONE ((ulong)(-1))
31
Simon Glassb5220bc2011-10-24 19:15:32 +000032#define fdt_addr_to_cpu(reg) be64_to_cpu(reg)
Simon Glassf20c4612012-10-25 16:31:00 +000033#define fdt_size_to_cpu(reg) be64_to_cpu(reg)
Thierry Reding155d0a02019-03-21 19:09:59 +010034#define cpu_to_fdt_addr(reg) cpu_to_be64(reg)
35#define cpu_to_fdt_size(reg) cpu_to_be64(reg)
Simon Glassc20ee0e2017-08-29 14:15:50 -060036typedef fdt64_t fdt_val_t;
Simon Glassb5220bc2011-10-24 19:15:32 +000037#else
Patrice Chotard9876ae72022-01-04 08:42:48 +010038#define FDT_ADDR_T_NONE (-1U)
39
Simon Glassb5220bc2011-10-24 19:15:32 +000040#define fdt_addr_to_cpu(reg) be32_to_cpu(reg)
Simon Glassf20c4612012-10-25 16:31:00 +000041#define fdt_size_to_cpu(reg) be32_to_cpu(reg)
Thierry Reding155d0a02019-03-21 19:09:59 +010042#define cpu_to_fdt_addr(reg) cpu_to_be32(reg)
43#define cpu_to_fdt_size(reg) cpu_to_be32(reg)
Simon Glassc20ee0e2017-08-29 14:15:50 -060044typedef fdt32_t fdt_val_t;
Simon Glassb5220bc2011-10-24 19:15:32 +000045#endif
46
47/* Information obtained about memory from the FDT */
48struct fdt_memory {
49 fdt_addr_t start;
50 fdt_addr_t end;
51};
52
Michael Pratt90c08fa2018-06-11 13:07:09 -060053struct bd_info;
54
Simon Glass39605c62021-12-16 20:59:33 -070055/**
56 * enum fdt_source_t - indicates where the devicetree came from
57 *
58 * These are listed in approximate order of desirability after FDTSRC_NONE
59 *
60 * @FDTSRC_SEPARATE: Appended to U-Boot. This is the normal approach if U-Boot
61 * is the only firmware being booted
62 * @FDTSRC_FIT: Found in a multi-dtb FIT. This should be used when U-Boot must
63 * select a devicetree from many options
64 * @FDTSRC_BOARD: Located by custom board code. This should only be used when
65 * the prior stage does not support FDTSRC_PASSAGE
66 * @FDTSRC_EMBED: Embedded into U-Boot executable. This should onyl be used when
67 * U-Boot is packaged as an ELF file, e.g. for debugging purposes
68 * @FDTSRC_ENV: Provided by the fdtcontroladdr environment variable. This should
69 * be used for debugging/development only
70 * @FDTSRC_NONE: No devicetree at all
71 */
72enum fdt_source_t {
73 FDTSRC_SEPARATE,
74 FDTSRC_FIT,
75 FDTSRC_BOARD,
76 FDTSRC_EMBED,
77 FDTSRC_ENV,
78};
79
Thierry Reding56f42242014-08-26 17:33:53 +020080/*
81 * Information about a resource. start is the first address of the resource
82 * and end is the last address (inclusive). The length of the resource will
83 * be equal to: end - start + 1.
84 */
85struct fdt_resource {
86 fdt_addr_t start;
87 fdt_addr_t end;
88};
89
Bin Menga62e84d2014-12-31 16:05:11 +080090enum fdt_pci_space {
91 FDT_PCI_SPACE_CONFIG = 0,
92 FDT_PCI_SPACE_IO = 0x01000000,
93 FDT_PCI_SPACE_MEM32 = 0x02000000,
94 FDT_PCI_SPACE_MEM64 = 0x03000000,
95 FDT_PCI_SPACE_MEM32_PREF = 0x42000000,
96 FDT_PCI_SPACE_MEM64_PREF = 0x43000000,
97};
98
99#define FDT_PCI_ADDR_CELLS 3
100#define FDT_PCI_SIZE_CELLS 2
101#define FDT_PCI_REG_SIZE \
102 ((FDT_PCI_ADDR_CELLS + FDT_PCI_SIZE_CELLS) * sizeof(u32))
103
104/*
105 * The Open Firmware spec defines PCI physical address as follows:
106 *
107 * bits# 31 .... 24 23 .... 16 15 .... 08 07 .... 00
108 *
109 * phys.hi cell: npt000ss bbbbbbbb dddddfff rrrrrrrr
110 * phys.mid cell: hhhhhhhh hhhhhhhh hhhhhhhh hhhhhhhh
111 * phys.lo cell: llllllll llllllll llllllll llllllll
112 *
113 * where:
114 *
115 * n: is 0 if the address is relocatable, 1 otherwise
116 * p: is 1 if addressable region is prefetchable, 0 otherwise
117 * t: is 1 if the address is aliased (for non-relocatable I/O) below 1MB
118 * (for Memory), or below 64KB (for relocatable I/O)
119 * ss: is the space code, denoting the address space
120 * bbbbbbbb: is the 8-bit Bus Number
121 * ddddd: is the 5-bit Device Number
122 * fff: is the 3-bit Function Number
123 * rrrrrrrr: is the 8-bit Register Number
124 * hhhhhhhh: is a 32-bit unsigned number
125 * llllllll: is a 32-bit unsigned number
126 */
127struct fdt_pci_addr {
128 u32 phys_hi;
129 u32 phys_mid;
130 u32 phys_lo;
131};
132
Simon Glass2ebebb92019-12-28 10:44:42 -0700133extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
134extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
135
Simon Glassd893b8a2021-12-16 20:59:26 -0700136/* Get a pointer to the embedded devicetree, if there is one, else NULL */
137static inline u8 *dtb_dt_embedded(void)
138{
139#ifdef CONFIG_OF_EMBED
140# ifdef CONFIG_SPL_BUILD
141 return __dtb_dt_spl_begin;
142# else
143 return __dtb_dt_begin;
144# endif
145#else
146 return NULL;
147#endif
148}
149
Thierry Reding56f42242014-08-26 17:33:53 +0200150/**
151 * Compute the size of a resource.
152 *
153 * @param res the resource to operate on
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100154 * Return: the size of the resource
Thierry Reding56f42242014-08-26 17:33:53 +0200155 */
156static inline fdt_size_t fdt_resource_size(const struct fdt_resource *res)
157{
158 return res->end - res->start + 1;
159}
160
Simon Glassb5220bc2011-10-24 19:15:32 +0000161/**
162 * Compat types that we know about and for which we might have drivers.
163 * Each is named COMPAT_<dir>_<filename> where <dir> is the directory
164 * within drivers.
165 */
166enum fdt_compat_id {
167 COMPAT_UNKNOWN,
Allen Martin00a27492012-08-31 08:30:00 +0000168 COMPAT_NVIDIA_TEGRA20_EMC, /* Tegra20 memory controller */
169 COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */
Jim Lin312693c2012-07-29 20:53:29 +0000170 COMPAT_NVIDIA_TEGRA20_NAND, /* Tegra2 NAND controller */
Thierry Reding79c7a902014-12-09 22:25:09 -0700171 COMPAT_NVIDIA_TEGRA124_XUSB_PADCTL,
172 /* Tegra124 XUSB pad controller */
Tom Warren7aaa5a62015-03-04 16:36:00 -0700173 COMPAT_NVIDIA_TEGRA210_XUSB_PADCTL,
174 /* Tegra210 XUSB pad controller */
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +0000175 COMPAT_SAMSUNG_EXYNOS_USB_PHY, /* Exynos phy controller for usb2.0 */
Vivek Gautam108b85b2013-09-14 14:02:48 +0530176 COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos phy controller for usb3.0 */
Akshay Saraswat618766c2013-02-25 01:13:01 +0000177 COMPAT_SAMSUNG_EXYNOS_TMU, /* Exynos TMU */
Piotr Wilczekde461c52014-03-07 14:59:39 +0100178 COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +0900179 COMPAT_SAMSUNG_EXYNOS_DWMMC, /* Exynos DWMMC controller */
Simon Glassbb8215f2013-03-11 06:08:08 +0000180 COMPAT_GENERIC_SPI_FLASH, /* Generic SPI Flash chip */
Ajay Kumar45c480c2014-09-05 16:53:33 +0530181 COMPAT_SAMSUNG_EXYNOS_SYSMMU, /* Exynos sysmmu */
Simon Glass77f9b1f2014-11-12 22:42:21 -0700182 COMPAT_INTEL_MICROCODE, /* Intel microcode update */
Bin Mengc89ada02015-02-05 23:42:26 +0800183 COMPAT_INTEL_QRK_MRC, /* Intel Quark MRC */
Marek Vasut6ab00db2015-07-25 19:33:56 +0200184 COMPAT_ALTERA_SOCFPGA_DWMAC, /* SoCFPGA Ethernet controller */
Marek Vasut129adf52015-07-25 10:48:14 +0200185 COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */
Marek Vasutef4b01b2015-12-05 19:28:44 +0100186 COMPAT_ALTERA_SOCFPGA_DWC2USB, /* SoCFPGA DWC2 USB controller */
Andrew Bradfordf3b84a32015-08-07 08:36:35 -0400187 COMPAT_INTEL_BAYTRAIL_FSP, /* Intel Bay Trail FSP */
188 COMPAT_INTEL_BAYTRAIL_FSP_MDP, /* Intel FSP memory-down params */
Bin Meng394e0b62015-12-11 02:55:44 -0800189 COMPAT_INTEL_IVYBRIDGE_FSP, /* Intel Ivy Bridge FSP */
Ley Foon Tane11b5e82017-04-05 17:32:47 +0800190 COMPAT_ALTERA_SOCFPGA_CLK, /* SoCFPGA Clock initialization */
191 COMPAT_ALTERA_SOCFPGA_PINCTRL_SINGLE, /* SoCFPGA pinctrl-single */
192 COMPAT_ALTERA_SOCFPGA_H2F_BRG, /* SoCFPGA hps2fpga bridge */
193 COMPAT_ALTERA_SOCFPGA_LWH2F_BRG, /* SoCFPGA lwhps2fpga bridge */
194 COMPAT_ALTERA_SOCFPGA_F2H_BRG, /* SoCFPGA fpga2hps bridge */
195 COMPAT_ALTERA_SOCFPGA_F2SDR0, /* SoCFPGA fpga2SDRAM0 bridge */
196 COMPAT_ALTERA_SOCFPGA_F2SDR1, /* SoCFPGA fpga2SDRAM1 bridge */
197 COMPAT_ALTERA_SOCFPGA_F2SDR2, /* SoCFPGA fpga2SDRAM2 bridge */
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +0800198 COMPAT_ALTERA_SOCFPGA_FPGA0, /* SOCFPGA FPGA manager */
199 COMPAT_ALTERA_SOCFPGA_NOC, /* SOCFPGA Arria 10 NOC */
Marek Vasut19c8fc72018-05-12 11:56:10 +0200200 COMPAT_ALTERA_SOCFPGA_CLK_INIT, /* SOCFPGA Arria 10 clk init */
Simon Glassb5220bc2011-10-24 19:15:32 +0000201
202 COMPAT_COUNT,
203};
204
Simon Glass57068a72015-01-05 20:05:26 -0700205#define MAX_PHANDLE_ARGS 16
206struct fdtdec_phandle_args {
207 int node;
208 int args_count;
209 uint32_t args[MAX_PHANDLE_ARGS];
210};
211
212/**
213 * fdtdec_parse_phandle_with_args() - Find a node pointed by phandle in a list
214 *
215 * This function is useful to parse lists of phandles and their arguments.
216 *
217 * Example:
218 *
219 * phandle1: node1 {
220 * #list-cells = <2>;
221 * }
222 *
223 * phandle2: node2 {
224 * #list-cells = <1>;
225 * }
226 *
227 * node3 {
228 * list = <&phandle1 1 2 &phandle2 3>;
229 * }
230 *
231 * To get a device_node of the `node2' node you may call this:
232 * fdtdec_parse_phandle_with_args(blob, node3, "list", "#list-cells", 0, 1,
233 * &args);
234 *
235 * (This function is a modified version of __of_parse_phandle_with_args() from
236 * Linux 3.18)
237 *
238 * @blob: Pointer to device tree
239 * @src_node: Offset of device tree node containing a list
240 * @list_name: property name that contains a list
241 * @cells_name: property name that specifies the phandles' arguments count,
242 * or NULL to use @cells_count
243 * @cells_count: Cell count to use if @cells_name is NULL
244 * @index: index of a phandle to parse out
245 * @out_args: optional pointer to output arguments structure (will be filled)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100246 * Return: 0 on success (with @out_args filled out if not NULL), -ENOENT if
Simon Glass57068a72015-01-05 20:05:26 -0700247 * @list_name does not exist, a phandle was not found, @cells_name
248 * could not be found, the arguments were truncated or there were too
249 * many arguments.
250 *
251 */
252int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
253 const char *list_name,
254 const char *cells_name,
255 int cell_count, int index,
256 struct fdtdec_phandle_args *out_args);
257
Sean Paul202ff752012-10-25 16:31:06 +0000258/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000259 * Find the next numbered alias for a peripheral. This is used to enumerate
260 * all the peripherals of a certain type.
261 *
262 * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then
263 * this function will return a pointer to the node the alias points to, and
264 * then update *upto to 1. Next time you call this function, the next node
265 * will be returned.
266 *
267 * All nodes returned will match the compatible ID, as it is assumed that
268 * all peripherals use the same driver.
269 *
270 * @param blob FDT blob to use
271 * @param name Root name of alias to search for
272 * @param id Compatible ID to look for
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100273 * Return: offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
Simon Glassb5220bc2011-10-24 19:15:32 +0000274 */
275int fdtdec_next_alias(const void *blob, const char *name,
276 enum fdt_compat_id id, int *upto);
277
278/**
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500279 * Find the compatible ID for a given node.
280 *
281 * Generally each node has at least one compatible string attached to it.
282 * This function looks through our list of known compatible strings and
283 * returns the corresponding ID which matches the compatible string.
284 *
285 * @param blob FDT blob to use
286 * @param node Node containing compatible string to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100287 * Return: compatible ID, or COMPAT_UNKNOWN if we cannot find a match
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500288 */
289enum fdt_compat_id fdtdec_lookup(const void *blob, int node);
290
291/**
Simon Glassf88fe2d2012-02-27 10:52:34 +0000292 * Find the next compatible node for a peripheral.
293 *
294 * Do the first call with node = 0. This function will return a pointer to
295 * the next compatible node. Next time you call this function, pass the
296 * value returned, and the next node will be provided.
297 *
298 * @param blob FDT blob to use
299 * @param node Start node for search
300 * @param id Compatible ID to look for (enum fdt_compat_id)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100301 * Return: offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
Simon Glassf88fe2d2012-02-27 10:52:34 +0000302 */
303int fdtdec_next_compatible(const void *blob, int node,
304 enum fdt_compat_id id);
305
306/**
Simon Glass3ddecfc2012-04-02 13:18:42 +0000307 * Find the next compatible subnode for a peripheral.
308 *
309 * Do the first call with node set to the parent and depth = 0. This
310 * function will return the offset of the next compatible node. Next time
311 * you call this function, pass the node value returned last time, with
312 * depth unchanged, and the next node will be provided.
313 *
314 * @param blob FDT blob to use
315 * @param node Start node for search
316 * @param id Compatible ID to look for (enum fdt_compat_id)
317 * @param depthp Current depth (set to 0 before first call)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100318 * Return: offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
Simon Glass3ddecfc2012-04-02 13:18:42 +0000319 */
320int fdtdec_next_compatible_subnode(const void *blob, int node,
321 enum fdt_compat_id id, int *depthp);
322
Stephen Warren02464e32015-08-06 15:31:02 -0600323/*
324 * Look up an address property in a node and return the parsed address, and
325 * optionally the parsed size.
326 *
327 * This variant assumes a known and fixed number of cells are used to
328 * represent the address and size.
329 *
330 * You probably don't want to use this function directly except to parse
331 * non-standard properties, and never to parse the "reg" property. Instead,
332 * use one of the "auto" variants below, which automatically honor the
333 * #address-cells and #size-cells properties in the parent node.
334 *
335 * @param blob FDT blob
336 * @param node node to examine
337 * @param prop_name name of property to find
338 * @param index which address to retrieve from a list of addresses. Often 0.
339 * @param na the number of cells used to represent an address
340 * @param ns the number of cells used to represent a size
341 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600342 * @param translate Indicates whether to translate the returned value
343 * using the parent node's ranges property.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100344 * Return: address, if found, or FDT_ADDR_T_NONE if not
Stephen Warren02464e32015-08-06 15:31:02 -0600345 */
346fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
347 const char *prop_name, int index, int na, int ns,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600348 fdt_size_t *sizep, bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600349
350/*
351 * Look up an address property in a node and return the parsed address, and
352 * optionally the parsed size.
353 *
354 * This variant automatically determines the number of cells used to represent
355 * the address and size by parsing the provided parent node's #address-cells
356 * and #size-cells properties.
357 *
358 * @param blob FDT blob
359 * @param parent parent node of @node
360 * @param node node to examine
361 * @param prop_name name of property to find
362 * @param index which address to retrieve from a list of addresses. Often 0.
363 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600364 * @param translate Indicates whether to translate the returned value
365 * using the parent node's ranges property.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100366 * Return: address, if found, or FDT_ADDR_T_NONE if not
Stephen Warren02464e32015-08-06 15:31:02 -0600367 */
368fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600369 int node, const char *prop_name, int index, fdt_size_t *sizep,
370 bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600371
372/*
373 * Look up an address property in a node and return the parsed address, and
374 * optionally the parsed size.
375 *
376 * This variant automatically determines the number of cells used to represent
377 * the address and size by parsing the parent node's #address-cells
378 * and #size-cells properties. The parent node is automatically found.
379 *
380 * The automatic parent lookup implemented by this function is slow.
381 * Consequently, fdtdec_get_addr_size_auto_parent() should be used where
382 * possible.
383 *
384 * @param blob FDT blob
385 * @param parent parent node of @node
386 * @param node node to examine
387 * @param prop_name name of property to find
388 * @param index which address to retrieve from a list of addresses. Often 0.
389 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600390 * @param translate Indicates whether to translate the returned value
391 * using the parent node's ranges property.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100392 * Return: address, if found, or FDT_ADDR_T_NONE if not
Stephen Warren02464e32015-08-06 15:31:02 -0600393 */
394fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600395 const char *prop_name, int index, fdt_size_t *sizep,
396 bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600397
398/*
399 * Look up an address property in a node and return the parsed address.
400 *
401 * This variant hard-codes the number of cells used to represent the address
402 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
403 * always returns the first address value in the property (index 0).
404 *
405 * Use of this function is not recommended due to the hard-coding of cell
406 * counts. There is no programmatic validation that these hard-coded values
407 * actually match the device tree content in any way at all. This assumption
408 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
409 * set in the U-Boot build and exercising strict control over DT content to
410 * ensure use of matching #address-cells/#size-cells properties. However, this
411 * approach is error-prone; those familiar with DT will not expect the
412 * assumption to exist, and could easily invalidate it. If the assumption is
413 * invalidated, this function will not report the issue, and debugging will
414 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
Simon Glassb5220bc2011-10-24 19:15:32 +0000415 *
416 * @param blob FDT blob
417 * @param node node to examine
418 * @param prop_name name of property to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100419 * Return: address, if found, or FDT_ADDR_T_NONE if not
Simon Glassb5220bc2011-10-24 19:15:32 +0000420 */
421fdt_addr_t fdtdec_get_addr(const void *blob, int node,
422 const char *prop_name);
423
Stephen Warren02464e32015-08-06 15:31:02 -0600424/*
425 * Look up an address property in a node and return the parsed address, and
426 * optionally the parsed size.
427 *
428 * This variant hard-codes the number of cells used to represent the address
429 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
430 * always returns the first address value in the property (index 0).
431 *
432 * Use of this function is not recommended due to the hard-coding of cell
433 * counts. There is no programmatic validation that these hard-coded values
434 * actually match the device tree content in any way at all. This assumption
435 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
436 * set in the U-Boot build and exercising strict control over DT content to
437 * ensure use of matching #address-cells/#size-cells properties. However, this
438 * approach is error-prone; those familiar with DT will not expect the
439 * assumption to exist, and could easily invalidate it. If the assumption is
440 * invalidated, this function will not report the issue, and debugging will
441 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
Simon Glass4397a2a2013-03-19 04:58:51 +0000442 *
443 * @param blob FDT blob
444 * @param node node to examine
445 * @param prop_name name of property to find
Stephen Warren02464e32015-08-06 15:31:02 -0600446 * @param sizep a pointer to store the size into. Use NULL if not required
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100447 * Return: address, if found, or FDT_ADDR_T_NONE if not
Simon Glass4397a2a2013-03-19 04:58:51 +0000448 */
449fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
450 const char *prop_name, fdt_size_t *sizep);
451
452/**
Bin Menga62e84d2014-12-31 16:05:11 +0800453 * Look at the compatible property of a device node that represents a PCI
454 * device and extract pci vendor id and device id from it.
455 *
456 * @param blob FDT blob
457 * @param node node to examine
458 * @param vendor vendor id of the pci device
459 * @param device device id of the pci device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100460 * Return: 0 if ok, negative on error
Bin Menga62e84d2014-12-31 16:05:11 +0800461 */
462int fdtdec_get_pci_vendev(const void *blob, int node,
463 u16 *vendor, u16 *device);
464
465/**
466 * Look at the pci address of a device node that represents a PCI device
Bin Menga62e84d2014-12-31 16:05:11 +0800467 * and return base address of the pci device's registers.
468 *
Simon Glassfcc0a872015-11-29 13:17:54 -0700469 * @param dev device to examine
Bin Menga62e84d2014-12-31 16:05:11 +0800470 * @param addr pci address in the form of fdt_pci_addr
471 * @param bar returns base address of the pci device's registers
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100472 * Return: 0 if ok, negative on error
Bin Menga62e84d2014-12-31 16:05:11 +0800473 */
Simon Glass194fca92020-01-27 08:49:38 -0700474int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassfcc0a872015-11-29 13:17:54 -0700475 u32 *bar);
Bin Menga62e84d2014-12-31 16:05:11 +0800476
477/**
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700478 * Look at the bus range property of a device node and return the pci bus
479 * range for this node.
480 * The property must hold one fdt_pci_addr with a length.
481 * @param blob FDT blob
482 * @param node node to examine
483 * @param res the resource structure to return the bus range
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100484 * Return: 0 if ok, negative on error
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700485 */
486
487int fdtdec_get_pci_bus_range(const void *blob, int node,
488 struct fdt_resource *res);
489
490/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000491 * Look up a 32-bit integer property in a node and return it. The property
492 * must have at least 4 bytes of data. The value of the first cell is
493 * returned.
494 *
495 * @param blob FDT blob
496 * @param node node to examine
497 * @param prop_name name of property to find
498 * @param default_val default value to return if the property is not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100499 * Return: integer value, if found, or default_val if not
Simon Glassb5220bc2011-10-24 19:15:32 +0000500 */
501s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
502 s32 default_val);
503
504/**
Chin Liang Seebfa3e552015-10-17 08:30:32 -0500505 * Unsigned version of fdtdec_get_int. The property must have at least
506 * 4 bytes of data. The value of the first cell is returned.
507 *
508 * @param blob FDT blob
509 * @param node node to examine
510 * @param prop_name name of property to find
511 * @param default_val default value to return if the property is not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100512 * Return: unsigned integer value, if found, or default_val if not
Chin Liang Seebfa3e552015-10-17 08:30:32 -0500513 */
514unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
515 unsigned int default_val);
516
517/**
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700518 * Get a variable-sized number from a property
519 *
520 * This reads a number from one or more cells.
521 *
522 * @param ptr Pointer to property
523 * @param cells Number of cells containing the number
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100524 * Return: the value in the cells
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700525 */
526u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells);
527
528/**
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000529 * Look up a 64-bit integer property in a node and return it. The property
530 * must have at least 8 bytes of data (2 cells). The first two cells are
531 * concatenated to form a 8 bytes value, where the first cell is top half and
532 * the second cell is bottom half.
533 *
534 * @param blob FDT blob
535 * @param node node to examine
536 * @param prop_name name of property to find
537 * @param default_val default value to return if the property is not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100538 * Return: integer value, if found, or default_val if not
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000539 */
540uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
541 uint64_t default_val);
542
543/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000544 * Checks whether a node is enabled.
545 * This looks for a 'status' property. If this exists, then returns 1 if
546 * the status is 'ok' and 0 otherwise. If there is no status property,
Simon Glassf88fe2d2012-02-27 10:52:34 +0000547 * it returns 1 on the assumption that anything mentioned should be enabled
548 * by default.
Simon Glassb5220bc2011-10-24 19:15:32 +0000549 *
550 * @param blob FDT blob
551 * @param node node to examine
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100552 * Return: integer value 0 (not enabled) or 1 (enabled)
Simon Glassb5220bc2011-10-24 19:15:32 +0000553 */
Simon Glassf88fe2d2012-02-27 10:52:34 +0000554int fdtdec_get_is_enabled(const void *blob, int node);
Simon Glassb5220bc2011-10-24 19:15:32 +0000555
556/**
Simon Glass9a263e52012-03-28 10:08:24 +0000557 * Checks that we have a valid fdt available to control U-Boot.
558
559 * However, if not then for the moment nothing is done, since this function
560 * is called too early to panic().
561 *
562 * @returns 0
Simon Glassb5220bc2011-10-24 19:15:32 +0000563 */
564int fdtdec_check_fdt(void);
Simon Glassa53f4a22012-01-17 08:20:50 +0000565
566/**
567 * Find the nodes for a peripheral and return a list of them in the correct
568 * order. This is used to enumerate all the peripherals of a certain type.
569 *
570 * To use this, optionally set up a /aliases node with alias properties for
571 * a peripheral. For example, for usb you could have:
572 *
573 * aliases {
574 * usb0 = "/ehci@c5008000";
575 * usb1 = "/ehci@c5000000";
576 * };
577 *
578 * Pass "usb" as the name to this function and will return a list of two
579 * nodes offsets: /ehci@c5008000 and ehci@c5000000.
580 *
581 * All nodes returned will match the compatible ID, as it is assumed that
582 * all peripherals use the same driver.
583 *
584 * If no alias node is found, then the node list will be returned in the
585 * order found in the fdt. If the aliases mention a node which doesn't
586 * exist, then this will be ignored. If nodes are found with no aliases,
587 * they will be added in any order.
588 *
589 * If there is a gap in the aliases, then this function return a 0 node at
590 * that position. The return value will also count these gaps.
591 *
592 * This function checks node properties and will not return nodes which are
593 * marked disabled (status = "disabled").
594 *
595 * @param blob FDT blob to use
596 * @param name Root name of alias to search for
597 * @param id Compatible ID to look for
598 * @param node_list Place to put list of found nodes
599 * @param maxcount Maximum number of nodes to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100600 * Return: number of nodes found on success, FDT_ERR_... on error
Simon Glassa53f4a22012-01-17 08:20:50 +0000601 */
602int fdtdec_find_aliases_for_id(const void *blob, const char *name,
603 enum fdt_compat_id id, int *node_list, int maxcount);
604
605/*
Simon Glassc6782272012-02-03 15:13:53 +0000606 * This function is similar to fdtdec_find_aliases_for_id() except that it
607 * adds to the node_list that is passed in. Any 0 elements are considered
608 * available for allocation - others are considered already used and are
609 * skipped.
610 *
611 * You can use this by calling fdtdec_find_aliases_for_id() with an
612 * uninitialised array, then setting the elements that are returned to -1,
613 * say, then calling this function, perhaps with a different compat id.
614 * Any elements you get back that are >0 are new nodes added by the call
615 * to this function.
616 *
617 * Note that if you have some nodes with aliases and some without, you are
618 * sailing close to the wind. The call to fdtdec_find_aliases_for_id() with
619 * one compat_id may fill in positions for which you have aliases defined
620 * for another compat_id. When you later call *this* function with the second
621 * compat_id, the alias positions may already be used. A debug warning may
622 * be generated in this case, but it is safest to define aliases for all
623 * nodes when you care about the ordering.
624 */
625int fdtdec_add_aliases_for_id(const void *blob, const char *name,
626 enum fdt_compat_id id, int *node_list, int maxcount);
627
Simon Glass5c33c9f2014-07-23 06:55:09 -0600628/**
629 * Get the alias sequence number of a node
630 *
631 * This works out whether a node is pointed to by an alias, and if so, the
632 * sequence number of that alias. Aliases are of the form <base><num> where
633 * <num> is the sequence number. For example spi2 would be sequence number
634 * 2.
635 *
636 * @param blob Device tree blob (if NULL, then error is returned)
637 * @param base Base name for alias (before the underscore)
638 * @param node Node to look up
639 * @param seqp This is set to the sequence number if one is found,
640 * but otherwise the value is left alone
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100641 * Return: 0 if a sequence was found, -ve if not
Simon Glass5c33c9f2014-07-23 06:55:09 -0600642 */
643int fdtdec_get_alias_seq(const void *blob, const char *base, int node,
644 int *seqp);
645
Simon Glass3234aa42014-07-23 06:55:16 -0600646/**
Michal Simek003c9dc2019-01-31 16:30:58 +0100647 * Get the highest alias number for susbystem.
648 *
649 * It parses all aliases and find out highest recorded alias for subsystem.
650 * Aliases are of the form <base><num> where <num> is the sequence number.
651 *
652 * @param blob Device tree blob (if NULL, then error is returned)
653 * @param base Base name for alias susbystem (before the number)
654 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100655 * Return: 0 highest alias ID, -1 if not found
Michal Simek003c9dc2019-01-31 16:30:58 +0100656 */
657int fdtdec_get_alias_highest_id(const void *blob, const char *base);
658
659/**
Simon Glass3bc37a52015-10-17 19:41:14 -0600660 * Get a property from the /chosen node
661 *
662 * @param blob Device tree blob (if NULL, then NULL is returned)
663 * @param name Property name to look up
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100664 * Return: Value of property, or NULL if it does not exist
Simon Glass3bc37a52015-10-17 19:41:14 -0600665 */
666const char *fdtdec_get_chosen_prop(const void *blob, const char *name);
667
668/**
669 * Get the offset of the given /chosen node
Simon Glassaac07d42014-09-04 16:27:24 -0600670 *
671 * This looks up a property in /chosen containing the path to another node,
672 * then finds the offset of that node.
673 *
674 * @param blob Device tree blob (if NULL, then error is returned)
675 * @param name Property name, e.g. "stdout-path"
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100676 * Return: Node offset referred to by that chosen node, or -ve FDT_ERR_...
Simon Glassaac07d42014-09-04 16:27:24 -0600677 */
678int fdtdec_get_chosen_node(const void *blob, const char *name);
679
Simon Glassc6782272012-02-03 15:13:53 +0000680/*
Simon Glassa53f4a22012-01-17 08:20:50 +0000681 * Get the name for a compatible ID
682 *
683 * @param id Compatible ID to look for
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100684 * Return: compatible string for that id
Simon Glassa53f4a22012-01-17 08:20:50 +0000685 */
686const char *fdtdec_get_compatible(enum fdt_compat_id id);
Simon Glassd17da652012-02-27 10:52:35 +0000687
688/* Look up a phandle and follow it to its node. Then return the offset
689 * of that node.
690 *
691 * @param blob FDT blob
692 * @param node node to examine
693 * @param prop_name name of property to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100694 * Return: node offset if found, -ve error code on error
Simon Glassd17da652012-02-27 10:52:35 +0000695 */
696int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name);
697
698/**
699 * Look up a property in a node and return its contents in an integer
700 * array of given length. The property must have at least enough data for
701 * the array (4*count bytes). It may have more, but this will be ignored.
702 *
703 * @param blob FDT blob
704 * @param node node to examine
705 * @param prop_name name of property to find
706 * @param array array to fill with data
707 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100708 * Return: 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found,
Simon Glassd17da652012-02-27 10:52:35 +0000709 * or -FDT_ERR_BADLAYOUT if not enough data
710 */
711int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
712 u32 *array, int count);
713
714/**
Simon Glassa9f04d42014-11-10 18:00:19 -0700715 * Look up a property in a node and return its contents in an integer
716 * array of given length. The property must exist but may have less data that
717 * expected (4*count bytes). It may have more, but this will be ignored.
718 *
719 * @param blob FDT blob
720 * @param node node to examine
721 * @param prop_name name of property to find
722 * @param array array to fill with data
723 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100724 * Return: number of array elements if ok, or -FDT_ERR_NOTFOUND if the
Simon Glassa9f04d42014-11-10 18:00:19 -0700725 * property is not found
726 */
727int fdtdec_get_int_array_count(const void *blob, int node,
728 const char *prop_name, u32 *array, int count);
729
730/**
Simon Glass96875e72012-04-02 13:18:41 +0000731 * Look up a property in a node and return a pointer to its contents as a
732 * unsigned int array of given length. The property must have at least enough
733 * data for the array ('count' cells). It may have more, but this will be
734 * ignored. The data is not copied.
735 *
736 * Note that you must access elements of the array with fdt32_to_cpu(),
737 * since the elements will be big endian even on a little endian machine.
738 *
739 * @param blob FDT blob
740 * @param node node to examine
741 * @param prop_name name of property to find
742 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100743 * Return: pointer to array if found, or NULL if the property is not
Simon Glass96875e72012-04-02 13:18:41 +0000744 * found or there is not enough data
745 */
746const u32 *fdtdec_locate_array(const void *blob, int node,
747 const char *prop_name, int count);
748
749/**
Simon Glassd17da652012-02-27 10:52:35 +0000750 * Look up a boolean property in a node and return it.
751 *
752 * A boolean properly is true if present in the device tree and false if not
753 * present, regardless of its value.
754 *
755 * @param blob FDT blob
756 * @param node node to examine
757 * @param prop_name name of property to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100758 * Return: 1 if the properly is present; 0 if it isn't present
Simon Glassd17da652012-02-27 10:52:35 +0000759 */
760int fdtdec_get_bool(const void *blob, int node, const char *prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000761
Peng Fan1889a7e2016-02-01 13:31:15 +0800762/*
763 * Count child nodes of one parent node.
764 *
765 * @param blob FDT blob
766 * @param node parent node
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100767 * Return: number of child node; 0 if there is not child node
Peng Fan1889a7e2016-02-01 13:31:15 +0800768 */
769int fdtdec_get_child_count(const void *blob, int node);
770
Anton Staffbed4d892012-04-17 09:01:28 +0000771/*
772 * Look up a property in a node and return its contents in a byte
773 * array of given length. The property must have at least enough data for
774 * the array (count bytes). It may have more, but this will be ignored.
775 *
776 * @param blob FDT blob
777 * @param node node to examine
778 * @param prop_name name of property to find
779 * @param array array to fill with data
780 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100781 * Return: 0 if ok, or -FDT_ERR_MISSING if the property is not found,
Anton Staffbed4d892012-04-17 09:01:28 +0000782 * or -FDT_ERR_BADLAYOUT if not enough data
783 */
784int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
785 u8 *array, int count);
786
787/**
788 * Look up a property in a node and return a pointer to its contents as a
789 * byte array of given length. The property must have at least enough data
790 * for the array (count bytes). It may have more, but this will be ignored.
791 * The data is not copied.
792 *
793 * @param blob FDT blob
794 * @param node node to examine
795 * @param prop_name name of property to find
796 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100797 * Return: pointer to byte array if found, or NULL if the property is not
Anton Staffbed4d892012-04-17 09:01:28 +0000798 * found or there is not enough data
799 */
800const u8 *fdtdec_locate_byte_array(const void *blob, int node,
801 const char *prop_name, int count);
Simon Glassf20c4612012-10-25 16:31:00 +0000802
803/**
Thierry Reding56f42242014-08-26 17:33:53 +0200804 * Obtain an indexed resource from a device property.
805 *
806 * @param fdt FDT blob
807 * @param node node to examine
808 * @param property name of the property to parse
809 * @param index index of the resource to retrieve
810 * @param res returns the resource
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100811 * Return: 0 if ok, negative on error
Thierry Reding56f42242014-08-26 17:33:53 +0200812 */
813int fdt_get_resource(const void *fdt, int node, const char *property,
814 unsigned int index, struct fdt_resource *res);
815
816/**
817 * Obtain a named resource from a device property.
818 *
819 * Look up the index of the name in a list of strings and return the resource
820 * at that index.
821 *
822 * @param fdt FDT blob
823 * @param node node to examine
824 * @param property name of the property to parse
825 * @param prop_names name of the property containing the list of names
826 * @param name the name of the entry to look up
827 * @param res returns the resource
828 */
829int fdt_get_named_resource(const void *fdt, int node, const char *property,
830 const char *prop_names, const char *name,
831 struct fdt_resource *res);
832
Simon Glass12e67112015-04-14 21:03:21 -0600833/* Display timings from linux include/video/display_timing.h */
834enum display_flags {
835 DISPLAY_FLAGS_HSYNC_LOW = 1 << 0,
836 DISPLAY_FLAGS_HSYNC_HIGH = 1 << 1,
837 DISPLAY_FLAGS_VSYNC_LOW = 1 << 2,
838 DISPLAY_FLAGS_VSYNC_HIGH = 1 << 3,
839
840 /* data enable flag */
841 DISPLAY_FLAGS_DE_LOW = 1 << 4,
842 DISPLAY_FLAGS_DE_HIGH = 1 << 5,
843 /* drive data on pos. edge */
844 DISPLAY_FLAGS_PIXDATA_POSEDGE = 1 << 6,
845 /* drive data on neg. edge */
846 DISPLAY_FLAGS_PIXDATA_NEGEDGE = 1 << 7,
847 DISPLAY_FLAGS_INTERLACED = 1 << 8,
848 DISPLAY_FLAGS_DOUBLESCAN = 1 << 9,
849 DISPLAY_FLAGS_DOUBLECLK = 1 << 10,
850};
851
852/*
853 * A single signal can be specified via a range of minimal and maximal values
854 * with a typical value, that lies somewhere inbetween.
855 */
856struct timing_entry {
857 u32 min;
858 u32 typ;
859 u32 max;
860};
861
862/*
863 * Single "mode" entry. This describes one set of signal timings a display can
864 * have in one setting. This struct can later be converted to struct videomode
865 * (see include/video/videomode.h). As each timing_entry can be defined as a
866 * range, one struct display_timing may become multiple struct videomodes.
867 *
868 * Example: hsync active high, vsync active low
869 *
870 * Active Video
871 * Video ______________________XXXXXXXXXXXXXXXXXXXXXX_____________________
872 * |<- sync ->|<- back ->|<----- active ----->|<- front ->|<- sync..
873 * | | porch | | porch |
874 *
875 * HSync _|¯¯¯¯¯¯¯¯¯¯|___________________________________________|¯¯¯¯¯¯¯¯¯
876 *
877 * VSync ¯|__________|¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|_________
878 */
879struct display_timing {
880 struct timing_entry pixelclock;
881
882 struct timing_entry hactive; /* hor. active video */
883 struct timing_entry hfront_porch; /* hor. front porch */
884 struct timing_entry hback_porch; /* hor. back porch */
885 struct timing_entry hsync_len; /* hor. sync len */
886
887 struct timing_entry vactive; /* ver. active video */
888 struct timing_entry vfront_porch; /* ver. front porch */
889 struct timing_entry vback_porch; /* ver. back porch */
890 struct timing_entry vsync_len; /* ver. sync len */
891
892 enum display_flags flags; /* display flags */
Jernej Skrabec43c6bdd2017-04-29 14:43:36 +0200893 bool hdmi_monitor; /* is hdmi monitor? */
Simon Glass12e67112015-04-14 21:03:21 -0600894};
895
896/**
897 * fdtdec_decode_display_timing() - decode display timings
898 *
899 * Decode display timings from the supplied 'display-timings' node.
900 * See doc/device-tree-bindings/video/display-timing.txt for binding
901 * information.
902 *
903 * @param blob FDT blob
904 * @param node 'display-timing' node containing the timing subnodes
905 * @param index Index number to read (0=first timing subnode)
906 * @param config Place to put timings
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100907 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
Simon Glass12e67112015-04-14 21:03:21 -0600908 */
909int fdtdec_decode_display_timing(const void *blob, int node, int index,
910 struct display_timing *config);
Nathan Rossi623f6012016-12-19 00:03:34 +1000911
912/**
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530913 * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and
914 * gd->ram_start
Nathan Rossi623f6012016-12-19 00:03:34 +1000915 *
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530916 * Decode the /memory 'reg' property to determine the size and start of the
917 * first memory bank, populate the global data with the size and start of the
918 * first bank of memory.
Nathan Rossi623f6012016-12-19 00:03:34 +1000919 *
920 * This function should be called from a boards dram_init(). This helper
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530921 * function allows for boards to query the device tree for DRAM size and start
922 * address instead of hard coding the value in the case where the memory size
923 * and start address cannot be detected automatically.
Nathan Rossi623f6012016-12-19 00:03:34 +1000924 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100925 * Return: 0 if OK, -EINVAL if the /memory node or reg property is missing or
Nathan Rossi623f6012016-12-19 00:03:34 +1000926 * invalid
927 */
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530928int fdtdec_setup_mem_size_base(void);
Nathan Rossi623f6012016-12-19 00:03:34 +1000929
930/**
Michal Simek7fce7392020-07-09 14:09:52 +0200931 * fdtdec_setup_mem_size_base_lowest() - decode and setup gd->ram_size and
932 * gd->ram_start by lowest available memory base
933 *
934 * Decode the /memory 'reg' property to determine the lowest start of the memory
935 * bank bank and populate the global data with it.
936 *
937 * This function should be called from a boards dram_init(). This helper
938 * function allows for boards to query the device tree for DRAM size and start
939 * address instead of hard coding the value in the case where the memory size
940 * and start address cannot be detected automatically.
941 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100942 * Return: 0 if OK, -EINVAL if the /memory node or reg property is missing or
Michal Simek7fce7392020-07-09 14:09:52 +0200943 * invalid
944 */
945int fdtdec_setup_mem_size_base_lowest(void);
946
947/**
Nathan Rossi623f6012016-12-19 00:03:34 +1000948 * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram
949 *
950 * Decode the /memory 'reg' property to determine the address and size of the
951 * memory banks. Use this data to populate the global data board info with the
952 * phys address and size of memory banks.
953 *
954 * This function should be called from a boards dram_init_banksize(). This
955 * helper function allows for boards to query the device tree for memory bank
956 * information instead of hard coding the information in cases where it cannot
957 * be detected automatically.
958 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100959 * Return: 0 if OK, -EINVAL if the /memory node or reg property is missing or
Nathan Rossi623f6012016-12-19 00:03:34 +1000960 * invalid
961 */
962int fdtdec_setup_memory_banksize(void);
963
Simon Glassb45122f2015-02-27 22:06:34 -0700964/**
Thierry Redingebf30e82019-04-15 11:32:13 +0200965 * fdtdec_set_ethernet_mac_address() - set MAC address for default interface
966 *
967 * Looks up the default interface via the "ethernet" alias (in the /aliases
968 * node) and stores the given MAC in its "local-mac-address" property. This
969 * is useful on platforms that store the MAC address in a custom location.
970 * Board code can call this in the late init stage to make sure that the
971 * interface device tree node has the right MAC address configured for the
972 * Ethernet uclass to pick it up.
973 *
974 * Typically the FDT passed into this function will be U-Boot's control DTB.
975 * Given that a lot of code may be holding offsets to various nodes in that
976 * tree, this code will only set the "local-mac-address" property in-place,
977 * which means that it needs to exist and have space for the 6-byte address.
978 * This ensures that the operation is non-destructive and does not invalidate
979 * offsets that other drivers may be using.
980 *
981 * @param fdt FDT blob
982 * @param mac buffer containing the MAC address to set
983 * @param size size of MAC address
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100984 * Return: 0 on success or a negative error code on failure
Thierry Redingebf30e82019-04-15 11:32:13 +0200985 */
986int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size);
987
988/**
Thierry Reding8153d532019-03-21 19:10:01 +0100989 * fdtdec_set_phandle() - sets the phandle of a given node
990 *
991 * @param blob FDT blob
992 * @param node offset in the FDT blob of the node whose phandle is to
993 * be set
994 * @param phandle phandle to set for the given node
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100995 * Return: 0 on success or a negative error code on failure
Thierry Reding8153d532019-03-21 19:10:01 +0100996 */
Thierry Redingd81d9692019-04-15 10:08:20 +0200997static inline int fdtdec_set_phandle(void *blob, int node, uint32_t phandle)
998{
999 return fdt_setprop_u32(blob, node, "phandle", phandle);
1000}
Thierry Reding8153d532019-03-21 19:10:01 +01001001
Thierry Redingb9aad372021-09-03 15:16:21 +02001002/* add "no-map" property */
1003#define FDTDEC_RESERVED_MEMORY_NO_MAP (1 << 0)
1004
Thierry Reding8153d532019-03-21 19:10:01 +01001005/**
Thierry Redingc9222a02019-03-21 19:10:02 +01001006 * fdtdec_add_reserved_memory() - add or find a reserved-memory node
1007 *
1008 * If a reserved-memory node already exists for the given carveout, a phandle
1009 * for that node will be returned. Otherwise a new node will be created and a
1010 * phandle corresponding to it will be returned.
1011 *
1012 * See Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
1013 * for details on how to use reserved memory regions.
1014 *
1015 * As an example, consider the following code snippet:
1016 *
1017 * struct fdt_memory fb = {
1018 * .start = 0x92cb3000,
1019 * .end = 0x934b2fff,
1020 * };
1021 * uint32_t phandle;
1022 *
Thierry Reding46cb0672021-09-03 15:16:19 +02001023 * fdtdec_add_reserved_memory(fdt, "framebuffer", &fb, NULL, 0, &phandle,
Thierry Redingb9aad372021-09-03 15:16:21 +02001024 * 0);
Thierry Redingc9222a02019-03-21 19:10:02 +01001025 *
1026 * This results in the following subnode being added to the top-level
1027 * /reserved-memory node:
1028 *
1029 * reserved-memory {
1030 * #address-cells = <0x00000002>;
1031 * #size-cells = <0x00000002>;
1032 * ranges;
1033 *
1034 * framebuffer@92cb3000 {
1035 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1036 * phandle = <0x0000004d>;
1037 * };
1038 * };
1039 *
1040 * If the top-level /reserved-memory node does not exist, it will be created.
1041 * The phandle returned from the function call can be used to reference this
1042 * reserved memory region from other nodes.
1043 *
Thierry Reding16523ac2019-03-21 19:10:03 +01001044 * See fdtdec_set_carveout() for a more elaborate example.
1045 *
Thierry Redingc9222a02019-03-21 19:10:02 +01001046 * @param blob FDT blob
1047 * @param basename base name of the node to create
1048 * @param carveout information about the carveout region
Thierry Reding46cb0672021-09-03 15:16:19 +02001049 * @param compatibles list of compatible strings for the carveout region
1050 * @param count number of compatible strings for the carveout region
Thierry Redingc9222a02019-03-21 19:10:02 +01001051 * @param phandlep return location for the phandle of the carveout region
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001052 * can be NULL if no phandle should be added
Thierry Redingb9aad372021-09-03 15:16:21 +02001053 * @param flags bitmask of flags to set for the carveout region
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001054 * Return: 0 on success or a negative error code on failure
Thierry Redingc9222a02019-03-21 19:10:02 +01001055 */
1056int fdtdec_add_reserved_memory(void *blob, const char *basename,
1057 const struct fdt_memory *carveout,
Thierry Reding46cb0672021-09-03 15:16:19 +02001058 const char **compatibles, unsigned int count,
Thierry Redingb9aad372021-09-03 15:16:21 +02001059 uint32_t *phandlep, unsigned long flags);
Thierry Redingc9222a02019-03-21 19:10:02 +01001060
1061/**
Thierry Reding16523ac2019-03-21 19:10:03 +01001062 * fdtdec_get_carveout() - reads a carveout from an FDT
1063 *
1064 * Reads information about a carveout region from an FDT. The carveout is a
1065 * referenced by its phandle that is read from a given property in a given
1066 * node.
1067 *
1068 * @param blob FDT blob
1069 * @param node name of a node
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001070 * @param prop_name name of the property in the given node that contains
Thierry Reding16523ac2019-03-21 19:10:03 +01001071 * the phandle for the carveout
1072 * @param index index of the phandle for which to read the carveout
1073 * @param carveout return location for the carveout information
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001074 * @param name return location for the carveout name
Thierry Reding46cb0672021-09-03 15:16:19 +02001075 * @param compatiblesp return location for compatible strings
Thierry Redingb9aad372021-09-03 15:16:21 +02001076 * @param countp return location for the number of compatible strings
1077 * @param flags return location for the flags of the carveout
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001078 * Return: 0 on success or a negative error code on failure
Thierry Reding16523ac2019-03-21 19:10:03 +01001079 */
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001080int fdtdec_get_carveout(const void *blob, const char *node,
1081 const char *prop_name, unsigned int index,
Thierry Reding46cb0672021-09-03 15:16:19 +02001082 struct fdt_memory *carveout, const char **name,
Thierry Redingb9aad372021-09-03 15:16:21 +02001083 const char ***compatiblesp, unsigned int *countp,
1084 unsigned long *flags);
Thierry Reding16523ac2019-03-21 19:10:03 +01001085
1086/**
1087 * fdtdec_set_carveout() - sets a carveout region for a given node
1088 *
1089 * Sets a carveout region for a given node. If a reserved-memory node already
1090 * exists for the carveout, the phandle for that node will be reused. If no
1091 * such node exists, a new one will be created and a phandle to it stored in
1092 * a specified property of the given node.
1093 *
1094 * As an example, consider the following code snippet:
1095 *
1096 * const char *node = "/host1x@50000000/dc@54240000";
1097 * struct fdt_memory fb = {
1098 * .start = 0x92cb3000,
1099 * .end = 0x934b2fff,
1100 * };
1101 *
Thierry Reding46cb0672021-09-03 15:16:19 +02001102 * fdtdec_set_carveout(fdt, node, "memory-region", 0, "framebuffer", NULL,
Thierry Redingb9aad372021-09-03 15:16:21 +02001103 * 0, &fb, 0);
Thierry Reding16523ac2019-03-21 19:10:03 +01001104 *
1105 * dc@54200000 is a display controller and was set up by the bootloader to
1106 * scan out the framebuffer specified by "fb". This would cause the following
1107 * reserved memory region to be added:
1108 *
1109 * reserved-memory {
1110 * #address-cells = <0x00000002>;
1111 * #size-cells = <0x00000002>;
1112 * ranges;
1113 *
1114 * framebuffer@92cb3000 {
1115 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1116 * phandle = <0x0000004d>;
1117 * };
1118 * };
1119 *
1120 * A "memory-region" property will also be added to the node referenced by the
1121 * offset parameter.
1122 *
1123 * host1x@50000000 {
1124 * ...
1125 *
1126 * dc@54240000 {
1127 * ...
1128 * memory-region = <0x0000004d>;
1129 * ...
1130 * };
1131 *
1132 * ...
1133 * };
1134 *
1135 * @param blob FDT blob
1136 * @param node name of the node to add the carveout to
1137 * @param prop_name name of the property in which to store the phandle of
1138 * the carveout
1139 * @param index index of the phandle to store
Thierry Reding16523ac2019-03-21 19:10:03 +01001140 * @param carveout information about the carveout to add
Thierry Reding90194872021-09-03 15:16:20 +02001141 * @param name base name of the reserved-memory node to create
Thierry Reding46cb0672021-09-03 15:16:19 +02001142 * @param compatibles compatible strings to set for the carveout
1143 * @param count number of compatible strings
Thierry Redingb9aad372021-09-03 15:16:21 +02001144 * @param flags bitmask of flags to set for the carveout
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001145 * Return: 0 on success or a negative error code on failure
Thierry Reding16523ac2019-03-21 19:10:03 +01001146 */
1147int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Reding90194872021-09-03 15:16:20 +02001148 unsigned int index, const struct fdt_memory *carveout,
1149 const char *name, const char **compatibles,
Thierry Redingb9aad372021-09-03 15:16:21 +02001150 unsigned int count, unsigned long flags);
Thierry Reding16523ac2019-03-21 19:10:03 +01001151
1152/**
Simon Glassb45122f2015-02-27 22:06:34 -07001153 * Set up the device tree ready for use
1154 */
Simon Glass08793612015-02-27 22:06:35 -07001155int fdtdec_setup(void);
Simon Glassb45122f2015-02-27 22:06:34 -07001156
Marek Vasut0e2afc82020-04-11 21:18:59 +02001157/**
1158 * Perform board-specific early DT adjustments
1159 */
1160int fdtdec_board_setup(const void *fdt_blob);
1161
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001162/**
1163 * fdtdec_resetup() - Set up the device tree again
1164 *
1165 * The main difference with fdtdec_setup() is that it returns if the fdt has
1166 * changed because a better match has been found.
1167 * This is typically used for boards that rely on a DM driver to detect the
1168 * board type. This function sould be called by the board code after the stuff
1169 * needed by board_fit_config_name_match() to operate porperly is available.
1170 * If this functions signals that a rescan is necessary, the board code must
1171 * unbind all the drivers using dm_uninit() and then rescan the DT with
1172 * dm_init_and_scan().
1173 *
1174 * @param rescan Returns a flag indicating that fdt has changed and rescanning
1175 * the fdt is required
1176 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001177 * Return: 0 if OK, -ve on error
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001178 */
1179int fdtdec_resetup(int *rescan);
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001180
Alex Deymo82f766d2017-04-02 01:25:20 -07001181/**
1182 * Board-specific FDT initialization. Returns the address to a device tree blob.
Simon Glass98550342021-12-16 20:59:31 -07001183 *
1184 * Called when CONFIG_OF_BOARD is defined.
1185 *
1186 * The existing devicetree is available at gd->fdt_blob
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001187 *
1188 * @err internal error code if we fail to setup a DTB
Simon Glass98550342021-12-16 20:59:31 -07001189 * @returns new devicetree blob pointer
Alex Deymo82f766d2017-04-02 01:25:20 -07001190 */
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001191void *board_fdt_blob_setup(int *err);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001192
1193/*
1194 * Decode the size of memory
1195 *
1196 * RAM size is normally set in a /memory node and consists of a list of
1197 * (base, size) cells in the 'reg' property. This information is used to
1198 * determine the total available memory as well as the address and size
1199 * of each bank.
1200 *
1201 * Optionally the memory configuration can vary depending on a board id,
1202 * typically read from strapping resistors or an EEPROM on the board.
1203 *
1204 * Finally, memory size can be detected (within certain limits) by probing
1205 * the available memory. It is safe to do so within the limits provides by
1206 * the board's device tree information. This makes it possible to produce
1207 * boards with different memory sizes, where the device tree specifies the
1208 * maximum memory configuration, and the smaller memory configuration is
1209 * probed.
1210 *
1211 * This function decodes that information, returning the memory base address,
1212 * size and bank information. See the memory.txt binding for full
1213 * documentation.
1214 *
1215 * @param blob Device tree blob
1216 * @param area Name of node to check (NULL means "/memory")
1217 * @param board_id Board ID to look up
1218 * @param basep Returns base address of first memory bank (NULL to
1219 * ignore)
1220 * @param sizep Returns total memory size (NULL to ignore)
1221 * @param bd Updated with the memory bank information (NULL to skip)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001222 * Return: 0 if OK, -ve on error
Michael Pratt90c08fa2018-06-11 13:07:09 -06001223 */
1224int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1225 phys_addr_t *basep, phys_size_t *sizep,
1226 struct bd_info *bd);
Alex Deymo82f766d2017-04-02 01:25:20 -07001227
Simon Glass39605c62021-12-16 20:59:33 -07001228/**
1229 * fdtdec_get_srcname() - Get the name of where the devicetree comes from
1230 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001231 * Return: source name
Simon Glass39605c62021-12-16 20:59:33 -07001232 */
1233const char *fdtdec_get_srcname(void);
1234
Simon Glass5bfa78d2012-07-12 05:25:02 +00001235#endif