blob: 68786111a44a8ec211959dcba2c3e07bdbafd969 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass2d2af852011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass2d2af852011-10-24 19:15:32 +00004 */
5
Simon Glass0a9d66f2012-07-12 05:25:02 +00006#ifndef __fdtdec_h
7#define __fdtdec_h
Simon Glass2d2af852011-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 Yamada75f82d02018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Bin Meng779847e2014-12-31 16:05:11 +080018#include <pci.h>
Simon Glass2d2af852011-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 Sun56893722015-08-03 12:02:04 -070024typedef phys_addr_t fdt_addr_t;
25typedef phys_size_t fdt_size_t;
Thierry Reding3d4ffa02019-03-21 19:10:00 +010026
Mario Six61efece2018-02-12 08:05:57 +010027#define FDT_ADDR_T_NONE (-1U)
Chen Guanqiao223f17d2021-04-12 14:51:11 +080028#define FDT_SIZE_T_NONE (-1U)
29
30#ifdef CONFIG_PHYS_64BIT
Simon Glass2d2af852011-10-24 19:15:32 +000031#define fdt_addr_to_cpu(reg) be64_to_cpu(reg)
Simon Glassf909b9c2012-10-25 16:31:00 +000032#define fdt_size_to_cpu(reg) be64_to_cpu(reg)
Thierry Reding570a7932019-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 Glass1b1fe412017-08-29 14:15:50 -060035typedef fdt64_t fdt_val_t;
Simon Glass2d2af852011-10-24 19:15:32 +000036#else
Simon Glass2d2af852011-10-24 19:15:32 +000037#define fdt_addr_to_cpu(reg) be32_to_cpu(reg)
Simon Glassf909b9c2012-10-25 16:31:00 +000038#define fdt_size_to_cpu(reg) be32_to_cpu(reg)
Thierry Reding570a7932019-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 Glass1b1fe412017-08-29 14:15:50 -060041typedef fdt32_t fdt_val_t;
Simon Glass2d2af852011-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 Prattfa28d142018-06-11 13:07:09 -060050struct bd_info;
51
Simon Glass8579a512015-03-06 13:19:03 -070052#ifdef CONFIG_SPL_BUILD
53#define SPL_BUILD 1
54#else
55#define SPL_BUILD 0
56#endif
57
Thierry Redinga937b802014-08-26 17:33:53 +020058/*
59 * Information about a resource. start is the first address of the resource
60 * and end is the last address (inclusive). The length of the resource will
61 * be equal to: end - start + 1.
62 */
63struct fdt_resource {
64 fdt_addr_t start;
65 fdt_addr_t end;
66};
67
Bin Meng779847e2014-12-31 16:05:11 +080068enum fdt_pci_space {
69 FDT_PCI_SPACE_CONFIG = 0,
70 FDT_PCI_SPACE_IO = 0x01000000,
71 FDT_PCI_SPACE_MEM32 = 0x02000000,
72 FDT_PCI_SPACE_MEM64 = 0x03000000,
73 FDT_PCI_SPACE_MEM32_PREF = 0x42000000,
74 FDT_PCI_SPACE_MEM64_PREF = 0x43000000,
75};
76
77#define FDT_PCI_ADDR_CELLS 3
78#define FDT_PCI_SIZE_CELLS 2
79#define FDT_PCI_REG_SIZE \
80 ((FDT_PCI_ADDR_CELLS + FDT_PCI_SIZE_CELLS) * sizeof(u32))
81
82/*
83 * The Open Firmware spec defines PCI physical address as follows:
84 *
85 * bits# 31 .... 24 23 .... 16 15 .... 08 07 .... 00
86 *
87 * phys.hi cell: npt000ss bbbbbbbb dddddfff rrrrrrrr
88 * phys.mid cell: hhhhhhhh hhhhhhhh hhhhhhhh hhhhhhhh
89 * phys.lo cell: llllllll llllllll llllllll llllllll
90 *
91 * where:
92 *
93 * n: is 0 if the address is relocatable, 1 otherwise
94 * p: is 1 if addressable region is prefetchable, 0 otherwise
95 * t: is 1 if the address is aliased (for non-relocatable I/O) below 1MB
96 * (for Memory), or below 64KB (for relocatable I/O)
97 * ss: is the space code, denoting the address space
98 * bbbbbbbb: is the 8-bit Bus Number
99 * ddddd: is the 5-bit Device Number
100 * fff: is the 3-bit Function Number
101 * rrrrrrrr: is the 8-bit Register Number
102 * hhhhhhhh: is a 32-bit unsigned number
103 * llllllll: is a 32-bit unsigned number
104 */
105struct fdt_pci_addr {
106 u32 phys_hi;
107 u32 phys_mid;
108 u32 phys_lo;
109};
110
Simon Glasse16f4c42019-12-28 10:44:42 -0700111extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
112extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
113
Simon Glassbbe57972021-12-16 20:59:26 -0700114/* Get a pointer to the embedded devicetree, if there is one, else NULL */
115static inline u8 *dtb_dt_embedded(void)
116{
117#ifdef CONFIG_OF_EMBED
118# ifdef CONFIG_SPL_BUILD
119 return __dtb_dt_spl_begin;
120# else
121 return __dtb_dt_begin;
122# endif
123#else
124 return NULL;
125#endif
126}
127
Thierry Redinga937b802014-08-26 17:33:53 +0200128/**
129 * Compute the size of a resource.
130 *
131 * @param res the resource to operate on
132 * @return the size of the resource
133 */
134static inline fdt_size_t fdt_resource_size(const struct fdt_resource *res)
135{
136 return res->end - res->start + 1;
137}
138
Simon Glass2d2af852011-10-24 19:15:32 +0000139/**
140 * Compat types that we know about and for which we might have drivers.
141 * Each is named COMPAT_<dir>_<filename> where <dir> is the directory
142 * within drivers.
143 */
144enum fdt_compat_id {
145 COMPAT_UNKNOWN,
Allen Martin55d98a12012-08-31 08:30:00 +0000146 COMPAT_NVIDIA_TEGRA20_EMC, /* Tegra20 memory controller */
147 COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */
Jim Lin5d309e62012-07-29 20:53:29 +0000148 COMPAT_NVIDIA_TEGRA20_NAND, /* Tegra2 NAND controller */
Thierry Redingf202e022014-12-09 22:25:09 -0700149 COMPAT_NVIDIA_TEGRA124_XUSB_PADCTL,
150 /* Tegra124 XUSB pad controller */
Tom Warrenab0cc6b2015-03-04 16:36:00 -0700151 COMPAT_NVIDIA_TEGRA210_XUSB_PADCTL,
152 /* Tegra210 XUSB pad controller */
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +0000153 COMPAT_SAMSUNG_EXYNOS_USB_PHY, /* Exynos phy controller for usb2.0 */
Vivek Gautamf8745232013-09-14 14:02:48 +0530154 COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos phy controller for usb3.0 */
Akshay Saraswataa773182013-02-25 01:13:01 +0000155 COMPAT_SAMSUNG_EXYNOS_TMU, /* Exynos TMU */
Piotr Wilczek24e368a2014-03-07 14:59:39 +0100156 COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */
Jaehoon Chunge3fb6fa2014-05-16 13:59:51 +0900157 COMPAT_SAMSUNG_EXYNOS_DWMMC, /* Exynos DWMMC controller */
Simon Glass609560942013-03-11 06:08:08 +0000158 COMPAT_GENERIC_SPI_FLASH, /* Generic SPI Flash chip */
Ajay Kumare24c5022014-09-05 16:53:33 +0530159 COMPAT_SAMSUNG_EXYNOS_SYSMMU, /* Exynos sysmmu */
Simon Glassf79d5382014-11-12 22:42:21 -0700160 COMPAT_INTEL_MICROCODE, /* Intel microcode update */
Bin Meng2bfd2642015-02-05 23:42:26 +0800161 COMPAT_INTEL_QRK_MRC, /* Intel Quark MRC */
Marek Vasutf3f8fe22015-07-25 19:33:56 +0200162 COMPAT_ALTERA_SOCFPGA_DWMAC, /* SoCFPGA Ethernet controller */
Marek Vasut17497232015-07-25 10:48:14 +0200163 COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */
Marek Vasutf26c1ae2015-12-05 19:28:44 +0100164 COMPAT_ALTERA_SOCFPGA_DWC2USB, /* SoCFPGA DWC2 USB controller */
Andrew Bradford74fdb582015-08-07 08:36:35 -0400165 COMPAT_INTEL_BAYTRAIL_FSP, /* Intel Bay Trail FSP */
166 COMPAT_INTEL_BAYTRAIL_FSP_MDP, /* Intel FSP memory-down params */
Bin Meng5ce2d8b2015-12-11 02:55:44 -0800167 COMPAT_INTEL_IVYBRIDGE_FSP, /* Intel Ivy Bridge FSP */
Boris Brezillon57f20382016-06-15 21:09:23 +0200168 COMPAT_SUNXI_NAND, /* SUNXI NAND controller */
Ley Foon Tanb25ae722017-04-05 17:32:47 +0800169 COMPAT_ALTERA_SOCFPGA_CLK, /* SoCFPGA Clock initialization */
170 COMPAT_ALTERA_SOCFPGA_PINCTRL_SINGLE, /* SoCFPGA pinctrl-single */
171 COMPAT_ALTERA_SOCFPGA_H2F_BRG, /* SoCFPGA hps2fpga bridge */
172 COMPAT_ALTERA_SOCFPGA_LWH2F_BRG, /* SoCFPGA lwhps2fpga bridge */
173 COMPAT_ALTERA_SOCFPGA_F2H_BRG, /* SoCFPGA fpga2hps bridge */
174 COMPAT_ALTERA_SOCFPGA_F2SDR0, /* SoCFPGA fpga2SDRAM0 bridge */
175 COMPAT_ALTERA_SOCFPGA_F2SDR1, /* SoCFPGA fpga2SDRAM1 bridge */
176 COMPAT_ALTERA_SOCFPGA_F2SDR2, /* SoCFPGA fpga2SDRAM2 bridge */
Tien Fong Cheebbfa5eb2017-09-25 16:40:03 +0800177 COMPAT_ALTERA_SOCFPGA_FPGA0, /* SOCFPGA FPGA manager */
178 COMPAT_ALTERA_SOCFPGA_NOC, /* SOCFPGA Arria 10 NOC */
Marek Vasutee4e36b2018-05-12 11:56:10 +0200179 COMPAT_ALTERA_SOCFPGA_CLK_INIT, /* SOCFPGA Arria 10 clk init */
Simon Glass2d2af852011-10-24 19:15:32 +0000180
181 COMPAT_COUNT,
182};
183
Simon Glassb491e9c2015-01-05 20:05:26 -0700184#define MAX_PHANDLE_ARGS 16
185struct fdtdec_phandle_args {
186 int node;
187 int args_count;
188 uint32_t args[MAX_PHANDLE_ARGS];
189};
190
191/**
192 * fdtdec_parse_phandle_with_args() - Find a node pointed by phandle in a list
193 *
194 * This function is useful to parse lists of phandles and their arguments.
195 *
196 * Example:
197 *
198 * phandle1: node1 {
199 * #list-cells = <2>;
200 * }
201 *
202 * phandle2: node2 {
203 * #list-cells = <1>;
204 * }
205 *
206 * node3 {
207 * list = <&phandle1 1 2 &phandle2 3>;
208 * }
209 *
210 * To get a device_node of the `node2' node you may call this:
211 * fdtdec_parse_phandle_with_args(blob, node3, "list", "#list-cells", 0, 1,
212 * &args);
213 *
214 * (This function is a modified version of __of_parse_phandle_with_args() from
215 * Linux 3.18)
216 *
217 * @blob: Pointer to device tree
218 * @src_node: Offset of device tree node containing a list
219 * @list_name: property name that contains a list
220 * @cells_name: property name that specifies the phandles' arguments count,
221 * or NULL to use @cells_count
222 * @cells_count: Cell count to use if @cells_name is NULL
223 * @index: index of a phandle to parse out
224 * @out_args: optional pointer to output arguments structure (will be filled)
225 * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if
226 * @list_name does not exist, a phandle was not found, @cells_name
227 * could not be found, the arguments were truncated or there were too
228 * many arguments.
229 *
230 */
231int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
232 const char *list_name,
233 const char *cells_name,
234 int cell_count, int index,
235 struct fdtdec_phandle_args *out_args);
236
Sean Pauladbcfc92012-10-25 16:31:06 +0000237/**
Simon Glass2d2af852011-10-24 19:15:32 +0000238 * Find the next numbered alias for a peripheral. This is used to enumerate
239 * all the peripherals of a certain type.
240 *
241 * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then
242 * this function will return a pointer to the node the alias points to, and
243 * then update *upto to 1. Next time you call this function, the next node
244 * will be returned.
245 *
246 * All nodes returned will match the compatible ID, as it is assumed that
247 * all peripherals use the same driver.
248 *
249 * @param blob FDT blob to use
250 * @param name Root name of alias to search for
251 * @param id Compatible ID to look for
252 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
253 */
254int fdtdec_next_alias(const void *blob, const char *name,
255 enum fdt_compat_id id, int *upto);
256
257/**
Gerald Van Barencdac3392012-11-12 23:13:54 -0500258 * Find the compatible ID for a given node.
259 *
260 * Generally each node has at least one compatible string attached to it.
261 * This function looks through our list of known compatible strings and
262 * returns the corresponding ID which matches the compatible string.
263 *
264 * @param blob FDT blob to use
265 * @param node Node containing compatible string to find
266 * @return compatible ID, or COMPAT_UNKNOWN if we cannot find a match
267 */
268enum fdt_compat_id fdtdec_lookup(const void *blob, int node);
269
270/**
Simon Glass65444982012-02-27 10:52:34 +0000271 * Find the next compatible node for a peripheral.
272 *
273 * Do the first call with node = 0. This function will return a pointer to
274 * the next compatible node. Next time you call this function, pass the
275 * value returned, and the next node will be provided.
276 *
277 * @param blob FDT blob to use
278 * @param node Start node for search
279 * @param id Compatible ID to look for (enum fdt_compat_id)
280 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
281 */
282int fdtdec_next_compatible(const void *blob, int node,
283 enum fdt_compat_id id);
284
285/**
Simon Glass2e979b12012-04-02 13:18:42 +0000286 * Find the next compatible subnode for a peripheral.
287 *
288 * Do the first call with node set to the parent and depth = 0. This
289 * function will return the offset of the next compatible node. Next time
290 * you call this function, pass the node value returned last time, with
291 * depth unchanged, and the next node will be provided.
292 *
293 * @param blob FDT blob to use
294 * @param node Start node for search
295 * @param id Compatible ID to look for (enum fdt_compat_id)
296 * @param depthp Current depth (set to 0 before first call)
297 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
298 */
299int fdtdec_next_compatible_subnode(const void *blob, int node,
300 enum fdt_compat_id id, int *depthp);
301
Stephen Warren6dfe6182015-08-06 15:31:02 -0600302/*
303 * Look up an address property in a node and return the parsed address, and
304 * optionally the parsed size.
305 *
306 * This variant assumes a known and fixed number of cells are used to
307 * represent the address and size.
308 *
309 * You probably don't want to use this function directly except to parse
310 * non-standard properties, and never to parse the "reg" property. Instead,
311 * use one of the "auto" variants below, which automatically honor the
312 * #address-cells and #size-cells properties in the parent node.
313 *
314 * @param blob FDT blob
315 * @param node node to examine
316 * @param prop_name name of property to find
317 * @param index which address to retrieve from a list of addresses. Often 0.
318 * @param na the number of cells used to represent an address
319 * @param ns the number of cells used to represent a size
320 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren7d30e102016-08-05 09:47:51 -0600321 * @param translate Indicates whether to translate the returned value
322 * using the parent node's ranges property.
Stephen Warren6dfe6182015-08-06 15:31:02 -0600323 * @return address, if found, or FDT_ADDR_T_NONE if not
324 */
325fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
326 const char *prop_name, int index, int na, int ns,
Stephen Warren7d30e102016-08-05 09:47:51 -0600327 fdt_size_t *sizep, bool translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600328
329/*
330 * Look up an address property in a node and return the parsed address, and
331 * optionally the parsed size.
332 *
333 * This variant automatically determines the number of cells used to represent
334 * the address and size by parsing the provided parent node's #address-cells
335 * and #size-cells properties.
336 *
337 * @param blob FDT blob
338 * @param parent parent node of @node
339 * @param node node to examine
340 * @param prop_name name of property to find
341 * @param index which address to retrieve from a list of addresses. Often 0.
342 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren7d30e102016-08-05 09:47:51 -0600343 * @param translate Indicates whether to translate the returned value
344 * using the parent node's ranges property.
Stephen Warren6dfe6182015-08-06 15:31:02 -0600345 * @return address, if found, or FDT_ADDR_T_NONE if not
346 */
347fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Stephen Warren7d30e102016-08-05 09:47:51 -0600348 int node, const char *prop_name, int index, fdt_size_t *sizep,
349 bool translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600350
351/*
352 * Look up an address property in a node and return the parsed address, and
353 * optionally the parsed size.
354 *
355 * This variant automatically determines the number of cells used to represent
356 * the address and size by parsing the parent node's #address-cells
357 * and #size-cells properties. The parent node is automatically found.
358 *
359 * The automatic parent lookup implemented by this function is slow.
360 * Consequently, fdtdec_get_addr_size_auto_parent() should be used where
361 * possible.
Simon Glass2d2af852011-10-24 19:15:32 +0000362 *
363 * @param blob FDT blob
Stephen Warren6dfe6182015-08-06 15:31:02 -0600364 * @param parent parent node of @node
Simon Glass2d2af852011-10-24 19:15:32 +0000365 * @param node node to examine
366 * @param prop_name name of property to find
Stephen Warren6dfe6182015-08-06 15:31:02 -0600367 * @param index which address to retrieve from a list of addresses. Often 0.
368 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren7d30e102016-08-05 09:47:51 -0600369 * @param translate Indicates whether to translate the returned value
370 * using the parent node's ranges property.
Simon Glass2d2af852011-10-24 19:15:32 +0000371 * @return address, if found, or FDT_ADDR_T_NONE if not
372 */
Stephen Warren6dfe6182015-08-06 15:31:02 -0600373fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Stephen Warren7d30e102016-08-05 09:47:51 -0600374 const char *prop_name, int index, fdt_size_t *sizep,
375 bool translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600376
377/*
378 * Look up an address property in a node and return the parsed address.
379 *
380 * This variant hard-codes the number of cells used to represent the address
381 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
382 * always returns the first address value in the property (index 0).
383 *
384 * Use of this function is not recommended due to the hard-coding of cell
385 * counts. There is no programmatic validation that these hard-coded values
386 * actually match the device tree content in any way at all. This assumption
387 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
388 * set in the U-Boot build and exercising strict control over DT content to
389 * ensure use of matching #address-cells/#size-cells properties. However, this
390 * approach is error-prone; those familiar with DT will not expect the
391 * assumption to exist, and could easily invalidate it. If the assumption is
392 * invalidated, this function will not report the issue, and debugging will
393 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
394 *
395 * @param blob FDT blob
396 * @param node node to examine
397 * @param prop_name name of property to find
398 * @return address, if found, or FDT_ADDR_T_NONE if not
399 */
Simon Glass2d2af852011-10-24 19:15:32 +0000400fdt_addr_t fdtdec_get_addr(const void *blob, int node,
401 const char *prop_name);
402
Stephen Warren6dfe6182015-08-06 15:31:02 -0600403/*
404 * Look up an address property in a node and return the parsed address, and
405 * optionally the parsed size.
406 *
407 * This variant hard-codes the number of cells used to represent the address
408 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
409 * always returns the first address value in the property (index 0).
410 *
411 * Use of this function is not recommended due to the hard-coding of cell
412 * counts. There is no programmatic validation that these hard-coded values
413 * actually match the device tree content in any way at all. This assumption
414 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
415 * set in the U-Boot build and exercising strict control over DT content to
416 * ensure use of matching #address-cells/#size-cells properties. However, this
417 * approach is error-prone; those familiar with DT will not expect the
418 * assumption to exist, and could easily invalidate it. If the assumption is
419 * invalidated, this function will not report the issue, and debugging will
420 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
Simon Glassf4299552013-03-19 04:58:51 +0000421 *
422 * @param blob FDT blob
423 * @param node node to examine
424 * @param prop_name name of property to find
Stephen Warren6dfe6182015-08-06 15:31:02 -0600425 * @param sizep a pointer to store the size into. Use NULL if not required
Simon Glassf4299552013-03-19 04:58:51 +0000426 * @return address, if found, or FDT_ADDR_T_NONE if not
427 */
428fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
429 const char *prop_name, fdt_size_t *sizep);
430
431/**
Bin Meng779847e2014-12-31 16:05:11 +0800432 * Look at the compatible property of a device node that represents a PCI
433 * device and extract pci vendor id and device id from it.
434 *
435 * @param blob FDT blob
436 * @param node node to examine
437 * @param vendor vendor id of the pci device
438 * @param device device id of the pci device
439 * @return 0 if ok, negative on error
440 */
441int fdtdec_get_pci_vendev(const void *blob, int node,
442 u16 *vendor, u16 *device);
443
444/**
445 * Look at the pci address of a device node that represents a PCI device
Bin Meng779847e2014-12-31 16:05:11 +0800446 * and return base address of the pci device's registers.
447 *
Simon Glassf1037ad2015-11-29 13:17:54 -0700448 * @param dev device to examine
Bin Meng779847e2014-12-31 16:05:11 +0800449 * @param addr pci address in the form of fdt_pci_addr
450 * @param bar returns base address of the pci device's registers
451 * @return 0 if ok, negative on error
452 */
Simon Glassc92aac12020-01-27 08:49:38 -0700453int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassf1037ad2015-11-29 13:17:54 -0700454 u32 *bar);
Bin Meng779847e2014-12-31 16:05:11 +0800455
456/**
Suneel Garapati78d0bea2019-10-19 15:19:35 -0700457 * Look at the bus range property of a device node and return the pci bus
458 * range for this node.
459 * The property must hold one fdt_pci_addr with a length.
460 * @param blob FDT blob
461 * @param node node to examine
462 * @param res the resource structure to return the bus range
463 * @return 0 if ok, negative on error
464 */
465
466int fdtdec_get_pci_bus_range(const void *blob, int node,
467 struct fdt_resource *res);
468
469/**
Simon Glass2d2af852011-10-24 19:15:32 +0000470 * Look up a 32-bit integer property in a node and return it. The property
471 * must have at least 4 bytes of data. The value of the first cell is
472 * returned.
473 *
474 * @param blob FDT blob
475 * @param node node to examine
476 * @param prop_name name of property to find
477 * @param default_val default value to return if the property is not found
478 * @return integer value, if found, or default_val if not
479 */
480s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
481 s32 default_val);
482
483/**
Chin Liang Seec97b0742015-10-17 08:30:32 -0500484 * Unsigned version of fdtdec_get_int. The property must have at least
485 * 4 bytes of data. The value of the first cell is returned.
486 *
487 * @param blob FDT blob
488 * @param node node to examine
489 * @param prop_name name of property to find
490 * @param default_val default value to return if the property is not found
491 * @return unsigned integer value, if found, or default_val if not
492 */
493unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
494 unsigned int default_val);
495
496/**
Simon Glass9ffbe332015-03-05 12:25:14 -0700497 * Get a variable-sized number from a property
498 *
499 * This reads a number from one or more cells.
500 *
501 * @param ptr Pointer to property
502 * @param cells Number of cells containing the number
503 * @return the value in the cells
504 */
505u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells);
506
507/**
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000508 * Look up a 64-bit integer property in a node and return it. The property
509 * must have at least 8 bytes of data (2 cells). The first two cells are
510 * concatenated to form a 8 bytes value, where the first cell is top half and
511 * the second cell is bottom half.
512 *
513 * @param blob FDT blob
514 * @param node node to examine
515 * @param prop_name name of property to find
516 * @param default_val default value to return if the property is not found
517 * @return integer value, if found, or default_val if not
518 */
519uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
520 uint64_t default_val);
521
522/**
Simon Glass2d2af852011-10-24 19:15:32 +0000523 * Checks whether a node is enabled.
524 * This looks for a 'status' property. If this exists, then returns 1 if
525 * the status is 'ok' and 0 otherwise. If there is no status property,
Simon Glass65444982012-02-27 10:52:34 +0000526 * it returns 1 on the assumption that anything mentioned should be enabled
527 * by default.
Simon Glass2d2af852011-10-24 19:15:32 +0000528 *
529 * @param blob FDT blob
530 * @param node node to examine
Simon Glass65444982012-02-27 10:52:34 +0000531 * @return integer value 0 (not enabled) or 1 (enabled)
Simon Glass2d2af852011-10-24 19:15:32 +0000532 */
Simon Glass65444982012-02-27 10:52:34 +0000533int fdtdec_get_is_enabled(const void *blob, int node);
Simon Glass2d2af852011-10-24 19:15:32 +0000534
535/**
Simon Glass1691f692012-03-28 10:08:24 +0000536 * Make sure we have a valid fdt available to control U-Boot.
537 *
538 * If not, a message is printed to the console if the console is ready.
539 *
540 * @return 0 if all ok, -1 if not
541 */
542int fdtdec_prepare_fdt(void);
543
544/**
545 * Checks that we have a valid fdt available to control U-Boot.
546
547 * However, if not then for the moment nothing is done, since this function
548 * is called too early to panic().
549 *
550 * @returns 0
Simon Glass2d2af852011-10-24 19:15:32 +0000551 */
552int fdtdec_check_fdt(void);
Simon Glassb022ead2012-01-17 08:20:50 +0000553
554/**
555 * Find the nodes for a peripheral and return a list of them in the correct
556 * order. This is used to enumerate all the peripherals of a certain type.
557 *
558 * To use this, optionally set up a /aliases node with alias properties for
559 * a peripheral. For example, for usb you could have:
560 *
561 * aliases {
562 * usb0 = "/ehci@c5008000";
563 * usb1 = "/ehci@c5000000";
564 * };
565 *
566 * Pass "usb" as the name to this function and will return a list of two
567 * nodes offsets: /ehci@c5008000 and ehci@c5000000.
568 *
569 * All nodes returned will match the compatible ID, as it is assumed that
570 * all peripherals use the same driver.
571 *
572 * If no alias node is found, then the node list will be returned in the
573 * order found in the fdt. If the aliases mention a node which doesn't
574 * exist, then this will be ignored. If nodes are found with no aliases,
575 * they will be added in any order.
576 *
577 * If there is a gap in the aliases, then this function return a 0 node at
578 * that position. The return value will also count these gaps.
579 *
580 * This function checks node properties and will not return nodes which are
581 * marked disabled (status = "disabled").
582 *
583 * @param blob FDT blob to use
584 * @param name Root name of alias to search for
585 * @param id Compatible ID to look for
586 * @param node_list Place to put list of found nodes
587 * @param maxcount Maximum number of nodes to find
Robert P. J. Day8c60f922016-05-04 04:47:31 -0400588 * @return number of nodes found on success, FDT_ERR_... on error
Simon Glassb022ead2012-01-17 08:20:50 +0000589 */
590int fdtdec_find_aliases_for_id(const void *blob, const char *name,
591 enum fdt_compat_id id, int *node_list, int maxcount);
592
593/*
Simon Glass1f772662012-02-03 15:13:53 +0000594 * This function is similar to fdtdec_find_aliases_for_id() except that it
595 * adds to the node_list that is passed in. Any 0 elements are considered
596 * available for allocation - others are considered already used and are
597 * skipped.
598 *
599 * You can use this by calling fdtdec_find_aliases_for_id() with an
600 * uninitialised array, then setting the elements that are returned to -1,
601 * say, then calling this function, perhaps with a different compat id.
602 * Any elements you get back that are >0 are new nodes added by the call
603 * to this function.
604 *
605 * Note that if you have some nodes with aliases and some without, you are
606 * sailing close to the wind. The call to fdtdec_find_aliases_for_id() with
607 * one compat_id may fill in positions for which you have aliases defined
608 * for another compat_id. When you later call *this* function with the second
609 * compat_id, the alias positions may already be used. A debug warning may
610 * be generated in this case, but it is safest to define aliases for all
611 * nodes when you care about the ordering.
612 */
613int fdtdec_add_aliases_for_id(const void *blob, const char *name,
614 enum fdt_compat_id id, int *node_list, int maxcount);
615
Simon Glass9908ad42014-07-23 06:55:09 -0600616/**
617 * Get the alias sequence number of a node
618 *
619 * This works out whether a node is pointed to by an alias, and if so, the
620 * sequence number of that alias. Aliases are of the form <base><num> where
621 * <num> is the sequence number. For example spi2 would be sequence number
622 * 2.
623 *
624 * @param blob Device tree blob (if NULL, then error is returned)
625 * @param base Base name for alias (before the underscore)
626 * @param node Node to look up
627 * @param seqp This is set to the sequence number if one is found,
628 * but otherwise the value is left alone
629 * @return 0 if a sequence was found, -ve if not
630 */
631int fdtdec_get_alias_seq(const void *blob, const char *base, int node,
632 int *seqp);
633
Simon Glassc95f6782014-07-23 06:55:16 -0600634/**
Michal Simek4b586672019-01-31 16:30:58 +0100635 * Get the highest alias number for susbystem.
636 *
637 * It parses all aliases and find out highest recorded alias for subsystem.
638 * Aliases are of the form <base><num> where <num> is the sequence number.
639 *
640 * @param blob Device tree blob (if NULL, then error is returned)
641 * @param base Base name for alias susbystem (before the number)
642 *
643 * @return 0 highest alias ID, -1 if not found
644 */
645int fdtdec_get_alias_highest_id(const void *blob, const char *base);
646
647/**
Simon Glass088dccb2015-10-17 19:41:14 -0600648 * Get a property from the /chosen node
649 *
650 * @param blob Device tree blob (if NULL, then NULL is returned)
651 * @param name Property name to look up
652 * @return Value of property, or NULL if it does not exist
653 */
654const char *fdtdec_get_chosen_prop(const void *blob, const char *name);
655
656/**
657 * Get the offset of the given /chosen node
Simon Glass1e374fb2014-09-04 16:27:24 -0600658 *
659 * This looks up a property in /chosen containing the path to another node,
660 * then finds the offset of that node.
661 *
662 * @param blob Device tree blob (if NULL, then error is returned)
663 * @param name Property name, e.g. "stdout-path"
664 * @return Node offset referred to by that chosen node, or -ve FDT_ERR_...
665 */
666int fdtdec_get_chosen_node(const void *blob, const char *name);
667
Simon Glass1f772662012-02-03 15:13:53 +0000668/*
Simon Glassb022ead2012-01-17 08:20:50 +0000669 * Get the name for a compatible ID
670 *
671 * @param id Compatible ID to look for
672 * @return compatible string for that id
673 */
674const char *fdtdec_get_compatible(enum fdt_compat_id id);
Simon Glassc4697362012-02-27 10:52:35 +0000675
676/* Look up a phandle and follow it to its node. Then return the offset
677 * of that node.
678 *
679 * @param blob FDT blob
680 * @param node node to examine
681 * @param prop_name name of property to find
682 * @return node offset if found, -ve error code on error
683 */
684int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name);
685
686/**
687 * Look up a property in a node and return its contents in an integer
688 * array of given length. The property must have at least enough data for
689 * the array (4*count bytes). It may have more, but this will be ignored.
690 *
691 * @param blob FDT blob
692 * @param node node to examine
693 * @param prop_name name of property to find
694 * @param array array to fill with data
695 * @param count number of array elements
696 * @return 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found,
697 * or -FDT_ERR_BADLAYOUT if not enough data
698 */
699int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
700 u32 *array, int count);
701
702/**
Simon Glasseda0c3f2014-11-10 18:00:19 -0700703 * Look up a property in a node and return its contents in an integer
704 * array of given length. The property must exist but may have less data that
705 * expected (4*count bytes). It may have more, but this will be ignored.
706 *
707 * @param blob FDT blob
708 * @param node node to examine
709 * @param prop_name name of property to find
710 * @param array array to fill with data
711 * @param count number of array elements
712 * @return number of array elements if ok, or -FDT_ERR_NOTFOUND if the
713 * property is not found
714 */
715int fdtdec_get_int_array_count(const void *blob, int node,
716 const char *prop_name, u32 *array, int count);
717
718/**
Simon Glass744ec232012-04-02 13:18:41 +0000719 * Look up a property in a node and return a pointer to its contents as a
720 * unsigned int array of given length. The property must have at least enough
721 * data for the array ('count' cells). It may have more, but this will be
722 * ignored. The data is not copied.
723 *
724 * Note that you must access elements of the array with fdt32_to_cpu(),
725 * since the elements will be big endian even on a little endian machine.
726 *
727 * @param blob FDT blob
728 * @param node node to examine
729 * @param prop_name name of property to find
730 * @param count number of array elements
731 * @return pointer to array if found, or NULL if the property is not
732 * found or there is not enough data
733 */
734const u32 *fdtdec_locate_array(const void *blob, int node,
735 const char *prop_name, int count);
736
737/**
Simon Glassc4697362012-02-27 10:52:35 +0000738 * Look up a boolean property in a node and return it.
739 *
740 * A boolean properly is true if present in the device tree and false if not
741 * present, regardless of its value.
742 *
743 * @param blob FDT blob
744 * @param node node to examine
745 * @param prop_name name of property to find
746 * @return 1 if the properly is present; 0 if it isn't present
747 */
748int fdtdec_get_bool(const void *blob, int node, const char *prop_name);
Simon Glass0d83c4d2012-02-27 10:52:36 +0000749
Peng Fan23dd3a02016-02-01 13:31:15 +0800750/*
751 * Count child nodes of one parent node.
752 *
753 * @param blob FDT blob
754 * @param node parent node
755 * @return number of child node; 0 if there is not child node
756 */
757int fdtdec_get_child_count(const void *blob, int node);
758
Anton Stafff2305ec2012-04-17 09:01:28 +0000759/*
760 * Look up a property in a node and return its contents in a byte
761 * array of given length. The property must have at least enough data for
762 * the array (count bytes). It may have more, but this will be ignored.
763 *
764 * @param blob FDT blob
765 * @param node node to examine
766 * @param prop_name name of property to find
767 * @param array array to fill with data
768 * @param count number of array elements
769 * @return 0 if ok, or -FDT_ERR_MISSING if the property is not found,
770 * or -FDT_ERR_BADLAYOUT if not enough data
771 */
772int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
773 u8 *array, int count);
774
775/**
776 * Look up a property in a node and return a pointer to its contents as a
777 * byte array of given length. The property must have at least enough data
778 * for the array (count bytes). It may have more, but this will be ignored.
779 * The data is not copied.
780 *
781 * @param blob FDT blob
782 * @param node node to examine
783 * @param prop_name name of property to find
784 * @param count number of array elements
785 * @return pointer to byte array if found, or NULL if the property is not
786 * found or there is not enough data
787 */
788const u8 *fdtdec_locate_byte_array(const void *blob, int node,
789 const char *prop_name, int count);
Simon Glassf909b9c2012-10-25 16:31:00 +0000790
791/**
Thierry Redinga937b802014-08-26 17:33:53 +0200792 * Obtain an indexed resource from a device property.
793 *
794 * @param fdt FDT blob
795 * @param node node to examine
796 * @param property name of the property to parse
797 * @param index index of the resource to retrieve
798 * @param res returns the resource
799 * @return 0 if ok, negative on error
800 */
801int fdt_get_resource(const void *fdt, int node, const char *property,
802 unsigned int index, struct fdt_resource *res);
803
804/**
805 * Obtain a named resource from a device property.
806 *
807 * Look up the index of the name in a list of strings and return the resource
808 * at that index.
809 *
810 * @param fdt FDT blob
811 * @param node node to examine
812 * @param property name of the property to parse
813 * @param prop_names name of the property containing the list of names
814 * @param name the name of the entry to look up
815 * @param res returns the resource
816 */
817int fdt_get_named_resource(const void *fdt, int node, const char *property,
818 const char *prop_names, const char *name,
819 struct fdt_resource *res);
820
Simon Glassb24e8642015-04-14 21:03:21 -0600821/* Display timings from linux include/video/display_timing.h */
822enum display_flags {
823 DISPLAY_FLAGS_HSYNC_LOW = 1 << 0,
824 DISPLAY_FLAGS_HSYNC_HIGH = 1 << 1,
825 DISPLAY_FLAGS_VSYNC_LOW = 1 << 2,
826 DISPLAY_FLAGS_VSYNC_HIGH = 1 << 3,
827
828 /* data enable flag */
829 DISPLAY_FLAGS_DE_LOW = 1 << 4,
830 DISPLAY_FLAGS_DE_HIGH = 1 << 5,
831 /* drive data on pos. edge */
832 DISPLAY_FLAGS_PIXDATA_POSEDGE = 1 << 6,
833 /* drive data on neg. edge */
834 DISPLAY_FLAGS_PIXDATA_NEGEDGE = 1 << 7,
835 DISPLAY_FLAGS_INTERLACED = 1 << 8,
836 DISPLAY_FLAGS_DOUBLESCAN = 1 << 9,
837 DISPLAY_FLAGS_DOUBLECLK = 1 << 10,
838};
839
840/*
841 * A single signal can be specified via a range of minimal and maximal values
842 * with a typical value, that lies somewhere inbetween.
843 */
844struct timing_entry {
845 u32 min;
846 u32 typ;
847 u32 max;
848};
849
850/*
851 * Single "mode" entry. This describes one set of signal timings a display can
852 * have in one setting. This struct can later be converted to struct videomode
853 * (see include/video/videomode.h). As each timing_entry can be defined as a
854 * range, one struct display_timing may become multiple struct videomodes.
855 *
856 * Example: hsync active high, vsync active low
857 *
858 * Active Video
859 * Video ______________________XXXXXXXXXXXXXXXXXXXXXX_____________________
860 * |<- sync ->|<- back ->|<----- active ----->|<- front ->|<- sync..
861 * | | porch | | porch |
862 *
863 * HSync _|¯¯¯¯¯¯¯¯¯¯|___________________________________________|¯¯¯¯¯¯¯¯¯
864 *
865 * VSync ¯|__________|¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|_________
866 */
867struct display_timing {
868 struct timing_entry pixelclock;
869
870 struct timing_entry hactive; /* hor. active video */
871 struct timing_entry hfront_porch; /* hor. front porch */
872 struct timing_entry hback_porch; /* hor. back porch */
873 struct timing_entry hsync_len; /* hor. sync len */
874
875 struct timing_entry vactive; /* ver. active video */
876 struct timing_entry vfront_porch; /* ver. front porch */
877 struct timing_entry vback_porch; /* ver. back porch */
878 struct timing_entry vsync_len; /* ver. sync len */
879
880 enum display_flags flags; /* display flags */
Jernej Skrabec55884e52017-04-29 14:43:36 +0200881 bool hdmi_monitor; /* is hdmi monitor? */
Simon Glassb24e8642015-04-14 21:03:21 -0600882};
883
884/**
885 * fdtdec_decode_display_timing() - decode display timings
886 *
887 * Decode display timings from the supplied 'display-timings' node.
888 * See doc/device-tree-bindings/video/display-timing.txt for binding
889 * information.
890 *
891 * @param blob FDT blob
892 * @param node 'display-timing' node containing the timing subnodes
893 * @param index Index number to read (0=first timing subnode)
894 * @param config Place to put timings
895 * @return 0 if OK, -FDT_ERR_NOTFOUND if not found
896 */
897int fdtdec_decode_display_timing(const void *blob, int node, int index,
898 struct display_timing *config);
Nathan Rossiba97b722016-12-19 00:03:34 +1000899
900/**
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +0530901 * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and
902 * gd->ram_start
Nathan Rossiba97b722016-12-19 00:03:34 +1000903 *
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +0530904 * Decode the /memory 'reg' property to determine the size and start of the
905 * first memory bank, populate the global data with the size and start of the
906 * first bank of memory.
Nathan Rossiba97b722016-12-19 00:03:34 +1000907 *
908 * This function should be called from a boards dram_init(). This helper
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +0530909 * function allows for boards to query the device tree for DRAM size and start
910 * address instead of hard coding the value in the case where the memory size
911 * and start address cannot be detected automatically.
Nathan Rossiba97b722016-12-19 00:03:34 +1000912 *
913 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
914 * invalid
915 */
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +0530916int fdtdec_setup_mem_size_base(void);
Nathan Rossiba97b722016-12-19 00:03:34 +1000917
918/**
Michal Simek9d2cf072020-07-09 14:09:52 +0200919 * fdtdec_setup_mem_size_base_lowest() - decode and setup gd->ram_size and
920 * gd->ram_start by lowest available memory base
921 *
922 * Decode the /memory 'reg' property to determine the lowest start of the memory
923 * bank bank and populate the global data with it.
924 *
925 * This function should be called from a boards dram_init(). This helper
926 * function allows for boards to query the device tree for DRAM size and start
927 * address instead of hard coding the value in the case where the memory size
928 * and start address cannot be detected automatically.
929 *
930 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
931 * invalid
932 */
933int fdtdec_setup_mem_size_base_lowest(void);
934
935/**
Nathan Rossiba97b722016-12-19 00:03:34 +1000936 * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram
937 *
938 * Decode the /memory 'reg' property to determine the address and size of the
939 * memory banks. Use this data to populate the global data board info with the
940 * phys address and size of memory banks.
941 *
942 * This function should be called from a boards dram_init_banksize(). This
943 * helper function allows for boards to query the device tree for memory bank
944 * information instead of hard coding the information in cases where it cannot
945 * be detected automatically.
946 *
947 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
948 * invalid
949 */
950int fdtdec_setup_memory_banksize(void);
951
Simon Glass26b78b22015-02-27 22:06:34 -0700952/**
Thierry Reding1bb59a92019-04-15 11:32:13 +0200953 * fdtdec_set_ethernet_mac_address() - set MAC address for default interface
954 *
955 * Looks up the default interface via the "ethernet" alias (in the /aliases
956 * node) and stores the given MAC in its "local-mac-address" property. This
957 * is useful on platforms that store the MAC address in a custom location.
958 * Board code can call this in the late init stage to make sure that the
959 * interface device tree node has the right MAC address configured for the
960 * Ethernet uclass to pick it up.
961 *
962 * Typically the FDT passed into this function will be U-Boot's control DTB.
963 * Given that a lot of code may be holding offsets to various nodes in that
964 * tree, this code will only set the "local-mac-address" property in-place,
965 * which means that it needs to exist and have space for the 6-byte address.
966 * This ensures that the operation is non-destructive and does not invalidate
967 * offsets that other drivers may be using.
968 *
969 * @param fdt FDT blob
970 * @param mac buffer containing the MAC address to set
971 * @param size size of MAC address
972 * @return 0 on success or a negative error code on failure
973 */
974int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size);
975
976/**
Thierry Reding15956ad2019-03-21 19:10:01 +0100977 * fdtdec_set_phandle() - sets the phandle of a given node
978 *
979 * @param blob FDT blob
980 * @param node offset in the FDT blob of the node whose phandle is to
981 * be set
982 * @param phandle phandle to set for the given node
983 * @return 0 on success or a negative error code on failure
984 */
Thierry Redinga3123092019-04-15 10:08:20 +0200985static inline int fdtdec_set_phandle(void *blob, int node, uint32_t phandle)
986{
987 return fdt_setprop_u32(blob, node, "phandle", phandle);
988}
Thierry Reding15956ad2019-03-21 19:10:01 +0100989
Thierry Redingbedc4392021-09-03 15:16:21 +0200990/* add "no-map" property */
991#define FDTDEC_RESERVED_MEMORY_NO_MAP (1 << 0)
992
Thierry Reding15956ad2019-03-21 19:10:01 +0100993/**
Thierry Redinge8dfad42019-03-21 19:10:02 +0100994 * fdtdec_add_reserved_memory() - add or find a reserved-memory node
995 *
996 * If a reserved-memory node already exists for the given carveout, a phandle
997 * for that node will be returned. Otherwise a new node will be created and a
998 * phandle corresponding to it will be returned.
999 *
1000 * See Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
1001 * for details on how to use reserved memory regions.
1002 *
1003 * As an example, consider the following code snippet:
1004 *
1005 * struct fdt_memory fb = {
1006 * .start = 0x92cb3000,
1007 * .end = 0x934b2fff,
1008 * };
1009 * uint32_t phandle;
1010 *
Thierry Reding5e336912021-09-03 15:16:19 +02001011 * fdtdec_add_reserved_memory(fdt, "framebuffer", &fb, NULL, 0, &phandle,
Thierry Redingbedc4392021-09-03 15:16:21 +02001012 * 0);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001013 *
1014 * This results in the following subnode being added to the top-level
1015 * /reserved-memory node:
1016 *
1017 * reserved-memory {
1018 * #address-cells = <0x00000002>;
1019 * #size-cells = <0x00000002>;
1020 * ranges;
1021 *
1022 * framebuffer@92cb3000 {
1023 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1024 * phandle = <0x0000004d>;
1025 * };
1026 * };
1027 *
1028 * If the top-level /reserved-memory node does not exist, it will be created.
1029 * The phandle returned from the function call can be used to reference this
1030 * reserved memory region from other nodes.
1031 *
Thierry Redinge629b0d2019-03-21 19:10:03 +01001032 * See fdtdec_set_carveout() for a more elaborate example.
1033 *
Thierry Redinge8dfad42019-03-21 19:10:02 +01001034 * @param blob FDT blob
1035 * @param basename base name of the node to create
1036 * @param carveout information about the carveout region
Thierry Reding5e336912021-09-03 15:16:19 +02001037 * @param compatibles list of compatible strings for the carveout region
1038 * @param count number of compatible strings for the carveout region
Thierry Redinge8dfad42019-03-21 19:10:02 +01001039 * @param phandlep return location for the phandle of the carveout region
Heiko Stuebner754302f2019-10-23 16:46:39 +02001040 * can be NULL if no phandle should be added
Thierry Redingbedc4392021-09-03 15:16:21 +02001041 * @param flags bitmask of flags to set for the carveout region
Thierry Redinge8dfad42019-03-21 19:10:02 +01001042 * @return 0 on success or a negative error code on failure
1043 */
1044int fdtdec_add_reserved_memory(void *blob, const char *basename,
1045 const struct fdt_memory *carveout,
Thierry Reding5e336912021-09-03 15:16:19 +02001046 const char **compatibles, unsigned int count,
Thierry Redingbedc4392021-09-03 15:16:21 +02001047 uint32_t *phandlep, unsigned long flags);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001048
1049/**
Thierry Redinge629b0d2019-03-21 19:10:03 +01001050 * fdtdec_get_carveout() - reads a carveout from an FDT
1051 *
1052 * Reads information about a carveout region from an FDT. The carveout is a
1053 * referenced by its phandle that is read from a given property in a given
1054 * node.
1055 *
1056 * @param blob FDT blob
1057 * @param node name of a node
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001058 * @param prop_name name of the property in the given node that contains
Thierry Redinge629b0d2019-03-21 19:10:03 +01001059 * the phandle for the carveout
1060 * @param index index of the phandle for which to read the carveout
1061 * @param carveout return location for the carveout information
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001062 * @param name return location for the carveout name
Thierry Reding5e336912021-09-03 15:16:19 +02001063 * @param compatiblesp return location for compatible strings
Thierry Redingbedc4392021-09-03 15:16:21 +02001064 * @param countp return location for the number of compatible strings
1065 * @param flags return location for the flags of the carveout
Thierry Redinge629b0d2019-03-21 19:10:03 +01001066 * @return 0 on success or a negative error code on failure
1067 */
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001068int fdtdec_get_carveout(const void *blob, const char *node,
1069 const char *prop_name, unsigned int index,
Thierry Reding5e336912021-09-03 15:16:19 +02001070 struct fdt_memory *carveout, const char **name,
Thierry Redingbedc4392021-09-03 15:16:21 +02001071 const char ***compatiblesp, unsigned int *countp,
1072 unsigned long *flags);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001073
1074/**
1075 * fdtdec_set_carveout() - sets a carveout region for a given node
1076 *
1077 * Sets a carveout region for a given node. If a reserved-memory node already
1078 * exists for the carveout, the phandle for that node will be reused. If no
1079 * such node exists, a new one will be created and a phandle to it stored in
1080 * a specified property of the given node.
1081 *
1082 * As an example, consider the following code snippet:
1083 *
1084 * const char *node = "/host1x@50000000/dc@54240000";
1085 * struct fdt_memory fb = {
1086 * .start = 0x92cb3000,
1087 * .end = 0x934b2fff,
1088 * };
1089 *
Thierry Reding5e336912021-09-03 15:16:19 +02001090 * fdtdec_set_carveout(fdt, node, "memory-region", 0, "framebuffer", NULL,
Thierry Redingbedc4392021-09-03 15:16:21 +02001091 * 0, &fb, 0);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001092 *
1093 * dc@54200000 is a display controller and was set up by the bootloader to
1094 * scan out the framebuffer specified by "fb". This would cause the following
1095 * reserved memory region to be added:
1096 *
1097 * reserved-memory {
1098 * #address-cells = <0x00000002>;
1099 * #size-cells = <0x00000002>;
1100 * ranges;
1101 *
1102 * framebuffer@92cb3000 {
1103 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1104 * phandle = <0x0000004d>;
1105 * };
1106 * };
1107 *
1108 * A "memory-region" property will also be added to the node referenced by the
1109 * offset parameter.
1110 *
1111 * host1x@50000000 {
1112 * ...
1113 *
1114 * dc@54240000 {
1115 * ...
1116 * memory-region = <0x0000004d>;
1117 * ...
1118 * };
1119 *
1120 * ...
1121 * };
1122 *
1123 * @param blob FDT blob
1124 * @param node name of the node to add the carveout to
1125 * @param prop_name name of the property in which to store the phandle of
1126 * the carveout
1127 * @param index index of the phandle to store
Thierry Redinge629b0d2019-03-21 19:10:03 +01001128 * @param carveout information about the carveout to add
Thierry Redingd6ad8072021-09-03 15:16:20 +02001129 * @param name base name of the reserved-memory node to create
Thierry Reding5e336912021-09-03 15:16:19 +02001130 * @param compatibles compatible strings to set for the carveout
1131 * @param count number of compatible strings
Thierry Redingbedc4392021-09-03 15:16:21 +02001132 * @param flags bitmask of flags to set for the carveout
Thierry Redinge629b0d2019-03-21 19:10:03 +01001133 * @return 0 on success or a negative error code on failure
1134 */
1135int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Redingd6ad8072021-09-03 15:16:20 +02001136 unsigned int index, const struct fdt_memory *carveout,
1137 const char *name, const char **compatibles,
Thierry Redingbedc4392021-09-03 15:16:21 +02001138 unsigned int count, unsigned long flags);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001139
1140/**
Simon Glass26b78b22015-02-27 22:06:34 -07001141 * Set up the device tree ready for use
1142 */
Simon Glassa0877672015-02-27 22:06:35 -07001143int fdtdec_setup(void);
Simon Glass26b78b22015-02-27 22:06:34 -07001144
Marek Vasutedeb6542020-04-11 21:18:59 +02001145/**
1146 * Perform board-specific early DT adjustments
1147 */
1148int fdtdec_board_setup(const void *fdt_blob);
1149
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001150#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1151/**
1152 * fdtdec_resetup() - Set up the device tree again
1153 *
1154 * The main difference with fdtdec_setup() is that it returns if the fdt has
1155 * changed because a better match has been found.
1156 * This is typically used for boards that rely on a DM driver to detect the
1157 * board type. This function sould be called by the board code after the stuff
1158 * needed by board_fit_config_name_match() to operate porperly is available.
1159 * If this functions signals that a rescan is necessary, the board code must
1160 * unbind all the drivers using dm_uninit() and then rescan the DT with
1161 * dm_init_and_scan().
1162 *
1163 * @param rescan Returns a flag indicating that fdt has changed and rescanning
1164 * the fdt is required
1165 *
1166 * @return 0 if OK, -ve on error
1167 */
1168int fdtdec_resetup(int *rescan);
1169#endif
1170
Alex Deymo5b661ec2017-04-02 01:25:20 -07001171/**
1172 * Board-specific FDT initialization. Returns the address to a device tree blob.
Rob Clark974dcac2018-01-10 11:34:37 +01001173 * Called when CONFIG_OF_BOARD is defined, or if CONFIG_OF_SEPARATE is defined
1174 * and the board implements it.
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001175 *
1176 * @err internal error code if we fail to setup a DTB
Alex Deymo5b661ec2017-04-02 01:25:20 -07001177 */
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001178void *board_fdt_blob_setup(int *err);
Michael Prattfa28d142018-06-11 13:07:09 -06001179
1180/*
1181 * Decode the size of memory
1182 *
1183 * RAM size is normally set in a /memory node and consists of a list of
1184 * (base, size) cells in the 'reg' property. This information is used to
1185 * determine the total available memory as well as the address and size
1186 * of each bank.
1187 *
1188 * Optionally the memory configuration can vary depending on a board id,
1189 * typically read from strapping resistors or an EEPROM on the board.
1190 *
1191 * Finally, memory size can be detected (within certain limits) by probing
1192 * the available memory. It is safe to do so within the limits provides by
1193 * the board's device tree information. This makes it possible to produce
1194 * boards with different memory sizes, where the device tree specifies the
1195 * maximum memory configuration, and the smaller memory configuration is
1196 * probed.
1197 *
1198 * This function decodes that information, returning the memory base address,
1199 * size and bank information. See the memory.txt binding for full
1200 * documentation.
1201 *
1202 * @param blob Device tree blob
1203 * @param area Name of node to check (NULL means "/memory")
1204 * @param board_id Board ID to look up
1205 * @param basep Returns base address of first memory bank (NULL to
1206 * ignore)
1207 * @param sizep Returns total memory size (NULL to ignore)
1208 * @param bd Updated with the memory bank information (NULL to skip)
1209 * @return 0 if OK, -ve on error
1210 */
1211int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1212 phys_addr_t *basep, phys_size_t *sizep,
1213 struct bd_info *bd);
Alex Deymo5b661ec2017-04-02 01:25:20 -07001214
Simon Glass0a9d66f2012-07-12 05:25:02 +00001215#endif