1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2011 The Chromium OS Authors.
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.
17 #include <linux/libfdt.h>
21 * A typedef for a physical address. Note that fdt data is always big
22 * endian even on a litle endian machine.
24 typedef phys_addr_t fdt_addr_t;
25 typedef phys_size_t fdt_size_t;
27 #ifdef CONFIG_PHYS_64BIT
28 #define FDT_ADDR_T_NONE (-1U)
29 #define fdt_addr_to_cpu(reg) be64_to_cpu(reg)
30 #define fdt_size_to_cpu(reg) be64_to_cpu(reg)
31 #define cpu_to_fdt_addr(reg) cpu_to_be64(reg)
32 #define cpu_to_fdt_size(reg) cpu_to_be64(reg)
33 typedef fdt64_t fdt_val_t;
35 #define FDT_ADDR_T_NONE (-1U)
36 #define fdt_addr_to_cpu(reg) be32_to_cpu(reg)
37 #define fdt_size_to_cpu(reg) be32_to_cpu(reg)
38 #define cpu_to_fdt_addr(reg) cpu_to_be32(reg)
39 #define cpu_to_fdt_size(reg) cpu_to_be32(reg)
40 typedef fdt32_t fdt_val_t;
43 /* Information obtained about memory from the FDT */
51 #ifdef CONFIG_SPL_BUILD
57 #if CONFIG_IS_ENABLED(OF_PRIOR_STAGE)
58 extern phys_addr_t prior_stage_fdt_address;
62 * Information about a resource. start is the first address of the resource
63 * and end is the last address (inclusive). The length of the resource will
64 * be equal to: end - start + 1.
72 FDT_PCI_SPACE_CONFIG = 0,
73 FDT_PCI_SPACE_IO = 0x01000000,
74 FDT_PCI_SPACE_MEM32 = 0x02000000,
75 FDT_PCI_SPACE_MEM64 = 0x03000000,
76 FDT_PCI_SPACE_MEM32_PREF = 0x42000000,
77 FDT_PCI_SPACE_MEM64_PREF = 0x43000000,
80 #define FDT_PCI_ADDR_CELLS 3
81 #define FDT_PCI_SIZE_CELLS 2
82 #define FDT_PCI_REG_SIZE \
83 ((FDT_PCI_ADDR_CELLS + FDT_PCI_SIZE_CELLS) * sizeof(u32))
86 * The Open Firmware spec defines PCI physical address as follows:
88 * bits# 31 .... 24 23 .... 16 15 .... 08 07 .... 00
90 * phys.hi cell: npt000ss bbbbbbbb dddddfff rrrrrrrr
91 * phys.mid cell: hhhhhhhh hhhhhhhh hhhhhhhh hhhhhhhh
92 * phys.lo cell: llllllll llllllll llllllll llllllll
96 * n: is 0 if the address is relocatable, 1 otherwise
97 * p: is 1 if addressable region is prefetchable, 0 otherwise
98 * t: is 1 if the address is aliased (for non-relocatable I/O) below 1MB
99 * (for Memory), or below 64KB (for relocatable I/O)
100 * ss: is the space code, denoting the address space
101 * bbbbbbbb: is the 8-bit Bus Number
102 * ddddd: is the 5-bit Device Number
103 * fff: is the 3-bit Function Number
104 * rrrrrrrr: is the 8-bit Register Number
105 * hhhhhhhh: is a 32-bit unsigned number
106 * llllllll: is a 32-bit unsigned number
108 struct fdt_pci_addr {
115 * Compute the size of a resource.
117 * @param res the resource to operate on
118 * @return the size of the resource
120 static inline fdt_size_t fdt_resource_size(const struct fdt_resource *res)
122 return res->end - res->start + 1;
126 * Compat types that we know about and for which we might have drivers.
127 * Each is named COMPAT_<dir>_<filename> where <dir> is the directory
132 COMPAT_NVIDIA_TEGRA20_EMC, /* Tegra20 memory controller */
133 COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */
134 COMPAT_NVIDIA_TEGRA20_NAND, /* Tegra2 NAND controller */
135 COMPAT_NVIDIA_TEGRA124_XUSB_PADCTL,
136 /* Tegra124 XUSB pad controller */
137 COMPAT_NVIDIA_TEGRA210_XUSB_PADCTL,
138 /* Tegra210 XUSB pad controller */
139 COMPAT_SMSC_LAN9215, /* SMSC 10/100 Ethernet LAN9215 */
140 COMPAT_SAMSUNG_EXYNOS5_SROMC, /* Exynos5 SROMC */
141 COMPAT_SAMSUNG_EXYNOS_USB_PHY, /* Exynos phy controller for usb2.0 */
142 COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos phy controller for usb3.0 */
143 COMPAT_SAMSUNG_EXYNOS_TMU, /* Exynos TMU */
144 COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */
145 COMPAT_SAMSUNG_EXYNOS_DWMMC, /* Exynos DWMMC controller */
146 COMPAT_GENERIC_SPI_FLASH, /* Generic SPI Flash chip */
147 COMPAT_SAMSUNG_EXYNOS_SYSMMU, /* Exynos sysmmu */
148 COMPAT_INTEL_MICROCODE, /* Intel microcode update */
149 COMPAT_INTEL_QRK_MRC, /* Intel Quark MRC */
150 COMPAT_ALTERA_SOCFPGA_DWMAC, /* SoCFPGA Ethernet controller */
151 COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */
152 COMPAT_ALTERA_SOCFPGA_DWC2USB, /* SoCFPGA DWC2 USB controller */
153 COMPAT_INTEL_BAYTRAIL_FSP, /* Intel Bay Trail FSP */
154 COMPAT_INTEL_BAYTRAIL_FSP_MDP, /* Intel FSP memory-down params */
155 COMPAT_INTEL_IVYBRIDGE_FSP, /* Intel Ivy Bridge FSP */
156 COMPAT_SUNXI_NAND, /* SUNXI NAND controller */
157 COMPAT_ALTERA_SOCFPGA_CLK, /* SoCFPGA Clock initialization */
158 COMPAT_ALTERA_SOCFPGA_PINCTRL_SINGLE, /* SoCFPGA pinctrl-single */
159 COMPAT_ALTERA_SOCFPGA_H2F_BRG, /* SoCFPGA hps2fpga bridge */
160 COMPAT_ALTERA_SOCFPGA_LWH2F_BRG, /* SoCFPGA lwhps2fpga bridge */
161 COMPAT_ALTERA_SOCFPGA_F2H_BRG, /* SoCFPGA fpga2hps bridge */
162 COMPAT_ALTERA_SOCFPGA_F2SDR0, /* SoCFPGA fpga2SDRAM0 bridge */
163 COMPAT_ALTERA_SOCFPGA_F2SDR1, /* SoCFPGA fpga2SDRAM1 bridge */
164 COMPAT_ALTERA_SOCFPGA_F2SDR2, /* SoCFPGA fpga2SDRAM2 bridge */
165 COMPAT_ALTERA_SOCFPGA_FPGA0, /* SOCFPGA FPGA manager */
166 COMPAT_ALTERA_SOCFPGA_NOC, /* SOCFPGA Arria 10 NOC */
167 COMPAT_ALTERA_SOCFPGA_CLK_INIT, /* SOCFPGA Arria 10 clk init */
172 #define MAX_PHANDLE_ARGS 16
173 struct fdtdec_phandle_args {
176 uint32_t args[MAX_PHANDLE_ARGS];
180 * fdtdec_parse_phandle_with_args() - Find a node pointed by phandle in a list
182 * This function is useful to parse lists of phandles and their arguments.
195 * list = <&phandle1 1 2 &phandle2 3>;
198 * To get a device_node of the `node2' node you may call this:
199 * fdtdec_parse_phandle_with_args(blob, node3, "list", "#list-cells", 0, 1,
202 * (This function is a modified version of __of_parse_phandle_with_args() from
205 * @blob: Pointer to device tree
206 * @src_node: Offset of device tree node containing a list
207 * @list_name: property name that contains a list
208 * @cells_name: property name that specifies the phandles' arguments count,
209 * or NULL to use @cells_count
210 * @cells_count: Cell count to use if @cells_name is NULL
211 * @index: index of a phandle to parse out
212 * @out_args: optional pointer to output arguments structure (will be filled)
213 * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if
214 * @list_name does not exist, a phandle was not found, @cells_name
215 * could not be found, the arguments were truncated or there were too
219 int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
220 const char *list_name,
221 const char *cells_name,
222 int cell_count, int index,
223 struct fdtdec_phandle_args *out_args);
226 * Find the next numbered alias for a peripheral. This is used to enumerate
227 * all the peripherals of a certain type.
229 * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then
230 * this function will return a pointer to the node the alias points to, and
231 * then update *upto to 1. Next time you call this function, the next node
234 * All nodes returned will match the compatible ID, as it is assumed that
235 * all peripherals use the same driver.
237 * @param blob FDT blob to use
238 * @param name Root name of alias to search for
239 * @param id Compatible ID to look for
240 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
242 int fdtdec_next_alias(const void *blob, const char *name,
243 enum fdt_compat_id id, int *upto);
246 * Find the compatible ID for a given node.
248 * Generally each node has at least one compatible string attached to it.
249 * This function looks through our list of known compatible strings and
250 * returns the corresponding ID which matches the compatible string.
252 * @param blob FDT blob to use
253 * @param node Node containing compatible string to find
254 * @return compatible ID, or COMPAT_UNKNOWN if we cannot find a match
256 enum fdt_compat_id fdtdec_lookup(const void *blob, int node);
259 * Find the next compatible node for a peripheral.
261 * Do the first call with node = 0. This function will return a pointer to
262 * the next compatible node. Next time you call this function, pass the
263 * value returned, and the next node will be provided.
265 * @param blob FDT blob to use
266 * @param node Start node for search
267 * @param id Compatible ID to look for (enum fdt_compat_id)
268 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
270 int fdtdec_next_compatible(const void *blob, int node,
271 enum fdt_compat_id id);
274 * Find the next compatible subnode for a peripheral.
276 * Do the first call with node set to the parent and depth = 0. This
277 * function will return the offset of the next compatible node. Next time
278 * you call this function, pass the node value returned last time, with
279 * depth unchanged, and the next node will be provided.
281 * @param blob FDT blob to use
282 * @param node Start node for search
283 * @param id Compatible ID to look for (enum fdt_compat_id)
284 * @param depthp Current depth (set to 0 before first call)
285 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
287 int fdtdec_next_compatible_subnode(const void *blob, int node,
288 enum fdt_compat_id id, int *depthp);
291 * Look up an address property in a node and return the parsed address, and
292 * optionally the parsed size.
294 * This variant assumes a known and fixed number of cells are used to
295 * represent the address and size.
297 * You probably don't want to use this function directly except to parse
298 * non-standard properties, and never to parse the "reg" property. Instead,
299 * use one of the "auto" variants below, which automatically honor the
300 * #address-cells and #size-cells properties in the parent node.
302 * @param blob FDT blob
303 * @param node node to examine
304 * @param prop_name name of property to find
305 * @param index which address to retrieve from a list of addresses. Often 0.
306 * @param na the number of cells used to represent an address
307 * @param ns the number of cells used to represent a size
308 * @param sizep a pointer to store the size into. Use NULL if not required
309 * @param translate Indicates whether to translate the returned value
310 * using the parent node's ranges property.
311 * @return address, if found, or FDT_ADDR_T_NONE if not
313 fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
314 const char *prop_name, int index, int na, int ns,
315 fdt_size_t *sizep, bool translate);
318 * Look up an address property in a node and return the parsed address, and
319 * optionally the parsed size.
321 * This variant automatically determines the number of cells used to represent
322 * the address and size by parsing the provided parent node's #address-cells
323 * and #size-cells properties.
325 * @param blob FDT blob
326 * @param parent parent node of @node
327 * @param node node to examine
328 * @param prop_name name of property to find
329 * @param index which address to retrieve from a list of addresses. Often 0.
330 * @param sizep a pointer to store the size into. Use NULL if not required
331 * @param translate Indicates whether to translate the returned value
332 * using the parent node's ranges property.
333 * @return address, if found, or FDT_ADDR_T_NONE if not
335 fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
336 int node, const char *prop_name, int index, fdt_size_t *sizep,
340 * Look up an address property in a node and return the parsed address, and
341 * optionally the parsed size.
343 * This variant automatically determines the number of cells used to represent
344 * the address and size by parsing the parent node's #address-cells
345 * and #size-cells properties. The parent node is automatically found.
347 * The automatic parent lookup implemented by this function is slow.
348 * Consequently, fdtdec_get_addr_size_auto_parent() should be used where
351 * @param blob FDT blob
352 * @param parent parent node of @node
353 * @param node node to examine
354 * @param prop_name name of property to find
355 * @param index which address to retrieve from a list of addresses. Often 0.
356 * @param sizep a pointer to store the size into. Use NULL if not required
357 * @param translate Indicates whether to translate the returned value
358 * using the parent node's ranges property.
359 * @return address, if found, or FDT_ADDR_T_NONE if not
361 fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
362 const char *prop_name, int index, fdt_size_t *sizep,
366 * Look up an address property in a node and return the parsed address.
368 * This variant hard-codes the number of cells used to represent the address
369 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
370 * always returns the first address value in the property (index 0).
372 * Use of this function is not recommended due to the hard-coding of cell
373 * counts. There is no programmatic validation that these hard-coded values
374 * actually match the device tree content in any way at all. This assumption
375 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
376 * set in the U-Boot build and exercising strict control over DT content to
377 * ensure use of matching #address-cells/#size-cells properties. However, this
378 * approach is error-prone; those familiar with DT will not expect the
379 * assumption to exist, and could easily invalidate it. If the assumption is
380 * invalidated, this function will not report the issue, and debugging will
381 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
383 * @param blob FDT blob
384 * @param node node to examine
385 * @param prop_name name of property to find
386 * @return address, if found, or FDT_ADDR_T_NONE if not
388 fdt_addr_t fdtdec_get_addr(const void *blob, int node,
389 const char *prop_name);
392 * Look up an address property in a node and return the parsed address, and
393 * optionally the parsed size.
395 * This variant hard-codes the number of cells used to represent the address
396 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
397 * always returns the first address value in the property (index 0).
399 * Use of this function is not recommended due to the hard-coding of cell
400 * counts. There is no programmatic validation that these hard-coded values
401 * actually match the device tree content in any way at all. This assumption
402 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
403 * set in the U-Boot build and exercising strict control over DT content to
404 * ensure use of matching #address-cells/#size-cells properties. However, this
405 * approach is error-prone; those familiar with DT will not expect the
406 * assumption to exist, and could easily invalidate it. If the assumption is
407 * invalidated, this function will not report the issue, and debugging will
408 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
410 * @param blob FDT blob
411 * @param node node to examine
412 * @param prop_name name of property to find
413 * @param sizep a pointer to store the size into. Use NULL if not required
414 * @return address, if found, or FDT_ADDR_T_NONE if not
416 fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
417 const char *prop_name, fdt_size_t *sizep);
420 * Look at an address property in a node and return the pci address which
421 * corresponds to the given type in the form of fdt_pci_addr.
422 * The property must hold one fdt_pci_addr with a lengh.
424 * @param blob FDT blob
425 * @param node node to examine
426 * @param type pci address type (FDT_PCI_SPACE_xxx)
427 * @param prop_name name of property to find
428 * @param addr returns pci address in the form of fdt_pci_addr
429 * @return 0 if ok, -ENOENT if the property did not exist, -EINVAL if the
430 * format of the property was invalid, -ENXIO if the requested
431 * address type was not found
433 int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
434 const char *prop_name, struct fdt_pci_addr *addr);
437 * Look at the compatible property of a device node that represents a PCI
438 * device and extract pci vendor id and device id from it.
440 * @param blob FDT blob
441 * @param node node to examine
442 * @param vendor vendor id of the pci device
443 * @param device device id of the pci device
444 * @return 0 if ok, negative on error
446 int fdtdec_get_pci_vendev(const void *blob, int node,
447 u16 *vendor, u16 *device);
450 * Look at the pci address of a device node that represents a PCI device
451 * and return base address of the pci device's registers.
453 * @param dev device to examine
454 * @param addr pci address in the form of fdt_pci_addr
455 * @param bar returns base address of the pci device's registers
456 * @return 0 if ok, negative on error
458 int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr,
462 * Look up a 32-bit integer property in a node and return it. The property
463 * must have at least 4 bytes of data. The value of the first cell is
466 * @param blob FDT blob
467 * @param node node to examine
468 * @param prop_name name of property to find
469 * @param default_val default value to return if the property is not found
470 * @return integer value, if found, or default_val if not
472 s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
476 * Unsigned version of fdtdec_get_int. The property must have at least
477 * 4 bytes of data. The value of the first cell is returned.
479 * @param blob FDT blob
480 * @param node node to examine
481 * @param prop_name name of property to find
482 * @param default_val default value to return if the property is not found
483 * @return unsigned integer value, if found, or default_val if not
485 unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
486 unsigned int default_val);
489 * Get a variable-sized number from a property
491 * This reads a number from one or more cells.
493 * @param ptr Pointer to property
494 * @param cells Number of cells containing the number
495 * @return the value in the cells
497 u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells);
500 * Look up a 64-bit integer property in a node and return it. The property
501 * must have at least 8 bytes of data (2 cells). The first two cells are
502 * concatenated to form a 8 bytes value, where the first cell is top half and
503 * the second cell is bottom half.
505 * @param blob FDT blob
506 * @param node node to examine
507 * @param prop_name name of property to find
508 * @param default_val default value to return if the property is not found
509 * @return integer value, if found, or default_val if not
511 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
512 uint64_t default_val);
515 * Checks whether a node is enabled.
516 * This looks for a 'status' property. If this exists, then returns 1 if
517 * the status is 'ok' and 0 otherwise. If there is no status property,
518 * it returns 1 on the assumption that anything mentioned should be enabled
521 * @param blob FDT blob
522 * @param node node to examine
523 * @return integer value 0 (not enabled) or 1 (enabled)
525 int fdtdec_get_is_enabled(const void *blob, int node);
528 * Make sure we have a valid fdt available to control U-Boot.
530 * If not, a message is printed to the console if the console is ready.
532 * @return 0 if all ok, -1 if not
534 int fdtdec_prepare_fdt(void);
537 * Checks that we have a valid fdt available to control U-Boot.
539 * However, if not then for the moment nothing is done, since this function
540 * is called too early to panic().
544 int fdtdec_check_fdt(void);
547 * Find the nodes for a peripheral and return a list of them in the correct
548 * order. This is used to enumerate all the peripherals of a certain type.
550 * To use this, optionally set up a /aliases node with alias properties for
551 * a peripheral. For example, for usb you could have:
554 * usb0 = "/ehci@c5008000";
555 * usb1 = "/ehci@c5000000";
558 * Pass "usb" as the name to this function and will return a list of two
559 * nodes offsets: /ehci@c5008000 and ehci@c5000000.
561 * All nodes returned will match the compatible ID, as it is assumed that
562 * all peripherals use the same driver.
564 * If no alias node is found, then the node list will be returned in the
565 * order found in the fdt. If the aliases mention a node which doesn't
566 * exist, then this will be ignored. If nodes are found with no aliases,
567 * they will be added in any order.
569 * If there is a gap in the aliases, then this function return a 0 node at
570 * that position. The return value will also count these gaps.
572 * This function checks node properties and will not return nodes which are
573 * marked disabled (status = "disabled").
575 * @param blob FDT blob to use
576 * @param name Root name of alias to search for
577 * @param id Compatible ID to look for
578 * @param node_list Place to put list of found nodes
579 * @param maxcount Maximum number of nodes to find
580 * @return number of nodes found on success, FDT_ERR_... on error
582 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
583 enum fdt_compat_id id, int *node_list, int maxcount);
586 * This function is similar to fdtdec_find_aliases_for_id() except that it
587 * adds to the node_list that is passed in. Any 0 elements are considered
588 * available for allocation - others are considered already used and are
591 * You can use this by calling fdtdec_find_aliases_for_id() with an
592 * uninitialised array, then setting the elements that are returned to -1,
593 * say, then calling this function, perhaps with a different compat id.
594 * Any elements you get back that are >0 are new nodes added by the call
597 * Note that if you have some nodes with aliases and some without, you are
598 * sailing close to the wind. The call to fdtdec_find_aliases_for_id() with
599 * one compat_id may fill in positions for which you have aliases defined
600 * for another compat_id. When you later call *this* function with the second
601 * compat_id, the alias positions may already be used. A debug warning may
602 * be generated in this case, but it is safest to define aliases for all
603 * nodes when you care about the ordering.
605 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
606 enum fdt_compat_id id, int *node_list, int maxcount);
609 * Get the alias sequence number of a node
611 * This works out whether a node is pointed to by an alias, and if so, the
612 * sequence number of that alias. Aliases are of the form <base><num> where
613 * <num> is the sequence number. For example spi2 would be sequence number
616 * @param blob Device tree blob (if NULL, then error is returned)
617 * @param base Base name for alias (before the underscore)
618 * @param node Node to look up
619 * @param seqp This is set to the sequence number if one is found,
620 * but otherwise the value is left alone
621 * @return 0 if a sequence was found, -ve if not
623 int fdtdec_get_alias_seq(const void *blob, const char *base, int node,
627 * Get the highest alias number for susbystem.
629 * It parses all aliases and find out highest recorded alias for subsystem.
630 * Aliases are of the form <base><num> where <num> is the sequence number.
632 * @param blob Device tree blob (if NULL, then error is returned)
633 * @param base Base name for alias susbystem (before the number)
635 * @return 0 highest alias ID, -1 if not found
637 int fdtdec_get_alias_highest_id(const void *blob, const char *base);
640 * Get a property from the /chosen node
642 * @param blob Device tree blob (if NULL, then NULL is returned)
643 * @param name Property name to look up
644 * @return Value of property, or NULL if it does not exist
646 const char *fdtdec_get_chosen_prop(const void *blob, const char *name);
649 * Get the offset of the given /chosen node
651 * This looks up a property in /chosen containing the path to another node,
652 * then finds the offset of that node.
654 * @param blob Device tree blob (if NULL, then error is returned)
655 * @param name Property name, e.g. "stdout-path"
656 * @return Node offset referred to by that chosen node, or -ve FDT_ERR_...
658 int fdtdec_get_chosen_node(const void *blob, const char *name);
661 * Get the name for a compatible ID
663 * @param id Compatible ID to look for
664 * @return compatible string for that id
666 const char *fdtdec_get_compatible(enum fdt_compat_id id);
668 /* Look up a phandle and follow it to its node. Then return the offset
671 * @param blob FDT blob
672 * @param node node to examine
673 * @param prop_name name of property to find
674 * @return node offset if found, -ve error code on error
676 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name);
679 * Look up a property in a node and return its contents in an integer
680 * array of given length. The property must have at least enough data for
681 * the array (4*count bytes). It may have more, but this will be ignored.
683 * @param blob FDT blob
684 * @param node node to examine
685 * @param prop_name name of property to find
686 * @param array array to fill with data
687 * @param count number of array elements
688 * @return 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found,
689 * or -FDT_ERR_BADLAYOUT if not enough data
691 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
692 u32 *array, int count);
695 * Look up a property in a node and return its contents in an integer
696 * array of given length. The property must exist but may have less data that
697 * expected (4*count bytes). It may have more, but this will be ignored.
699 * @param blob FDT blob
700 * @param node node to examine
701 * @param prop_name name of property to find
702 * @param array array to fill with data
703 * @param count number of array elements
704 * @return number of array elements if ok, or -FDT_ERR_NOTFOUND if the
705 * property is not found
707 int fdtdec_get_int_array_count(const void *blob, int node,
708 const char *prop_name, u32 *array, int count);
711 * Look up a property in a node and return a pointer to its contents as a
712 * unsigned int array of given length. The property must have at least enough
713 * data for the array ('count' cells). It may have more, but this will be
714 * ignored. The data is not copied.
716 * Note that you must access elements of the array with fdt32_to_cpu(),
717 * since the elements will be big endian even on a little endian machine.
719 * @param blob FDT blob
720 * @param node node to examine
721 * @param prop_name name of property to find
722 * @param count number of array elements
723 * @return pointer to array if found, or NULL if the property is not
724 * found or there is not enough data
726 const u32 *fdtdec_locate_array(const void *blob, int node,
727 const char *prop_name, int count);
730 * Look up a boolean property in a node and return it.
732 * A boolean properly is true if present in the device tree and false if not
733 * present, regardless of its value.
735 * @param blob FDT blob
736 * @param node node to examine
737 * @param prop_name name of property to find
738 * @return 1 if the properly is present; 0 if it isn't present
740 int fdtdec_get_bool(const void *blob, int node, const char *prop_name);
743 * Count child nodes of one parent node.
745 * @param blob FDT blob
746 * @param node parent node
747 * @return number of child node; 0 if there is not child node
749 int fdtdec_get_child_count(const void *blob, int node);
752 * Look in the FDT for a config item with the given name and return its value
753 * as a 32-bit integer. The property must have at least 4 bytes of data. The
754 * value of the first cell is returned.
756 * @param blob FDT blob to use
757 * @param prop_name Node property name
758 * @param default_val default value to return if the property is not found
759 * @return integer value, if found, or default_val if not
761 int fdtdec_get_config_int(const void *blob, const char *prop_name,
765 * Look in the FDT for a config item with the given name
766 * and return whether it exists.
768 * @param blob FDT blob
769 * @param prop_name property name to look up
770 * @return 1, if it exists, or 0 if not
772 int fdtdec_get_config_bool(const void *blob, const char *prop_name);
775 * Look in the FDT for a config item with the given name and return its value
778 * @param blob FDT blob
779 * @param prop_name property name to look up
780 * @returns property string, NULL on error.
782 char *fdtdec_get_config_string(const void *blob, const char *prop_name);
785 * Look up a property in a node and return its contents in a byte
786 * array of given length. The property must have at least enough data for
787 * the array (count bytes). It may have more, but this will be ignored.
789 * @param blob FDT blob
790 * @param node node to examine
791 * @param prop_name name of property to find
792 * @param array array to fill with data
793 * @param count number of array elements
794 * @return 0 if ok, or -FDT_ERR_MISSING if the property is not found,
795 * or -FDT_ERR_BADLAYOUT if not enough data
797 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
798 u8 *array, int count);
801 * Look up a property in a node and return a pointer to its contents as a
802 * byte array of given length. The property must have at least enough data
803 * for the array (count bytes). It may have more, but this will be ignored.
804 * The data is not copied.
806 * @param blob FDT blob
807 * @param node node to examine
808 * @param prop_name name of property to find
809 * @param count number of array elements
810 * @return pointer to byte array if found, or NULL if the property is not
811 * found or there is not enough data
813 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
814 const char *prop_name, int count);
817 * Obtain an indexed resource from a device property.
819 * @param fdt FDT blob
820 * @param node node to examine
821 * @param property name of the property to parse
822 * @param index index of the resource to retrieve
823 * @param res returns the resource
824 * @return 0 if ok, negative on error
826 int fdt_get_resource(const void *fdt, int node, const char *property,
827 unsigned int index, struct fdt_resource *res);
830 * Obtain a named resource from a device property.
832 * Look up the index of the name in a list of strings and return the resource
835 * @param fdt FDT blob
836 * @param node node to examine
837 * @param property name of the property to parse
838 * @param prop_names name of the property containing the list of names
839 * @param name the name of the entry to look up
840 * @param res returns the resource
842 int fdt_get_named_resource(const void *fdt, int node, const char *property,
843 const char *prop_names, const char *name,
844 struct fdt_resource *res);
846 /* Display timings from linux include/video/display_timing.h */
848 DISPLAY_FLAGS_HSYNC_LOW = 1 << 0,
849 DISPLAY_FLAGS_HSYNC_HIGH = 1 << 1,
850 DISPLAY_FLAGS_VSYNC_LOW = 1 << 2,
851 DISPLAY_FLAGS_VSYNC_HIGH = 1 << 3,
853 /* data enable flag */
854 DISPLAY_FLAGS_DE_LOW = 1 << 4,
855 DISPLAY_FLAGS_DE_HIGH = 1 << 5,
856 /* drive data on pos. edge */
857 DISPLAY_FLAGS_PIXDATA_POSEDGE = 1 << 6,
858 /* drive data on neg. edge */
859 DISPLAY_FLAGS_PIXDATA_NEGEDGE = 1 << 7,
860 DISPLAY_FLAGS_INTERLACED = 1 << 8,
861 DISPLAY_FLAGS_DOUBLESCAN = 1 << 9,
862 DISPLAY_FLAGS_DOUBLECLK = 1 << 10,
866 * A single signal can be specified via a range of minimal and maximal values
867 * with a typical value, that lies somewhere inbetween.
869 struct timing_entry {
876 * Single "mode" entry. This describes one set of signal timings a display can
877 * have in one setting. This struct can later be converted to struct videomode
878 * (see include/video/videomode.h). As each timing_entry can be defined as a
879 * range, one struct display_timing may become multiple struct videomodes.
881 * Example: hsync active high, vsync active low
884 * Video ______________________XXXXXXXXXXXXXXXXXXXXXX_____________________
885 * |<- sync ->|<- back ->|<----- active ----->|<- front ->|<- sync..
886 * | | porch | | porch |
888 * HSync _|¯¯¯¯¯¯¯¯¯¯|___________________________________________|¯¯¯¯¯¯¯¯¯
890 * VSync ¯|__________|¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|_________
892 struct display_timing {
893 struct timing_entry pixelclock;
895 struct timing_entry hactive; /* hor. active video */
896 struct timing_entry hfront_porch; /* hor. front porch */
897 struct timing_entry hback_porch; /* hor. back porch */
898 struct timing_entry hsync_len; /* hor. sync len */
900 struct timing_entry vactive; /* ver. active video */
901 struct timing_entry vfront_porch; /* ver. front porch */
902 struct timing_entry vback_porch; /* ver. back porch */
903 struct timing_entry vsync_len; /* ver. sync len */
905 enum display_flags flags; /* display flags */
906 bool hdmi_monitor; /* is hdmi monitor? */
910 * fdtdec_decode_display_timing() - decode display timings
912 * Decode display timings from the supplied 'display-timings' node.
913 * See doc/device-tree-bindings/video/display-timing.txt for binding
916 * @param blob FDT blob
917 * @param node 'display-timing' node containing the timing subnodes
918 * @param index Index number to read (0=first timing subnode)
919 * @param config Place to put timings
920 * @return 0 if OK, -FDT_ERR_NOTFOUND if not found
922 int fdtdec_decode_display_timing(const void *blob, int node, int index,
923 struct display_timing *config);
926 * fdtdec_setup_mem_size_base_fdt() - decode and setup gd->ram_size and
929 * Decode the /memory 'reg' property to determine the size and start of the
930 * first memory bank, populate the global data with the size and start of the
931 * first bank of memory.
933 * This function should be called from a boards dram_init(). This helper
934 * function allows for boards to query the device tree for DRAM size and start
935 * address instead of hard coding the value in the case where the memory size
936 * and start address cannot be detected automatically.
938 * @param blob FDT blob
940 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
943 int fdtdec_setup_mem_size_base_fdt(const void *blob);
946 * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and
949 * Decode the /memory 'reg' property to determine the size and start of the
950 * first memory bank, populate the global data with the size and start of the
951 * first bank of memory.
953 * This function should be called from a boards dram_init(). This helper
954 * function allows for boards to query the device tree for DRAM size and start
955 * address instead of hard coding the value in the case where the memory size
956 * and start address cannot be detected automatically.
958 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
961 int fdtdec_setup_mem_size_base(void);
964 * fdtdec_setup_memory_banksize_fdt() - decode and populate gd->bd->bi_dram
966 * Decode the /memory 'reg' property to determine the address and size of the
967 * memory banks. Use this data to populate the global data board info with the
968 * phys address and size of memory banks.
970 * This function should be called from a boards dram_init_banksize(). This
971 * helper function allows for boards to query the device tree for memory bank
972 * information instead of hard coding the information in cases where it cannot
973 * be detected automatically.
975 * @param blob FDT blob
977 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
980 int fdtdec_setup_memory_banksize_fdt(const void *blob);
983 * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram
985 * Decode the /memory 'reg' property to determine the address and size of the
986 * memory banks. Use this data to populate the global data board info with the
987 * phys address and size of memory banks.
989 * This function should be called from a boards dram_init_banksize(). This
990 * helper function allows for boards to query the device tree for memory bank
991 * information instead of hard coding the information in cases where it cannot
992 * be detected automatically.
994 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
997 int fdtdec_setup_memory_banksize(void);
1000 * fdtdec_set_phandle() - sets the phandle of a given node
1002 * @param blob FDT blob
1003 * @param node offset in the FDT blob of the node whose phandle is to
1005 * @param phandle phandle to set for the given node
1006 * @return 0 on success or a negative error code on failure
1008 static inline int fdtdec_set_phandle(void *blob, int node, uint32_t phandle)
1010 return fdt_setprop_u32(blob, node, "phandle", phandle);
1014 * fdtdec_add_reserved_memory() - add or find a reserved-memory node
1016 * If a reserved-memory node already exists for the given carveout, a phandle
1017 * for that node will be returned. Otherwise a new node will be created and a
1018 * phandle corresponding to it will be returned.
1020 * See Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
1021 * for details on how to use reserved memory regions.
1023 * As an example, consider the following code snippet:
1025 * struct fdt_memory fb = {
1026 * .start = 0x92cb3000,
1027 * .end = 0x934b2fff,
1031 * fdtdec_add_reserved_memory(fdt, "framebuffer", &fb, &phandle);
1033 * This results in the following subnode being added to the top-level
1034 * /reserved-memory node:
1037 * #address-cells = <0x00000002>;
1038 * #size-cells = <0x00000002>;
1041 * framebuffer@92cb3000 {
1042 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1043 * phandle = <0x0000004d>;
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.
1051 * See fdtdec_set_carveout() for a more elaborate example.
1053 * @param blob FDT blob
1054 * @param basename base name of the node to create
1055 * @param carveout information about the carveout region
1056 * @param phandlep return location for the phandle of the carveout region
1057 * @return 0 on success or a negative error code on failure
1059 int fdtdec_add_reserved_memory(void *blob, const char *basename,
1060 const struct fdt_memory *carveout,
1061 uint32_t *phandlep);
1064 * fdtdec_get_carveout() - reads a carveout from an FDT
1066 * Reads information about a carveout region from an FDT. The carveout is a
1067 * referenced by its phandle that is read from a given property in a given
1070 * @param blob FDT blob
1071 * @param node name of a node
1072 * @param name name of the property in the given node that contains
1073 * the phandle for the carveout
1074 * @param index index of the phandle for which to read the carveout
1075 * @param carveout return location for the carveout information
1076 * @return 0 on success or a negative error code on failure
1078 int fdtdec_get_carveout(const void *blob, const char *node, const char *name,
1079 unsigned int index, struct fdt_memory *carveout);
1082 * fdtdec_set_carveout() - sets a carveout region for a given node
1084 * Sets a carveout region for a given node. If a reserved-memory node already
1085 * exists for the carveout, the phandle for that node will be reused. If no
1086 * such node exists, a new one will be created and a phandle to it stored in
1087 * a specified property of the given node.
1089 * As an example, consider the following code snippet:
1091 * const char *node = "/host1x@50000000/dc@54240000";
1092 * struct fdt_memory fb = {
1093 * .start = 0x92cb3000,
1094 * .end = 0x934b2fff,
1097 * fdtdec_set_carveout(fdt, node, "memory-region", 0, "framebuffer", &fb);
1099 * dc@54200000 is a display controller and was set up by the bootloader to
1100 * scan out the framebuffer specified by "fb". This would cause the following
1101 * reserved memory region to be added:
1104 * #address-cells = <0x00000002>;
1105 * #size-cells = <0x00000002>;
1108 * framebuffer@92cb3000 {
1109 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1110 * phandle = <0x0000004d>;
1114 * A "memory-region" property will also be added to the node referenced by the
1122 * memory-region = <0x0000004d>;
1129 * @param blob FDT blob
1130 * @param node name of the node to add the carveout to
1131 * @param prop_name name of the property in which to store the phandle of
1133 * @param index index of the phandle to store
1134 * @param name base name of the reserved-memory node to create
1135 * @param carveout information about the carveout to add
1136 * @return 0 on success or a negative error code on failure
1138 int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
1139 unsigned int index, const char *name,
1140 const struct fdt_memory *carveout);
1143 * Set up the device tree ready for use
1145 int fdtdec_setup(void);
1147 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1149 * fdtdec_resetup() - Set up the device tree again
1151 * The main difference with fdtdec_setup() is that it returns if the fdt has
1152 * changed because a better match has been found.
1153 * This is typically used for boards that rely on a DM driver to detect the
1154 * board type. This function sould be called by the board code after the stuff
1155 * needed by board_fit_config_name_match() to operate porperly is available.
1156 * If this functions signals that a rescan is necessary, the board code must
1157 * unbind all the drivers using dm_uninit() and then rescan the DT with
1158 * dm_init_and_scan().
1160 * @param rescan Returns a flag indicating that fdt has changed and rescanning
1161 * the fdt is required
1163 * @return 0 if OK, -ve on error
1165 int fdtdec_resetup(int *rescan);
1169 * Board-specific FDT initialization. Returns the address to a device tree blob.
1170 * Called when CONFIG_OF_BOARD is defined, or if CONFIG_OF_SEPARATE is defined
1171 * and the board implements it.
1173 void *board_fdt_blob_setup(void);
1176 * Decode the size of memory
1178 * RAM size is normally set in a /memory node and consists of a list of
1179 * (base, size) cells in the 'reg' property. This information is used to
1180 * determine the total available memory as well as the address and size
1183 * Optionally the memory configuration can vary depending on a board id,
1184 * typically read from strapping resistors or an EEPROM on the board.
1186 * Finally, memory size can be detected (within certain limits) by probing
1187 * the available memory. It is safe to do so within the limits provides by
1188 * the board's device tree information. This makes it possible to produce
1189 * boards with different memory sizes, where the device tree specifies the
1190 * maximum memory configuration, and the smaller memory configuration is
1193 * This function decodes that information, returning the memory base address,
1194 * size and bank information. See the memory.txt binding for full
1197 * @param blob Device tree blob
1198 * @param area Name of node to check (NULL means "/memory")
1199 * @param board_id Board ID to look up
1200 * @param basep Returns base address of first memory bank (NULL to
1202 * @param sizep Returns total memory size (NULL to ignore)
1203 * @param bd Updated with the memory bank information (NULL to skip)
1204 * @return 0 if OK, -ve on error
1206 int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1207 phys_addr_t *basep, phys_size_t *sizep,
1208 struct bd_info *bd);