blob: 9a7b6a7ee192aa813bce0dc97489da033aa4789b [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
Mario Sixc6b89f32018-02-12 08:05:57 +010027#define FDT_ADDR_T_NONE (-1U)
Chen Guanqiaoaa351a12021-04-12 14:51:11 +080028#define FDT_SIZE_T_NONE (-1U)
29
30#ifdef CONFIG_PHYS_64BIT
Simon Glassb5220bc2011-10-24 19:15:32 +000031#define fdt_addr_to_cpu(reg) be64_to_cpu(reg)
Simon Glassf20c4612012-10-25 16:31:00 +000032#define fdt_size_to_cpu(reg) be64_to_cpu(reg)
Thierry Reding155d0a02019-03-21 19:09:59 +010033#define cpu_to_fdt_addr(reg) cpu_to_be64(reg)
34#define cpu_to_fdt_size(reg) cpu_to_be64(reg)
Simon Glassc20ee0e2017-08-29 14:15:50 -060035typedef fdt64_t fdt_val_t;
Simon Glassb5220bc2011-10-24 19:15:32 +000036#else
Simon Glassb5220bc2011-10-24 19:15:32 +000037#define fdt_addr_to_cpu(reg) be32_to_cpu(reg)
Simon Glassf20c4612012-10-25 16:31:00 +000038#define fdt_size_to_cpu(reg) be32_to_cpu(reg)
Thierry Reding155d0a02019-03-21 19:09:59 +010039#define cpu_to_fdt_addr(reg) cpu_to_be32(reg)
40#define cpu_to_fdt_size(reg) cpu_to_be32(reg)
Simon Glassc20ee0e2017-08-29 14:15:50 -060041typedef fdt32_t fdt_val_t;
Simon Glassb5220bc2011-10-24 19:15:32 +000042#endif
43
44/* Information obtained about memory from the FDT */
45struct fdt_memory {
46 fdt_addr_t start;
47 fdt_addr_t end;
48};
49
Michael Pratt90c08fa2018-06-11 13:07:09 -060050struct bd_info;
51
Simon Glass39605c62021-12-16 20:59:33 -070052/**
53 * enum fdt_source_t - indicates where the devicetree came from
54 *
55 * These are listed in approximate order of desirability after FDTSRC_NONE
56 *
57 * @FDTSRC_SEPARATE: Appended to U-Boot. This is the normal approach if U-Boot
58 * is the only firmware being booted
59 * @FDTSRC_FIT: Found in a multi-dtb FIT. This should be used when U-Boot must
60 * select a devicetree from many options
61 * @FDTSRC_BOARD: Located by custom board code. This should only be used when
62 * the prior stage does not support FDTSRC_PASSAGE
63 * @FDTSRC_EMBED: Embedded into U-Boot executable. This should onyl be used when
64 * U-Boot is packaged as an ELF file, e.g. for debugging purposes
65 * @FDTSRC_ENV: Provided by the fdtcontroladdr environment variable. This should
66 * be used for debugging/development only
67 * @FDTSRC_NONE: No devicetree at all
68 */
69enum fdt_source_t {
70 FDTSRC_SEPARATE,
71 FDTSRC_FIT,
72 FDTSRC_BOARD,
73 FDTSRC_EMBED,
74 FDTSRC_ENV,
75};
76
Thierry Reding56f42242014-08-26 17:33:53 +020077/*
78 * Information about a resource. start is the first address of the resource
79 * and end is the last address (inclusive). The length of the resource will
80 * be equal to: end - start + 1.
81 */
82struct fdt_resource {
83 fdt_addr_t start;
84 fdt_addr_t end;
85};
86
Bin Menga62e84d2014-12-31 16:05:11 +080087enum fdt_pci_space {
88 FDT_PCI_SPACE_CONFIG = 0,
89 FDT_PCI_SPACE_IO = 0x01000000,
90 FDT_PCI_SPACE_MEM32 = 0x02000000,
91 FDT_PCI_SPACE_MEM64 = 0x03000000,
92 FDT_PCI_SPACE_MEM32_PREF = 0x42000000,
93 FDT_PCI_SPACE_MEM64_PREF = 0x43000000,
94};
95
96#define FDT_PCI_ADDR_CELLS 3
97#define FDT_PCI_SIZE_CELLS 2
98#define FDT_PCI_REG_SIZE \
99 ((FDT_PCI_ADDR_CELLS + FDT_PCI_SIZE_CELLS) * sizeof(u32))
100
101/*
102 * The Open Firmware spec defines PCI physical address as follows:
103 *
104 * bits# 31 .... 24 23 .... 16 15 .... 08 07 .... 00
105 *
106 * phys.hi cell: npt000ss bbbbbbbb dddddfff rrrrrrrr
107 * phys.mid cell: hhhhhhhh hhhhhhhh hhhhhhhh hhhhhhhh
108 * phys.lo cell: llllllll llllllll llllllll llllllll
109 *
110 * where:
111 *
112 * n: is 0 if the address is relocatable, 1 otherwise
113 * p: is 1 if addressable region is prefetchable, 0 otherwise
114 * t: is 1 if the address is aliased (for non-relocatable I/O) below 1MB
115 * (for Memory), or below 64KB (for relocatable I/O)
116 * ss: is the space code, denoting the address space
117 * bbbbbbbb: is the 8-bit Bus Number
118 * ddddd: is the 5-bit Device Number
119 * fff: is the 3-bit Function Number
120 * rrrrrrrr: is the 8-bit Register Number
121 * hhhhhhhh: is a 32-bit unsigned number
122 * llllllll: is a 32-bit unsigned number
123 */
124struct fdt_pci_addr {
125 u32 phys_hi;
126 u32 phys_mid;
127 u32 phys_lo;
128};
129
Simon Glass2ebebb92019-12-28 10:44:42 -0700130extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
131extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
132
Simon Glassd893b8a2021-12-16 20:59:26 -0700133/* Get a pointer to the embedded devicetree, if there is one, else NULL */
134static inline u8 *dtb_dt_embedded(void)
135{
136#ifdef CONFIG_OF_EMBED
137# ifdef CONFIG_SPL_BUILD
138 return __dtb_dt_spl_begin;
139# else
140 return __dtb_dt_begin;
141# endif
142#else
143 return NULL;
144#endif
145}
146
Thierry Reding56f42242014-08-26 17:33:53 +0200147/**
148 * Compute the size of a resource.
149 *
150 * @param res the resource to operate on
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100151 * Return: the size of the resource
Thierry Reding56f42242014-08-26 17:33:53 +0200152 */
153static inline fdt_size_t fdt_resource_size(const struct fdt_resource *res)
154{
155 return res->end - res->start + 1;
156}
157
Simon Glassb5220bc2011-10-24 19:15:32 +0000158/**
159 * Compat types that we know about and for which we might have drivers.
160 * Each is named COMPAT_<dir>_<filename> where <dir> is the directory
161 * within drivers.
162 */
163enum fdt_compat_id {
164 COMPAT_UNKNOWN,
Allen Martin00a27492012-08-31 08:30:00 +0000165 COMPAT_NVIDIA_TEGRA20_EMC, /* Tegra20 memory controller */
166 COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */
Jim Lin312693c2012-07-29 20:53:29 +0000167 COMPAT_NVIDIA_TEGRA20_NAND, /* Tegra2 NAND controller */
Thierry Reding79c7a902014-12-09 22:25:09 -0700168 COMPAT_NVIDIA_TEGRA124_XUSB_PADCTL,
169 /* Tegra124 XUSB pad controller */
Tom Warren7aaa5a62015-03-04 16:36:00 -0700170 COMPAT_NVIDIA_TEGRA210_XUSB_PADCTL,
171 /* Tegra210 XUSB pad controller */
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +0000172 COMPAT_SAMSUNG_EXYNOS_USB_PHY, /* Exynos phy controller for usb2.0 */
Vivek Gautam108b85b2013-09-14 14:02:48 +0530173 COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos phy controller for usb3.0 */
Akshay Saraswat618766c2013-02-25 01:13:01 +0000174 COMPAT_SAMSUNG_EXYNOS_TMU, /* Exynos TMU */
Piotr Wilczekde461c52014-03-07 14:59:39 +0100175 COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +0900176 COMPAT_SAMSUNG_EXYNOS_DWMMC, /* Exynos DWMMC controller */
Simon Glassbb8215f2013-03-11 06:08:08 +0000177 COMPAT_GENERIC_SPI_FLASH, /* Generic SPI Flash chip */
Ajay Kumar45c480c2014-09-05 16:53:33 +0530178 COMPAT_SAMSUNG_EXYNOS_SYSMMU, /* Exynos sysmmu */
Simon Glass77f9b1f2014-11-12 22:42:21 -0700179 COMPAT_INTEL_MICROCODE, /* Intel microcode update */
Bin Mengc89ada02015-02-05 23:42:26 +0800180 COMPAT_INTEL_QRK_MRC, /* Intel Quark MRC */
Marek Vasut6ab00db2015-07-25 19:33:56 +0200181 COMPAT_ALTERA_SOCFPGA_DWMAC, /* SoCFPGA Ethernet controller */
Marek Vasut129adf52015-07-25 10:48:14 +0200182 COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */
Marek Vasutef4b01b2015-12-05 19:28:44 +0100183 COMPAT_ALTERA_SOCFPGA_DWC2USB, /* SoCFPGA DWC2 USB controller */
Andrew Bradfordf3b84a32015-08-07 08:36:35 -0400184 COMPAT_INTEL_BAYTRAIL_FSP, /* Intel Bay Trail FSP */
185 COMPAT_INTEL_BAYTRAIL_FSP_MDP, /* Intel FSP memory-down params */
Bin Meng394e0b62015-12-11 02:55:44 -0800186 COMPAT_INTEL_IVYBRIDGE_FSP, /* Intel Ivy Bridge FSP */
Boris Brezillon4ccae812016-06-15 21:09:23 +0200187 COMPAT_SUNXI_NAND, /* SUNXI NAND controller */
Ley Foon Tane11b5e82017-04-05 17:32:47 +0800188 COMPAT_ALTERA_SOCFPGA_CLK, /* SoCFPGA Clock initialization */
189 COMPAT_ALTERA_SOCFPGA_PINCTRL_SINGLE, /* SoCFPGA pinctrl-single */
190 COMPAT_ALTERA_SOCFPGA_H2F_BRG, /* SoCFPGA hps2fpga bridge */
191 COMPAT_ALTERA_SOCFPGA_LWH2F_BRG, /* SoCFPGA lwhps2fpga bridge */
192 COMPAT_ALTERA_SOCFPGA_F2H_BRG, /* SoCFPGA fpga2hps bridge */
193 COMPAT_ALTERA_SOCFPGA_F2SDR0, /* SoCFPGA fpga2SDRAM0 bridge */
194 COMPAT_ALTERA_SOCFPGA_F2SDR1, /* SoCFPGA fpga2SDRAM1 bridge */
195 COMPAT_ALTERA_SOCFPGA_F2SDR2, /* SoCFPGA fpga2SDRAM2 bridge */
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +0800196 COMPAT_ALTERA_SOCFPGA_FPGA0, /* SOCFPGA FPGA manager */
197 COMPAT_ALTERA_SOCFPGA_NOC, /* SOCFPGA Arria 10 NOC */
Marek Vasut19c8fc72018-05-12 11:56:10 +0200198 COMPAT_ALTERA_SOCFPGA_CLK_INIT, /* SOCFPGA Arria 10 clk init */
Simon Glassb5220bc2011-10-24 19:15:32 +0000199
200 COMPAT_COUNT,
201};
202
Simon Glass57068a72015-01-05 20:05:26 -0700203#define MAX_PHANDLE_ARGS 16
204struct fdtdec_phandle_args {
205 int node;
206 int args_count;
207 uint32_t args[MAX_PHANDLE_ARGS];
208};
209
210/**
211 * fdtdec_parse_phandle_with_args() - Find a node pointed by phandle in a list
212 *
213 * This function is useful to parse lists of phandles and their arguments.
214 *
215 * Example:
216 *
217 * phandle1: node1 {
218 * #list-cells = <2>;
219 * }
220 *
221 * phandle2: node2 {
222 * #list-cells = <1>;
223 * }
224 *
225 * node3 {
226 * list = <&phandle1 1 2 &phandle2 3>;
227 * }
228 *
229 * To get a device_node of the `node2' node you may call this:
230 * fdtdec_parse_phandle_with_args(blob, node3, "list", "#list-cells", 0, 1,
231 * &args);
232 *
233 * (This function is a modified version of __of_parse_phandle_with_args() from
234 * Linux 3.18)
235 *
236 * @blob: Pointer to device tree
237 * @src_node: Offset of device tree node containing a list
238 * @list_name: property name that contains a list
239 * @cells_name: property name that specifies the phandles' arguments count,
240 * or NULL to use @cells_count
241 * @cells_count: Cell count to use if @cells_name is NULL
242 * @index: index of a phandle to parse out
243 * @out_args: optional pointer to output arguments structure (will be filled)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100244 * Return: 0 on success (with @out_args filled out if not NULL), -ENOENT if
Simon Glass57068a72015-01-05 20:05:26 -0700245 * @list_name does not exist, a phandle was not found, @cells_name
246 * could not be found, the arguments were truncated or there were too
247 * many arguments.
248 *
249 */
250int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
251 const char *list_name,
252 const char *cells_name,
253 int cell_count, int index,
254 struct fdtdec_phandle_args *out_args);
255
Sean Paul202ff752012-10-25 16:31:06 +0000256/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000257 * Find the next numbered alias for a peripheral. This is used to enumerate
258 * all the peripherals of a certain type.
259 *
260 * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then
261 * this function will return a pointer to the node the alias points to, and
262 * then update *upto to 1. Next time you call this function, the next node
263 * will be returned.
264 *
265 * All nodes returned will match the compatible ID, as it is assumed that
266 * all peripherals use the same driver.
267 *
268 * @param blob FDT blob to use
269 * @param name Root name of alias to search for
270 * @param id Compatible ID to look for
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100271 * Return: offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
Simon Glassb5220bc2011-10-24 19:15:32 +0000272 */
273int fdtdec_next_alias(const void *blob, const char *name,
274 enum fdt_compat_id id, int *upto);
275
276/**
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500277 * Find the compatible ID for a given node.
278 *
279 * Generally each node has at least one compatible string attached to it.
280 * This function looks through our list of known compatible strings and
281 * returns the corresponding ID which matches the compatible string.
282 *
283 * @param blob FDT blob to use
284 * @param node Node containing compatible string to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100285 * Return: compatible ID, or COMPAT_UNKNOWN if we cannot find a match
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500286 */
287enum fdt_compat_id fdtdec_lookup(const void *blob, int node);
288
289/**
Simon Glassf88fe2d2012-02-27 10:52:34 +0000290 * Find the next compatible node for a peripheral.
291 *
292 * Do the first call with node = 0. This function will return a pointer to
293 * the next compatible node. Next time you call this function, pass the
294 * value returned, and the next node will be provided.
295 *
296 * @param blob FDT blob to use
297 * @param node Start node for search
298 * @param id Compatible ID to look for (enum fdt_compat_id)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100299 * Return: offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
Simon Glassf88fe2d2012-02-27 10:52:34 +0000300 */
301int fdtdec_next_compatible(const void *blob, int node,
302 enum fdt_compat_id id);
303
304/**
Simon Glass3ddecfc2012-04-02 13:18:42 +0000305 * Find the next compatible subnode for a peripheral.
306 *
307 * Do the first call with node set to the parent and depth = 0. This
308 * function will return the offset of the next compatible node. Next time
309 * you call this function, pass the node value returned last time, with
310 * depth unchanged, and the next node will be provided.
311 *
312 * @param blob FDT blob to use
313 * @param node Start node for search
314 * @param id Compatible ID to look for (enum fdt_compat_id)
315 * @param depthp Current depth (set to 0 before first call)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100316 * Return: offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
Simon Glass3ddecfc2012-04-02 13:18:42 +0000317 */
318int fdtdec_next_compatible_subnode(const void *blob, int node,
319 enum fdt_compat_id id, int *depthp);
320
Stephen Warren02464e32015-08-06 15:31:02 -0600321/*
322 * Look up an address property in a node and return the parsed address, and
323 * optionally the parsed size.
324 *
325 * This variant assumes a known and fixed number of cells are used to
326 * represent the address and size.
327 *
328 * You probably don't want to use this function directly except to parse
329 * non-standard properties, and never to parse the "reg" property. Instead,
330 * use one of the "auto" variants below, which automatically honor the
331 * #address-cells and #size-cells properties in the parent node.
332 *
333 * @param blob FDT blob
334 * @param node node to examine
335 * @param prop_name name of property to find
336 * @param index which address to retrieve from a list of addresses. Often 0.
337 * @param na the number of cells used to represent an address
338 * @param ns the number of cells used to represent a size
339 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600340 * @param translate Indicates whether to translate the returned value
341 * using the parent node's ranges property.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100342 * Return: address, if found, or FDT_ADDR_T_NONE if not
Stephen Warren02464e32015-08-06 15:31:02 -0600343 */
344fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
345 const char *prop_name, int index, int na, int ns,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600346 fdt_size_t *sizep, bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600347
348/*
349 * Look up an address property in a node and return the parsed address, and
350 * optionally the parsed size.
351 *
352 * This variant automatically determines the number of cells used to represent
353 * the address and size by parsing the provided parent node's #address-cells
354 * and #size-cells properties.
355 *
356 * @param blob FDT blob
357 * @param parent parent node of @node
358 * @param node node to examine
359 * @param prop_name name of property to find
360 * @param index which address to retrieve from a list of addresses. Often 0.
361 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600362 * @param translate Indicates whether to translate the returned value
363 * using the parent node's ranges property.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100364 * Return: address, if found, or FDT_ADDR_T_NONE if not
Stephen Warren02464e32015-08-06 15:31:02 -0600365 */
366fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600367 int node, const char *prop_name, int index, fdt_size_t *sizep,
368 bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600369
370/*
371 * Look up an address property in a node and return the parsed address, and
372 * optionally the parsed size.
373 *
374 * This variant automatically determines the number of cells used to represent
375 * the address and size by parsing the parent node's #address-cells
376 * and #size-cells properties. The parent node is automatically found.
377 *
378 * The automatic parent lookup implemented by this function is slow.
379 * Consequently, fdtdec_get_addr_size_auto_parent() should be used where
380 * possible.
381 *
382 * @param blob FDT blob
383 * @param parent parent node of @node
384 * @param node node to examine
385 * @param prop_name name of property to find
386 * @param index which address to retrieve from a list of addresses. Often 0.
387 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600388 * @param translate Indicates whether to translate the returned value
389 * using the parent node's ranges property.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100390 * Return: address, if found, or FDT_ADDR_T_NONE if not
Stephen Warren02464e32015-08-06 15:31:02 -0600391 */
392fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600393 const char *prop_name, int index, fdt_size_t *sizep,
394 bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600395
396/*
397 * Look up an address property in a node and return the parsed address.
398 *
399 * This variant hard-codes the number of cells used to represent the address
400 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
401 * always returns the first address value in the property (index 0).
402 *
403 * Use of this function is not recommended due to the hard-coding of cell
404 * counts. There is no programmatic validation that these hard-coded values
405 * actually match the device tree content in any way at all. This assumption
406 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
407 * set in the U-Boot build and exercising strict control over DT content to
408 * ensure use of matching #address-cells/#size-cells properties. However, this
409 * approach is error-prone; those familiar with DT will not expect the
410 * assumption to exist, and could easily invalidate it. If the assumption is
411 * invalidated, this function will not report the issue, and debugging will
412 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
Simon Glassb5220bc2011-10-24 19:15:32 +0000413 *
414 * @param blob FDT blob
415 * @param node node to examine
416 * @param prop_name name of property to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100417 * Return: address, if found, or FDT_ADDR_T_NONE if not
Simon Glassb5220bc2011-10-24 19:15:32 +0000418 */
419fdt_addr_t fdtdec_get_addr(const void *blob, int node,
420 const char *prop_name);
421
Stephen Warren02464e32015-08-06 15:31:02 -0600422/*
423 * Look up an address property in a node and return the parsed address, and
424 * optionally the parsed size.
425 *
426 * This variant hard-codes the number of cells used to represent the address
427 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
428 * always returns the first address value in the property (index 0).
429 *
430 * Use of this function is not recommended due to the hard-coding of cell
431 * counts. There is no programmatic validation that these hard-coded values
432 * actually match the device tree content in any way at all. This assumption
433 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
434 * set in the U-Boot build and exercising strict control over DT content to
435 * ensure use of matching #address-cells/#size-cells properties. However, this
436 * approach is error-prone; those familiar with DT will not expect the
437 * assumption to exist, and could easily invalidate it. If the assumption is
438 * invalidated, this function will not report the issue, and debugging will
439 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
Simon Glass4397a2a2013-03-19 04:58:51 +0000440 *
441 * @param blob FDT blob
442 * @param node node to examine
443 * @param prop_name name of property to find
Stephen Warren02464e32015-08-06 15:31:02 -0600444 * @param sizep a pointer to store the size into. Use NULL if not required
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100445 * Return: address, if found, or FDT_ADDR_T_NONE if not
Simon Glass4397a2a2013-03-19 04:58:51 +0000446 */
447fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
448 const char *prop_name, fdt_size_t *sizep);
449
450/**
Bin Menga62e84d2014-12-31 16:05:11 +0800451 * Look at the compatible property of a device node that represents a PCI
452 * device and extract pci vendor id and device id from it.
453 *
454 * @param blob FDT blob
455 * @param node node to examine
456 * @param vendor vendor id of the pci device
457 * @param device device id of the pci device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100458 * Return: 0 if ok, negative on error
Bin Menga62e84d2014-12-31 16:05:11 +0800459 */
460int fdtdec_get_pci_vendev(const void *blob, int node,
461 u16 *vendor, u16 *device);
462
463/**
464 * Look at the pci address of a device node that represents a PCI device
Bin Menga62e84d2014-12-31 16:05:11 +0800465 * and return base address of the pci device's registers.
466 *
Simon Glassfcc0a872015-11-29 13:17:54 -0700467 * @param dev device to examine
Bin Menga62e84d2014-12-31 16:05:11 +0800468 * @param addr pci address in the form of fdt_pci_addr
469 * @param bar returns base address of the pci device's registers
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100470 * Return: 0 if ok, negative on error
Bin Menga62e84d2014-12-31 16:05:11 +0800471 */
Simon Glass194fca92020-01-27 08:49:38 -0700472int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassfcc0a872015-11-29 13:17:54 -0700473 u32 *bar);
Bin Menga62e84d2014-12-31 16:05:11 +0800474
475/**
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700476 * Look at the bus range property of a device node and return the pci bus
477 * range for this node.
478 * The property must hold one fdt_pci_addr with a length.
479 * @param blob FDT blob
480 * @param node node to examine
481 * @param res the resource structure to return the bus range
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100482 * Return: 0 if ok, negative on error
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700483 */
484
485int fdtdec_get_pci_bus_range(const void *blob, int node,
486 struct fdt_resource *res);
487
488/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000489 * Look up a 32-bit integer property in a node and return it. The property
490 * must have at least 4 bytes of data. The value of the first cell is
491 * returned.
492 *
493 * @param blob FDT blob
494 * @param node node to examine
495 * @param prop_name name of property to find
496 * @param default_val default value to return if the property is not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100497 * Return: integer value, if found, or default_val if not
Simon Glassb5220bc2011-10-24 19:15:32 +0000498 */
499s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
500 s32 default_val);
501
502/**
Chin Liang Seebfa3e552015-10-17 08:30:32 -0500503 * Unsigned version of fdtdec_get_int. The property must have at least
504 * 4 bytes of data. The value of the first cell is returned.
505 *
506 * @param blob FDT blob
507 * @param node node to examine
508 * @param prop_name name of property to find
509 * @param default_val default value to return if the property is not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100510 * Return: unsigned integer value, if found, or default_val if not
Chin Liang Seebfa3e552015-10-17 08:30:32 -0500511 */
512unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
513 unsigned int default_val);
514
515/**
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700516 * Get a variable-sized number from a property
517 *
518 * This reads a number from one or more cells.
519 *
520 * @param ptr Pointer to property
521 * @param cells Number of cells containing the number
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100522 * Return: the value in the cells
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700523 */
524u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells);
525
526/**
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000527 * Look up a 64-bit integer property in a node and return it. The property
528 * must have at least 8 bytes of data (2 cells). The first two cells are
529 * concatenated to form a 8 bytes value, where the first cell is top half and
530 * the second cell is bottom half.
531 *
532 * @param blob FDT blob
533 * @param node node to examine
534 * @param prop_name name of property to find
535 * @param default_val default value to return if the property is not found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100536 * Return: integer value, if found, or default_val if not
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000537 */
538uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
539 uint64_t default_val);
540
541/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000542 * Checks whether a node is enabled.
543 * This looks for a 'status' property. If this exists, then returns 1 if
544 * the status is 'ok' and 0 otherwise. If there is no status property,
Simon Glassf88fe2d2012-02-27 10:52:34 +0000545 * it returns 1 on the assumption that anything mentioned should be enabled
546 * by default.
Simon Glassb5220bc2011-10-24 19:15:32 +0000547 *
548 * @param blob FDT blob
549 * @param node node to examine
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100550 * Return: integer value 0 (not enabled) or 1 (enabled)
Simon Glassb5220bc2011-10-24 19:15:32 +0000551 */
Simon Glassf88fe2d2012-02-27 10:52:34 +0000552int fdtdec_get_is_enabled(const void *blob, int node);
Simon Glassb5220bc2011-10-24 19:15:32 +0000553
554/**
Simon Glass9a263e52012-03-28 10:08:24 +0000555 * Make sure we have a valid fdt available to control U-Boot.
556 *
557 * If not, a message is printed to the console if the console is ready.
558 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100559 * Return: 0 if all ok, -1 if not
Simon Glass9a263e52012-03-28 10:08:24 +0000560 */
561int fdtdec_prepare_fdt(void);
562
563/**
564 * Checks that we have a valid fdt available to control U-Boot.
565
566 * However, if not then for the moment nothing is done, since this function
567 * is called too early to panic().
568 *
569 * @returns 0
Simon Glassb5220bc2011-10-24 19:15:32 +0000570 */
571int fdtdec_check_fdt(void);
Simon Glassa53f4a22012-01-17 08:20:50 +0000572
573/**
574 * Find the nodes for a peripheral and return a list of them in the correct
575 * order. This is used to enumerate all the peripherals of a certain type.
576 *
577 * To use this, optionally set up a /aliases node with alias properties for
578 * a peripheral. For example, for usb you could have:
579 *
580 * aliases {
581 * usb0 = "/ehci@c5008000";
582 * usb1 = "/ehci@c5000000";
583 * };
584 *
585 * Pass "usb" as the name to this function and will return a list of two
586 * nodes offsets: /ehci@c5008000 and ehci@c5000000.
587 *
588 * All nodes returned will match the compatible ID, as it is assumed that
589 * all peripherals use the same driver.
590 *
591 * If no alias node is found, then the node list will be returned in the
592 * order found in the fdt. If the aliases mention a node which doesn't
593 * exist, then this will be ignored. If nodes are found with no aliases,
594 * they will be added in any order.
595 *
596 * If there is a gap in the aliases, then this function return a 0 node at
597 * that position. The return value will also count these gaps.
598 *
599 * This function checks node properties and will not return nodes which are
600 * marked disabled (status = "disabled").
601 *
602 * @param blob FDT blob to use
603 * @param name Root name of alias to search for
604 * @param id Compatible ID to look for
605 * @param node_list Place to put list of found nodes
606 * @param maxcount Maximum number of nodes to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100607 * Return: number of nodes found on success, FDT_ERR_... on error
Simon Glassa53f4a22012-01-17 08:20:50 +0000608 */
609int fdtdec_find_aliases_for_id(const void *blob, const char *name,
610 enum fdt_compat_id id, int *node_list, int maxcount);
611
612/*
Simon Glassc6782272012-02-03 15:13:53 +0000613 * This function is similar to fdtdec_find_aliases_for_id() except that it
614 * adds to the node_list that is passed in. Any 0 elements are considered
615 * available for allocation - others are considered already used and are
616 * skipped.
617 *
618 * You can use this by calling fdtdec_find_aliases_for_id() with an
619 * uninitialised array, then setting the elements that are returned to -1,
620 * say, then calling this function, perhaps with a different compat id.
621 * Any elements you get back that are >0 are new nodes added by the call
622 * to this function.
623 *
624 * Note that if you have some nodes with aliases and some without, you are
625 * sailing close to the wind. The call to fdtdec_find_aliases_for_id() with
626 * one compat_id may fill in positions for which you have aliases defined
627 * for another compat_id. When you later call *this* function with the second
628 * compat_id, the alias positions may already be used. A debug warning may
629 * be generated in this case, but it is safest to define aliases for all
630 * nodes when you care about the ordering.
631 */
632int fdtdec_add_aliases_for_id(const void *blob, const char *name,
633 enum fdt_compat_id id, int *node_list, int maxcount);
634
Simon Glass5c33c9f2014-07-23 06:55:09 -0600635/**
636 * Get the alias sequence number of a node
637 *
638 * This works out whether a node is pointed to by an alias, and if so, the
639 * sequence number of that alias. Aliases are of the form <base><num> where
640 * <num> is the sequence number. For example spi2 would be sequence number
641 * 2.
642 *
643 * @param blob Device tree blob (if NULL, then error is returned)
644 * @param base Base name for alias (before the underscore)
645 * @param node Node to look up
646 * @param seqp This is set to the sequence number if one is found,
647 * but otherwise the value is left alone
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100648 * Return: 0 if a sequence was found, -ve if not
Simon Glass5c33c9f2014-07-23 06:55:09 -0600649 */
650int fdtdec_get_alias_seq(const void *blob, const char *base, int node,
651 int *seqp);
652
Simon Glass3234aa42014-07-23 06:55:16 -0600653/**
Michal Simek003c9dc2019-01-31 16:30:58 +0100654 * Get the highest alias number for susbystem.
655 *
656 * It parses all aliases and find out highest recorded alias for subsystem.
657 * Aliases are of the form <base><num> where <num> is the sequence number.
658 *
659 * @param blob Device tree blob (if NULL, then error is returned)
660 * @param base Base name for alias susbystem (before the number)
661 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100662 * Return: 0 highest alias ID, -1 if not found
Michal Simek003c9dc2019-01-31 16:30:58 +0100663 */
664int fdtdec_get_alias_highest_id(const void *blob, const char *base);
665
666/**
Simon Glass3bc37a52015-10-17 19:41:14 -0600667 * Get a property from the /chosen node
668 *
669 * @param blob Device tree blob (if NULL, then NULL is returned)
670 * @param name Property name to look up
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100671 * Return: Value of property, or NULL if it does not exist
Simon Glass3bc37a52015-10-17 19:41:14 -0600672 */
673const char *fdtdec_get_chosen_prop(const void *blob, const char *name);
674
675/**
676 * Get the offset of the given /chosen node
Simon Glassaac07d42014-09-04 16:27:24 -0600677 *
678 * This looks up a property in /chosen containing the path to another node,
679 * then finds the offset of that node.
680 *
681 * @param blob Device tree blob (if NULL, then error is returned)
682 * @param name Property name, e.g. "stdout-path"
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100683 * Return: Node offset referred to by that chosen node, or -ve FDT_ERR_...
Simon Glassaac07d42014-09-04 16:27:24 -0600684 */
685int fdtdec_get_chosen_node(const void *blob, const char *name);
686
Simon Glassc6782272012-02-03 15:13:53 +0000687/*
Simon Glassa53f4a22012-01-17 08:20:50 +0000688 * Get the name for a compatible ID
689 *
690 * @param id Compatible ID to look for
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100691 * Return: compatible string for that id
Simon Glassa53f4a22012-01-17 08:20:50 +0000692 */
693const char *fdtdec_get_compatible(enum fdt_compat_id id);
Simon Glassd17da652012-02-27 10:52:35 +0000694
695/* Look up a phandle and follow it to its node. Then return the offset
696 * of that node.
697 *
698 * @param blob FDT blob
699 * @param node node to examine
700 * @param prop_name name of property to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100701 * Return: node offset if found, -ve error code on error
Simon Glassd17da652012-02-27 10:52:35 +0000702 */
703int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name);
704
705/**
706 * Look up a property in a node and return its contents in an integer
707 * array of given length. The property must have at least enough data for
708 * the array (4*count bytes). It may have more, but this will be ignored.
709 *
710 * @param blob FDT blob
711 * @param node node to examine
712 * @param prop_name name of property to find
713 * @param array array to fill with data
714 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100715 * Return: 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found,
Simon Glassd17da652012-02-27 10:52:35 +0000716 * or -FDT_ERR_BADLAYOUT if not enough data
717 */
718int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
719 u32 *array, int count);
720
721/**
Simon Glassa9f04d42014-11-10 18:00:19 -0700722 * Look up a property in a node and return its contents in an integer
723 * array of given length. The property must exist but may have less data that
724 * expected (4*count bytes). It may have more, but this will be ignored.
725 *
726 * @param blob FDT blob
727 * @param node node to examine
728 * @param prop_name name of property to find
729 * @param array array to fill with data
730 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100731 * Return: number of array elements if ok, or -FDT_ERR_NOTFOUND if the
Simon Glassa9f04d42014-11-10 18:00:19 -0700732 * property is not found
733 */
734int fdtdec_get_int_array_count(const void *blob, int node,
735 const char *prop_name, u32 *array, int count);
736
737/**
Simon Glass96875e72012-04-02 13:18:41 +0000738 * Look up a property in a node and return a pointer to its contents as a
739 * unsigned int array of given length. The property must have at least enough
740 * data for the array ('count' cells). It may have more, but this will be
741 * ignored. The data is not copied.
742 *
743 * Note that you must access elements of the array with fdt32_to_cpu(),
744 * since the elements will be big endian even on a little endian machine.
745 *
746 * @param blob FDT blob
747 * @param node node to examine
748 * @param prop_name name of property to find
749 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100750 * Return: pointer to array if found, or NULL if the property is not
Simon Glass96875e72012-04-02 13:18:41 +0000751 * found or there is not enough data
752 */
753const u32 *fdtdec_locate_array(const void *blob, int node,
754 const char *prop_name, int count);
755
756/**
Simon Glassd17da652012-02-27 10:52:35 +0000757 * Look up a boolean property in a node and return it.
758 *
759 * A boolean properly is true if present in the device tree and false if not
760 * present, regardless of its value.
761 *
762 * @param blob FDT blob
763 * @param node node to examine
764 * @param prop_name name of property to find
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100765 * Return: 1 if the properly is present; 0 if it isn't present
Simon Glassd17da652012-02-27 10:52:35 +0000766 */
767int fdtdec_get_bool(const void *blob, int node, const char *prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000768
Peng Fan1889a7e2016-02-01 13:31:15 +0800769/*
770 * Count child nodes of one parent node.
771 *
772 * @param blob FDT blob
773 * @param node parent node
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100774 * Return: number of child node; 0 if there is not child node
Peng Fan1889a7e2016-02-01 13:31:15 +0800775 */
776int fdtdec_get_child_count(const void *blob, int node);
777
Anton Staffbed4d892012-04-17 09:01:28 +0000778/*
779 * Look up a property in a node and return its contents in a byte
780 * array of given length. The property must have at least enough data for
781 * the array (count bytes). It may have more, but this will be ignored.
782 *
783 * @param blob FDT blob
784 * @param node node to examine
785 * @param prop_name name of property to find
786 * @param array array to fill with data
787 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100788 * Return: 0 if ok, or -FDT_ERR_MISSING if the property is not found,
Anton Staffbed4d892012-04-17 09:01:28 +0000789 * or -FDT_ERR_BADLAYOUT if not enough data
790 */
791int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
792 u8 *array, int count);
793
794/**
795 * Look up a property in a node and return a pointer to its contents as a
796 * byte array of given length. The property must have at least enough data
797 * for the array (count bytes). It may have more, but this will be ignored.
798 * The data is not copied.
799 *
800 * @param blob FDT blob
801 * @param node node to examine
802 * @param prop_name name of property to find
803 * @param count number of array elements
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100804 * Return: pointer to byte array if found, or NULL if the property is not
Anton Staffbed4d892012-04-17 09:01:28 +0000805 * found or there is not enough data
806 */
807const u8 *fdtdec_locate_byte_array(const void *blob, int node,
808 const char *prop_name, int count);
Simon Glassf20c4612012-10-25 16:31:00 +0000809
810/**
Thierry Reding56f42242014-08-26 17:33:53 +0200811 * Obtain an indexed resource from a device property.
812 *
813 * @param fdt FDT blob
814 * @param node node to examine
815 * @param property name of the property to parse
816 * @param index index of the resource to retrieve
817 * @param res returns the resource
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100818 * Return: 0 if ok, negative on error
Thierry Reding56f42242014-08-26 17:33:53 +0200819 */
820int fdt_get_resource(const void *fdt, int node, const char *property,
821 unsigned int index, struct fdt_resource *res);
822
823/**
824 * Obtain a named resource from a device property.
825 *
826 * Look up the index of the name in a list of strings and return the resource
827 * at that index.
828 *
829 * @param fdt FDT blob
830 * @param node node to examine
831 * @param property name of the property to parse
832 * @param prop_names name of the property containing the list of names
833 * @param name the name of the entry to look up
834 * @param res returns the resource
835 */
836int fdt_get_named_resource(const void *fdt, int node, const char *property,
837 const char *prop_names, const char *name,
838 struct fdt_resource *res);
839
Simon Glass12e67112015-04-14 21:03:21 -0600840/* Display timings from linux include/video/display_timing.h */
841enum display_flags {
842 DISPLAY_FLAGS_HSYNC_LOW = 1 << 0,
843 DISPLAY_FLAGS_HSYNC_HIGH = 1 << 1,
844 DISPLAY_FLAGS_VSYNC_LOW = 1 << 2,
845 DISPLAY_FLAGS_VSYNC_HIGH = 1 << 3,
846
847 /* data enable flag */
848 DISPLAY_FLAGS_DE_LOW = 1 << 4,
849 DISPLAY_FLAGS_DE_HIGH = 1 << 5,
850 /* drive data on pos. edge */
851 DISPLAY_FLAGS_PIXDATA_POSEDGE = 1 << 6,
852 /* drive data on neg. edge */
853 DISPLAY_FLAGS_PIXDATA_NEGEDGE = 1 << 7,
854 DISPLAY_FLAGS_INTERLACED = 1 << 8,
855 DISPLAY_FLAGS_DOUBLESCAN = 1 << 9,
856 DISPLAY_FLAGS_DOUBLECLK = 1 << 10,
857};
858
859/*
860 * A single signal can be specified via a range of minimal and maximal values
861 * with a typical value, that lies somewhere inbetween.
862 */
863struct timing_entry {
864 u32 min;
865 u32 typ;
866 u32 max;
867};
868
869/*
870 * Single "mode" entry. This describes one set of signal timings a display can
871 * have in one setting. This struct can later be converted to struct videomode
872 * (see include/video/videomode.h). As each timing_entry can be defined as a
873 * range, one struct display_timing may become multiple struct videomodes.
874 *
875 * Example: hsync active high, vsync active low
876 *
877 * Active Video
878 * Video ______________________XXXXXXXXXXXXXXXXXXXXXX_____________________
879 * |<- sync ->|<- back ->|<----- active ----->|<- front ->|<- sync..
880 * | | porch | | porch |
881 *
882 * HSync _|¯¯¯¯¯¯¯¯¯¯|___________________________________________|¯¯¯¯¯¯¯¯¯
883 *
884 * VSync ¯|__________|¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|_________
885 */
886struct display_timing {
887 struct timing_entry pixelclock;
888
889 struct timing_entry hactive; /* hor. active video */
890 struct timing_entry hfront_porch; /* hor. front porch */
891 struct timing_entry hback_porch; /* hor. back porch */
892 struct timing_entry hsync_len; /* hor. sync len */
893
894 struct timing_entry vactive; /* ver. active video */
895 struct timing_entry vfront_porch; /* ver. front porch */
896 struct timing_entry vback_porch; /* ver. back porch */
897 struct timing_entry vsync_len; /* ver. sync len */
898
899 enum display_flags flags; /* display flags */
Jernej Skrabec43c6bdd2017-04-29 14:43:36 +0200900 bool hdmi_monitor; /* is hdmi monitor? */
Simon Glass12e67112015-04-14 21:03:21 -0600901};
902
903/**
904 * fdtdec_decode_display_timing() - decode display timings
905 *
906 * Decode display timings from the supplied 'display-timings' node.
907 * See doc/device-tree-bindings/video/display-timing.txt for binding
908 * information.
909 *
910 * @param blob FDT blob
911 * @param node 'display-timing' node containing the timing subnodes
912 * @param index Index number to read (0=first timing subnode)
913 * @param config Place to put timings
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100914 * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found
Simon Glass12e67112015-04-14 21:03:21 -0600915 */
916int fdtdec_decode_display_timing(const void *blob, int node, int index,
917 struct display_timing *config);
Nathan Rossi623f6012016-12-19 00:03:34 +1000918
919/**
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530920 * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and
921 * gd->ram_start
Nathan Rossi623f6012016-12-19 00:03:34 +1000922 *
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530923 * Decode the /memory 'reg' property to determine the size and start of the
924 * first memory bank, populate the global data with the size and start of the
925 * first bank of memory.
Nathan Rossi623f6012016-12-19 00:03:34 +1000926 *
927 * This function should be called from a boards dram_init(). This helper
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530928 * function allows for boards to query the device tree for DRAM size and start
929 * address instead of hard coding the value in the case where the memory size
930 * and start address cannot be detected automatically.
Nathan Rossi623f6012016-12-19 00:03:34 +1000931 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100932 * Return: 0 if OK, -EINVAL if the /memory node or reg property is missing or
Nathan Rossi623f6012016-12-19 00:03:34 +1000933 * invalid
934 */
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530935int fdtdec_setup_mem_size_base(void);
Nathan Rossi623f6012016-12-19 00:03:34 +1000936
937/**
Michal Simek7fce7392020-07-09 14:09:52 +0200938 * fdtdec_setup_mem_size_base_lowest() - decode and setup gd->ram_size and
939 * gd->ram_start by lowest available memory base
940 *
941 * Decode the /memory 'reg' property to determine the lowest start of the memory
942 * bank bank and populate the global data with it.
943 *
944 * This function should be called from a boards dram_init(). This helper
945 * function allows for boards to query the device tree for DRAM size and start
946 * address instead of hard coding the value in the case where the memory size
947 * and start address cannot be detected automatically.
948 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100949 * Return: 0 if OK, -EINVAL if the /memory node or reg property is missing or
Michal Simek7fce7392020-07-09 14:09:52 +0200950 * invalid
951 */
952int fdtdec_setup_mem_size_base_lowest(void);
953
954/**
Nathan Rossi623f6012016-12-19 00:03:34 +1000955 * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram
956 *
957 * Decode the /memory 'reg' property to determine the address and size of the
958 * memory banks. Use this data to populate the global data board info with the
959 * phys address and size of memory banks.
960 *
961 * This function should be called from a boards dram_init_banksize(). This
962 * helper function allows for boards to query the device tree for memory bank
963 * information instead of hard coding the information in cases where it cannot
964 * be detected automatically.
965 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100966 * Return: 0 if OK, -EINVAL if the /memory node or reg property is missing or
Nathan Rossi623f6012016-12-19 00:03:34 +1000967 * invalid
968 */
969int fdtdec_setup_memory_banksize(void);
970
Simon Glassb45122f2015-02-27 22:06:34 -0700971/**
Thierry Redingebf30e82019-04-15 11:32:13 +0200972 * fdtdec_set_ethernet_mac_address() - set MAC address for default interface
973 *
974 * Looks up the default interface via the "ethernet" alias (in the /aliases
975 * node) and stores the given MAC in its "local-mac-address" property. This
976 * is useful on platforms that store the MAC address in a custom location.
977 * Board code can call this in the late init stage to make sure that the
978 * interface device tree node has the right MAC address configured for the
979 * Ethernet uclass to pick it up.
980 *
981 * Typically the FDT passed into this function will be U-Boot's control DTB.
982 * Given that a lot of code may be holding offsets to various nodes in that
983 * tree, this code will only set the "local-mac-address" property in-place,
984 * which means that it needs to exist and have space for the 6-byte address.
985 * This ensures that the operation is non-destructive and does not invalidate
986 * offsets that other drivers may be using.
987 *
988 * @param fdt FDT blob
989 * @param mac buffer containing the MAC address to set
990 * @param size size of MAC address
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100991 * Return: 0 on success or a negative error code on failure
Thierry Redingebf30e82019-04-15 11:32:13 +0200992 */
993int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size);
994
995/**
Thierry Reding8153d532019-03-21 19:10:01 +0100996 * fdtdec_set_phandle() - sets the phandle of a given node
997 *
998 * @param blob FDT blob
999 * @param node offset in the FDT blob of the node whose phandle is to
1000 * be set
1001 * @param phandle phandle to set for the given node
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001002 * Return: 0 on success or a negative error code on failure
Thierry Reding8153d532019-03-21 19:10:01 +01001003 */
Thierry Redingd81d9692019-04-15 10:08:20 +02001004static inline int fdtdec_set_phandle(void *blob, int node, uint32_t phandle)
1005{
1006 return fdt_setprop_u32(blob, node, "phandle", phandle);
1007}
Thierry Reding8153d532019-03-21 19:10:01 +01001008
Thierry Redingb9aad372021-09-03 15:16:21 +02001009/* add "no-map" property */
1010#define FDTDEC_RESERVED_MEMORY_NO_MAP (1 << 0)
1011
Thierry Reding8153d532019-03-21 19:10:01 +01001012/**
Thierry Redingc9222a02019-03-21 19:10:02 +01001013 * fdtdec_add_reserved_memory() - add or find a reserved-memory node
1014 *
1015 * If a reserved-memory node already exists for the given carveout, a phandle
1016 * for that node will be returned. Otherwise a new node will be created and a
1017 * phandle corresponding to it will be returned.
1018 *
1019 * See Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
1020 * for details on how to use reserved memory regions.
1021 *
1022 * As an example, consider the following code snippet:
1023 *
1024 * struct fdt_memory fb = {
1025 * .start = 0x92cb3000,
1026 * .end = 0x934b2fff,
1027 * };
1028 * uint32_t phandle;
1029 *
Thierry Reding46cb0672021-09-03 15:16:19 +02001030 * fdtdec_add_reserved_memory(fdt, "framebuffer", &fb, NULL, 0, &phandle,
Thierry Redingb9aad372021-09-03 15:16:21 +02001031 * 0);
Thierry Redingc9222a02019-03-21 19:10:02 +01001032 *
1033 * This results in the following subnode being added to the top-level
1034 * /reserved-memory node:
1035 *
1036 * reserved-memory {
1037 * #address-cells = <0x00000002>;
1038 * #size-cells = <0x00000002>;
1039 * ranges;
1040 *
1041 * framebuffer@92cb3000 {
1042 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1043 * phandle = <0x0000004d>;
1044 * };
1045 * };
1046 *
1047 * If the top-level /reserved-memory node does not exist, it will be created.
1048 * The phandle returned from the function call can be used to reference this
1049 * reserved memory region from other nodes.
1050 *
Thierry Reding16523ac2019-03-21 19:10:03 +01001051 * See fdtdec_set_carveout() for a more elaborate example.
1052 *
Thierry Redingc9222a02019-03-21 19:10:02 +01001053 * @param blob FDT blob
1054 * @param basename base name of the node to create
1055 * @param carveout information about the carveout region
Thierry Reding46cb0672021-09-03 15:16:19 +02001056 * @param compatibles list of compatible strings for the carveout region
1057 * @param count number of compatible strings for the carveout region
Thierry Redingc9222a02019-03-21 19:10:02 +01001058 * @param phandlep return location for the phandle of the carveout region
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001059 * can be NULL if no phandle should be added
Thierry Redingb9aad372021-09-03 15:16:21 +02001060 * @param flags bitmask of flags to set for the carveout region
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001061 * Return: 0 on success or a negative error code on failure
Thierry Redingc9222a02019-03-21 19:10:02 +01001062 */
1063int fdtdec_add_reserved_memory(void *blob, const char *basename,
1064 const struct fdt_memory *carveout,
Thierry Reding46cb0672021-09-03 15:16:19 +02001065 const char **compatibles, unsigned int count,
Thierry Redingb9aad372021-09-03 15:16:21 +02001066 uint32_t *phandlep, unsigned long flags);
Thierry Redingc9222a02019-03-21 19:10:02 +01001067
1068/**
Thierry Reding16523ac2019-03-21 19:10:03 +01001069 * fdtdec_get_carveout() - reads a carveout from an FDT
1070 *
1071 * Reads information about a carveout region from an FDT. The carveout is a
1072 * referenced by its phandle that is read from a given property in a given
1073 * node.
1074 *
1075 * @param blob FDT blob
1076 * @param node name of a node
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001077 * @param prop_name name of the property in the given node that contains
Thierry Reding16523ac2019-03-21 19:10:03 +01001078 * the phandle for the carveout
1079 * @param index index of the phandle for which to read the carveout
1080 * @param carveout return location for the carveout information
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001081 * @param name return location for the carveout name
Thierry Reding46cb0672021-09-03 15:16:19 +02001082 * @param compatiblesp return location for compatible strings
Thierry Redingb9aad372021-09-03 15:16:21 +02001083 * @param countp return location for the number of compatible strings
1084 * @param flags return location for the flags of the carveout
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001085 * Return: 0 on success or a negative error code on failure
Thierry Reding16523ac2019-03-21 19:10:03 +01001086 */
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001087int fdtdec_get_carveout(const void *blob, const char *node,
1088 const char *prop_name, unsigned int index,
Thierry Reding46cb0672021-09-03 15:16:19 +02001089 struct fdt_memory *carveout, const char **name,
Thierry Redingb9aad372021-09-03 15:16:21 +02001090 const char ***compatiblesp, unsigned int *countp,
1091 unsigned long *flags);
Thierry Reding16523ac2019-03-21 19:10:03 +01001092
1093/**
1094 * fdtdec_set_carveout() - sets a carveout region for a given node
1095 *
1096 * Sets a carveout region for a given node. If a reserved-memory node already
1097 * exists for the carveout, the phandle for that node will be reused. If no
1098 * such node exists, a new one will be created and a phandle to it stored in
1099 * a specified property of the given node.
1100 *
1101 * As an example, consider the following code snippet:
1102 *
1103 * const char *node = "/host1x@50000000/dc@54240000";
1104 * struct fdt_memory fb = {
1105 * .start = 0x92cb3000,
1106 * .end = 0x934b2fff,
1107 * };
1108 *
Thierry Reding46cb0672021-09-03 15:16:19 +02001109 * fdtdec_set_carveout(fdt, node, "memory-region", 0, "framebuffer", NULL,
Thierry Redingb9aad372021-09-03 15:16:21 +02001110 * 0, &fb, 0);
Thierry Reding16523ac2019-03-21 19:10:03 +01001111 *
1112 * dc@54200000 is a display controller and was set up by the bootloader to
1113 * scan out the framebuffer specified by "fb". This would cause the following
1114 * reserved memory region to be added:
1115 *
1116 * reserved-memory {
1117 * #address-cells = <0x00000002>;
1118 * #size-cells = <0x00000002>;
1119 * ranges;
1120 *
1121 * framebuffer@92cb3000 {
1122 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1123 * phandle = <0x0000004d>;
1124 * };
1125 * };
1126 *
1127 * A "memory-region" property will also be added to the node referenced by the
1128 * offset parameter.
1129 *
1130 * host1x@50000000 {
1131 * ...
1132 *
1133 * dc@54240000 {
1134 * ...
1135 * memory-region = <0x0000004d>;
1136 * ...
1137 * };
1138 *
1139 * ...
1140 * };
1141 *
1142 * @param blob FDT blob
1143 * @param node name of the node to add the carveout to
1144 * @param prop_name name of the property in which to store the phandle of
1145 * the carveout
1146 * @param index index of the phandle to store
Thierry Reding16523ac2019-03-21 19:10:03 +01001147 * @param carveout information about the carveout to add
Thierry Reding90194872021-09-03 15:16:20 +02001148 * @param name base name of the reserved-memory node to create
Thierry Reding46cb0672021-09-03 15:16:19 +02001149 * @param compatibles compatible strings to set for the carveout
1150 * @param count number of compatible strings
Thierry Redingb9aad372021-09-03 15:16:21 +02001151 * @param flags bitmask of flags to set for the carveout
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001152 * Return: 0 on success or a negative error code on failure
Thierry Reding16523ac2019-03-21 19:10:03 +01001153 */
1154int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Reding90194872021-09-03 15:16:20 +02001155 unsigned int index, const struct fdt_memory *carveout,
1156 const char *name, const char **compatibles,
Thierry Redingb9aad372021-09-03 15:16:21 +02001157 unsigned int count, unsigned long flags);
Thierry Reding16523ac2019-03-21 19:10:03 +01001158
1159/**
Simon Glassb45122f2015-02-27 22:06:34 -07001160 * Set up the device tree ready for use
1161 */
Simon Glass08793612015-02-27 22:06:35 -07001162int fdtdec_setup(void);
Simon Glassb45122f2015-02-27 22:06:34 -07001163
Marek Vasut0e2afc82020-04-11 21:18:59 +02001164/**
1165 * Perform board-specific early DT adjustments
1166 */
1167int fdtdec_board_setup(const void *fdt_blob);
1168
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001169#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1170/**
1171 * fdtdec_resetup() - Set up the device tree again
1172 *
1173 * The main difference with fdtdec_setup() is that it returns if the fdt has
1174 * changed because a better match has been found.
1175 * This is typically used for boards that rely on a DM driver to detect the
1176 * board type. This function sould be called by the board code after the stuff
1177 * needed by board_fit_config_name_match() to operate porperly is available.
1178 * If this functions signals that a rescan is necessary, the board code must
1179 * unbind all the drivers using dm_uninit() and then rescan the DT with
1180 * dm_init_and_scan().
1181 *
1182 * @param rescan Returns a flag indicating that fdt has changed and rescanning
1183 * the fdt is required
1184 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001185 * Return: 0 if OK, -ve on error
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001186 */
1187int fdtdec_resetup(int *rescan);
1188#endif
1189
Alex Deymo82f766d2017-04-02 01:25:20 -07001190/**
1191 * Board-specific FDT initialization. Returns the address to a device tree blob.
Simon Glass98550342021-12-16 20:59:31 -07001192 *
1193 * Called when CONFIG_OF_BOARD is defined.
1194 *
1195 * The existing devicetree is available at gd->fdt_blob
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001196 *
1197 * @err internal error code if we fail to setup a DTB
Simon Glass98550342021-12-16 20:59:31 -07001198 * @returns new devicetree blob pointer
Alex Deymo82f766d2017-04-02 01:25:20 -07001199 */
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001200void *board_fdt_blob_setup(int *err);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001201
1202/*
1203 * Decode the size of memory
1204 *
1205 * RAM size is normally set in a /memory node and consists of a list of
1206 * (base, size) cells in the 'reg' property. This information is used to
1207 * determine the total available memory as well as the address and size
1208 * of each bank.
1209 *
1210 * Optionally the memory configuration can vary depending on a board id,
1211 * typically read from strapping resistors or an EEPROM on the board.
1212 *
1213 * Finally, memory size can be detected (within certain limits) by probing
1214 * the available memory. It is safe to do so within the limits provides by
1215 * the board's device tree information. This makes it possible to produce
1216 * boards with different memory sizes, where the device tree specifies the
1217 * maximum memory configuration, and the smaller memory configuration is
1218 * probed.
1219 *
1220 * This function decodes that information, returning the memory base address,
1221 * size and bank information. See the memory.txt binding for full
1222 * documentation.
1223 *
1224 * @param blob Device tree blob
1225 * @param area Name of node to check (NULL means "/memory")
1226 * @param board_id Board ID to look up
1227 * @param basep Returns base address of first memory bank (NULL to
1228 * ignore)
1229 * @param sizep Returns total memory size (NULL to ignore)
1230 * @param bd Updated with the memory bank information (NULL to skip)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001231 * Return: 0 if OK, -ve on error
Michael Pratt90c08fa2018-06-11 13:07:09 -06001232 */
1233int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1234 phys_addr_t *basep, phys_size_t *sizep,
1235 struct bd_info *bd);
Alex Deymo82f766d2017-04-02 01:25:20 -07001236
Simon Glass39605c62021-12-16 20:59:33 -07001237/**
1238 * fdtdec_get_srcname() - Get the name of where the devicetree comes from
1239 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001240 * Return: source name
Simon Glass39605c62021-12-16 20:59:33 -07001241 */
1242const char *fdtdec_get_srcname(void);
1243
Simon Glass5bfa78d2012-07-12 05:25:02 +00001244#endif