blob: abd6d42671949a104d5ac79432a89f8c012b1fb3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassb5220bc2011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glassb5220bc2011-10-24 19:15:32 +00004 */
5
Simon Glass5bfa78d2012-07-12 05:25:02 +00006#ifndef __fdtdec_h
7#define __fdtdec_h
Simon Glassb5220bc2011-10-24 19:15:32 +00008
9/*
10 * This file contains convenience functions for decoding useful and
11 * enlightening information from FDTs. It is intended to be used by device
12 * drivers and board-specific code within U-Boot. It aims to reduce the
13 * amount of FDT munging required within U-Boot itself, so that driver code
14 * changes to support FDT are minimized.
15 */
16
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Bin Menga62e84d2014-12-31 16:05:11 +080018#include <pci.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000019
20/*
21 * A typedef for a physical address. Note that fdt data is always big
22 * endian even on a litle endian machine.
23 */
York Sun28445aa2015-08-03 12:02:04 -070024typedef phys_addr_t fdt_addr_t;
25typedef phys_size_t fdt_size_t;
Thierry Reding4f253ad2019-03-21 19:10:00 +010026
Simon Glassb5220bc2011-10-24 19:15:32 +000027#ifdef CONFIG_PHYS_64BIT
Mario Sixc6b89f32018-02-12 08:05:57 +010028#define FDT_ADDR_T_NONE (-1U)
Simon Glassb5220bc2011-10-24 19:15:32 +000029#define fdt_addr_to_cpu(reg) be64_to_cpu(reg)
Simon Glassf20c4612012-10-25 16:31:00 +000030#define fdt_size_to_cpu(reg) be64_to_cpu(reg)
Thierry Reding155d0a02019-03-21 19:09:59 +010031#define cpu_to_fdt_addr(reg) cpu_to_be64(reg)
32#define cpu_to_fdt_size(reg) cpu_to_be64(reg)
Simon Glassc20ee0e2017-08-29 14:15:50 -060033typedef fdt64_t fdt_val_t;
Simon Glassb5220bc2011-10-24 19:15:32 +000034#else
Simon Glassb5220bc2011-10-24 19:15:32 +000035#define FDT_ADDR_T_NONE (-1U)
36#define fdt_addr_to_cpu(reg) be32_to_cpu(reg)
Simon Glassf20c4612012-10-25 16:31:00 +000037#define fdt_size_to_cpu(reg) be32_to_cpu(reg)
Thierry Reding155d0a02019-03-21 19:09:59 +010038#define cpu_to_fdt_addr(reg) cpu_to_be32(reg)
39#define cpu_to_fdt_size(reg) cpu_to_be32(reg)
Simon Glassc20ee0e2017-08-29 14:15:50 -060040typedef fdt32_t fdt_val_t;
Simon Glassb5220bc2011-10-24 19:15:32 +000041#endif
42
43/* Information obtained about memory from the FDT */
44struct fdt_memory {
45 fdt_addr_t start;
46 fdt_addr_t end;
47};
48
Michael Pratt90c08fa2018-06-11 13:07:09 -060049struct bd_info;
50
Simon Glassaf282242015-03-06 13:19:03 -070051#ifdef CONFIG_SPL_BUILD
52#define SPL_BUILD 1
53#else
54#define SPL_BUILD 0
55#endif
56
Lukas Auerc4f603f2019-08-21 21:14:40 +020057#ifdef CONFIG_OF_PRIOR_STAGE
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040058extern phys_addr_t prior_stage_fdt_address;
59#endif
60
Thierry Reding56f42242014-08-26 17:33:53 +020061/*
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.
65 */
66struct fdt_resource {
67 fdt_addr_t start;
68 fdt_addr_t end;
69};
70
Bin Menga62e84d2014-12-31 16:05:11 +080071enum fdt_pci_space {
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,
78};
79
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))
84
85/*
86 * The Open Firmware spec defines PCI physical address as follows:
87 *
88 * bits# 31 .... 24 23 .... 16 15 .... 08 07 .... 00
89 *
90 * phys.hi cell: npt000ss bbbbbbbb dddddfff rrrrrrrr
91 * phys.mid cell: hhhhhhhh hhhhhhhh hhhhhhhh hhhhhhhh
92 * phys.lo cell: llllllll llllllll llllllll llllllll
93 *
94 * where:
95 *
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
107 */
108struct fdt_pci_addr {
109 u32 phys_hi;
110 u32 phys_mid;
111 u32 phys_lo;
112};
113
Simon Glass2ebebb92019-12-28 10:44:42 -0700114extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
115extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
116
Thierry Reding56f42242014-08-26 17:33:53 +0200117/**
118 * Compute the size of a resource.
119 *
120 * @param res the resource to operate on
121 * @return the size of the resource
122 */
123static inline fdt_size_t fdt_resource_size(const struct fdt_resource *res)
124{
125 return res->end - res->start + 1;
126}
127
Simon Glassb5220bc2011-10-24 19:15:32 +0000128/**
129 * Compat types that we know about and for which we might have drivers.
130 * Each is named COMPAT_<dir>_<filename> where <dir> is the directory
131 * within drivers.
132 */
133enum fdt_compat_id {
134 COMPAT_UNKNOWN,
Allen Martin00a27492012-08-31 08:30:00 +0000135 COMPAT_NVIDIA_TEGRA20_EMC, /* Tegra20 memory controller */
136 COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */
Jim Lin312693c2012-07-29 20:53:29 +0000137 COMPAT_NVIDIA_TEGRA20_NAND, /* Tegra2 NAND controller */
Thierry Reding79c7a902014-12-09 22:25:09 -0700138 COMPAT_NVIDIA_TEGRA124_XUSB_PADCTL,
139 /* Tegra124 XUSB pad controller */
Tom Warren7aaa5a62015-03-04 16:36:00 -0700140 COMPAT_NVIDIA_TEGRA210_XUSB_PADCTL,
141 /* Tegra210 XUSB pad controller */
Hatim RVcc9fe332012-12-11 00:52:46 +0000142 COMPAT_SMSC_LAN9215, /* SMSC 10/100 Ethernet LAN9215 */
143 COMPAT_SAMSUNG_EXYNOS5_SROMC, /* Exynos5 SROMC */
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +0000144 COMPAT_SAMSUNG_EXYNOS_USB_PHY, /* Exynos phy controller for usb2.0 */
Vivek Gautam108b85b2013-09-14 14:02:48 +0530145 COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos phy controller for usb3.0 */
Akshay Saraswat618766c2013-02-25 01:13:01 +0000146 COMPAT_SAMSUNG_EXYNOS_TMU, /* Exynos TMU */
Piotr Wilczekde461c52014-03-07 14:59:39 +0100147 COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +0900148 COMPAT_SAMSUNG_EXYNOS_DWMMC, /* Exynos DWMMC controller */
Simon Glassbb8215f2013-03-11 06:08:08 +0000149 COMPAT_GENERIC_SPI_FLASH, /* Generic SPI Flash chip */
Ajay Kumar45c480c2014-09-05 16:53:33 +0530150 COMPAT_SAMSUNG_EXYNOS_SYSMMU, /* Exynos sysmmu */
Simon Glass77f9b1f2014-11-12 22:42:21 -0700151 COMPAT_INTEL_MICROCODE, /* Intel microcode update */
Bin Mengc89ada02015-02-05 23:42:26 +0800152 COMPAT_INTEL_QRK_MRC, /* Intel Quark MRC */
Marek Vasut6ab00db2015-07-25 19:33:56 +0200153 COMPAT_ALTERA_SOCFPGA_DWMAC, /* SoCFPGA Ethernet controller */
Marek Vasut129adf52015-07-25 10:48:14 +0200154 COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */
Marek Vasutef4b01b2015-12-05 19:28:44 +0100155 COMPAT_ALTERA_SOCFPGA_DWC2USB, /* SoCFPGA DWC2 USB controller */
Andrew Bradfordf3b84a32015-08-07 08:36:35 -0400156 COMPAT_INTEL_BAYTRAIL_FSP, /* Intel Bay Trail FSP */
157 COMPAT_INTEL_BAYTRAIL_FSP_MDP, /* Intel FSP memory-down params */
Bin Meng394e0b62015-12-11 02:55:44 -0800158 COMPAT_INTEL_IVYBRIDGE_FSP, /* Intel Ivy Bridge FSP */
Boris Brezillon4ccae812016-06-15 21:09:23 +0200159 COMPAT_SUNXI_NAND, /* SUNXI NAND controller */
Ley Foon Tane11b5e82017-04-05 17:32:47 +0800160 COMPAT_ALTERA_SOCFPGA_CLK, /* SoCFPGA Clock initialization */
161 COMPAT_ALTERA_SOCFPGA_PINCTRL_SINGLE, /* SoCFPGA pinctrl-single */
162 COMPAT_ALTERA_SOCFPGA_H2F_BRG, /* SoCFPGA hps2fpga bridge */
163 COMPAT_ALTERA_SOCFPGA_LWH2F_BRG, /* SoCFPGA lwhps2fpga bridge */
164 COMPAT_ALTERA_SOCFPGA_F2H_BRG, /* SoCFPGA fpga2hps bridge */
165 COMPAT_ALTERA_SOCFPGA_F2SDR0, /* SoCFPGA fpga2SDRAM0 bridge */
166 COMPAT_ALTERA_SOCFPGA_F2SDR1, /* SoCFPGA fpga2SDRAM1 bridge */
167 COMPAT_ALTERA_SOCFPGA_F2SDR2, /* SoCFPGA fpga2SDRAM2 bridge */
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +0800168 COMPAT_ALTERA_SOCFPGA_FPGA0, /* SOCFPGA FPGA manager */
169 COMPAT_ALTERA_SOCFPGA_NOC, /* SOCFPGA Arria 10 NOC */
Marek Vasut19c8fc72018-05-12 11:56:10 +0200170 COMPAT_ALTERA_SOCFPGA_CLK_INIT, /* SOCFPGA Arria 10 clk init */
Simon Glassb5220bc2011-10-24 19:15:32 +0000171
172 COMPAT_COUNT,
173};
174
Simon Glass57068a72015-01-05 20:05:26 -0700175#define MAX_PHANDLE_ARGS 16
176struct fdtdec_phandle_args {
177 int node;
178 int args_count;
179 uint32_t args[MAX_PHANDLE_ARGS];
180};
181
182/**
183 * fdtdec_parse_phandle_with_args() - Find a node pointed by phandle in a list
184 *
185 * This function is useful to parse lists of phandles and their arguments.
186 *
187 * Example:
188 *
189 * phandle1: node1 {
190 * #list-cells = <2>;
191 * }
192 *
193 * phandle2: node2 {
194 * #list-cells = <1>;
195 * }
196 *
197 * node3 {
198 * list = <&phandle1 1 2 &phandle2 3>;
199 * }
200 *
201 * To get a device_node of the `node2' node you may call this:
202 * fdtdec_parse_phandle_with_args(blob, node3, "list", "#list-cells", 0, 1,
203 * &args);
204 *
205 * (This function is a modified version of __of_parse_phandle_with_args() from
206 * Linux 3.18)
207 *
208 * @blob: Pointer to device tree
209 * @src_node: Offset of device tree node containing a list
210 * @list_name: property name that contains a list
211 * @cells_name: property name that specifies the phandles' arguments count,
212 * or NULL to use @cells_count
213 * @cells_count: Cell count to use if @cells_name is NULL
214 * @index: index of a phandle to parse out
215 * @out_args: optional pointer to output arguments structure (will be filled)
216 * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if
217 * @list_name does not exist, a phandle was not found, @cells_name
218 * could not be found, the arguments were truncated or there were too
219 * many arguments.
220 *
221 */
222int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
223 const char *list_name,
224 const char *cells_name,
225 int cell_count, int index,
226 struct fdtdec_phandle_args *out_args);
227
Sean Paul202ff752012-10-25 16:31:06 +0000228/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000229 * Find the next numbered alias for a peripheral. This is used to enumerate
230 * all the peripherals of a certain type.
231 *
232 * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then
233 * this function will return a pointer to the node the alias points to, and
234 * then update *upto to 1. Next time you call this function, the next node
235 * will be returned.
236 *
237 * All nodes returned will match the compatible ID, as it is assumed that
238 * all peripherals use the same driver.
239 *
240 * @param blob FDT blob to use
241 * @param name Root name of alias to search for
242 * @param id Compatible ID to look for
243 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
244 */
245int fdtdec_next_alias(const void *blob, const char *name,
246 enum fdt_compat_id id, int *upto);
247
248/**
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500249 * Find the compatible ID for a given node.
250 *
251 * Generally each node has at least one compatible string attached to it.
252 * This function looks through our list of known compatible strings and
253 * returns the corresponding ID which matches the compatible string.
254 *
255 * @param blob FDT blob to use
256 * @param node Node containing compatible string to find
257 * @return compatible ID, or COMPAT_UNKNOWN if we cannot find a match
258 */
259enum fdt_compat_id fdtdec_lookup(const void *blob, int node);
260
261/**
Simon Glassf88fe2d2012-02-27 10:52:34 +0000262 * Find the next compatible node for a peripheral.
263 *
264 * Do the first call with node = 0. This function will return a pointer to
265 * the next compatible node. Next time you call this function, pass the
266 * value returned, and the next node will be provided.
267 *
268 * @param blob FDT blob to use
269 * @param node Start node for search
270 * @param id Compatible ID to look for (enum fdt_compat_id)
271 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
272 */
273int fdtdec_next_compatible(const void *blob, int node,
274 enum fdt_compat_id id);
275
276/**
Simon Glass3ddecfc2012-04-02 13:18:42 +0000277 * Find the next compatible subnode for a peripheral.
278 *
279 * Do the first call with node set to the parent and depth = 0. This
280 * function will return the offset of the next compatible node. Next time
281 * you call this function, pass the node value returned last time, with
282 * depth unchanged, and the next node will be provided.
283 *
284 * @param blob FDT blob to use
285 * @param node Start node for search
286 * @param id Compatible ID to look for (enum fdt_compat_id)
287 * @param depthp Current depth (set to 0 before first call)
288 * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
289 */
290int fdtdec_next_compatible_subnode(const void *blob, int node,
291 enum fdt_compat_id id, int *depthp);
292
Stephen Warren02464e32015-08-06 15:31:02 -0600293/*
294 * Look up an address property in a node and return the parsed address, and
295 * optionally the parsed size.
296 *
297 * This variant assumes a known and fixed number of cells are used to
298 * represent the address and size.
299 *
300 * You probably don't want to use this function directly except to parse
301 * non-standard properties, and never to parse the "reg" property. Instead,
302 * use one of the "auto" variants below, which automatically honor the
303 * #address-cells and #size-cells properties in the parent node.
304 *
305 * @param blob FDT blob
306 * @param node node to examine
307 * @param prop_name name of property to find
308 * @param index which address to retrieve from a list of addresses. Often 0.
309 * @param na the number of cells used to represent an address
310 * @param ns the number of cells used to represent a size
311 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600312 * @param translate Indicates whether to translate the returned value
313 * using the parent node's ranges property.
Stephen Warren02464e32015-08-06 15:31:02 -0600314 * @return address, if found, or FDT_ADDR_T_NONE if not
315 */
316fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
317 const char *prop_name, int index, int na, int ns,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600318 fdt_size_t *sizep, bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600319
320/*
321 * Look up an address property in a node and return the parsed address, and
322 * optionally the parsed size.
323 *
324 * This variant automatically determines the number of cells used to represent
325 * the address and size by parsing the provided parent node's #address-cells
326 * and #size-cells properties.
327 *
328 * @param blob FDT blob
329 * @param parent parent node of @node
330 * @param node node to examine
331 * @param prop_name name of property to find
332 * @param index which address to retrieve from a list of addresses. Often 0.
333 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600334 * @param translate Indicates whether to translate the returned value
335 * using the parent node's ranges property.
Stephen Warren02464e32015-08-06 15:31:02 -0600336 * @return address, if found, or FDT_ADDR_T_NONE if not
337 */
338fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600339 int node, const char *prop_name, int index, fdt_size_t *sizep,
340 bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600341
342/*
343 * Look up an address property in a node and return the parsed address, and
344 * optionally the parsed size.
345 *
346 * This variant automatically determines the number of cells used to represent
347 * the address and size by parsing the parent node's #address-cells
348 * and #size-cells properties. The parent node is automatically found.
349 *
350 * The automatic parent lookup implemented by this function is slow.
351 * Consequently, fdtdec_get_addr_size_auto_parent() should be used where
352 * possible.
353 *
354 * @param blob FDT blob
355 * @param parent parent node of @node
356 * @param node node to examine
357 * @param prop_name name of property to find
358 * @param index which address to retrieve from a list of addresses. Often 0.
359 * @param sizep a pointer to store the size into. Use NULL if not required
Stephen Warren6e06acb2016-08-05 09:47:51 -0600360 * @param translate Indicates whether to translate the returned value
361 * using the parent node's ranges property.
Stephen Warren02464e32015-08-06 15:31:02 -0600362 * @return address, if found, or FDT_ADDR_T_NONE if not
363 */
364fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600365 const char *prop_name, int index, fdt_size_t *sizep,
366 bool translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600367
368/*
369 * Look up an address property in a node and return the parsed address.
370 *
371 * This variant hard-codes the number of cells used to represent the address
372 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
373 * always returns the first address value in the property (index 0).
374 *
375 * Use of this function is not recommended due to the hard-coding of cell
376 * counts. There is no programmatic validation that these hard-coded values
377 * actually match the device tree content in any way at all. This assumption
378 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
379 * set in the U-Boot build and exercising strict control over DT content to
380 * ensure use of matching #address-cells/#size-cells properties. However, this
381 * approach is error-prone; those familiar with DT will not expect the
382 * assumption to exist, and could easily invalidate it. If the assumption is
383 * invalidated, this function will not report the issue, and debugging will
384 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
Simon Glassb5220bc2011-10-24 19:15:32 +0000385 *
386 * @param blob FDT blob
387 * @param node node to examine
388 * @param prop_name name of property to find
389 * @return address, if found, or FDT_ADDR_T_NONE if not
390 */
391fdt_addr_t fdtdec_get_addr(const void *blob, int node,
392 const char *prop_name);
393
Stephen Warren02464e32015-08-06 15:31:02 -0600394/*
395 * Look up an address property in a node and return the parsed address, and
396 * optionally the parsed size.
397 *
398 * This variant hard-codes the number of cells used to represent the address
399 * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
400 * always returns the first address value in the property (index 0).
401 *
402 * Use of this function is not recommended due to the hard-coding of cell
403 * counts. There is no programmatic validation that these hard-coded values
404 * actually match the device tree content in any way at all. This assumption
405 * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
406 * set in the U-Boot build and exercising strict control over DT content to
407 * ensure use of matching #address-cells/#size-cells properties. However, this
408 * approach is error-prone; those familiar with DT will not expect the
409 * assumption to exist, and could easily invalidate it. If the assumption is
410 * invalidated, this function will not report the issue, and debugging will
411 * be required. Instead, use fdtdec_get_addr_size_auto_parent().
Simon Glass4397a2a2013-03-19 04:58:51 +0000412 *
413 * @param blob FDT blob
414 * @param node node to examine
415 * @param prop_name name of property to find
Stephen Warren02464e32015-08-06 15:31:02 -0600416 * @param sizep a pointer to store the size into. Use NULL if not required
Simon Glass4397a2a2013-03-19 04:58:51 +0000417 * @return address, if found, or FDT_ADDR_T_NONE if not
418 */
419fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
420 const char *prop_name, fdt_size_t *sizep);
421
422/**
Bin Menga62e84d2014-12-31 16:05:11 +0800423 * Look at the compatible property of a device node that represents a PCI
424 * device and extract pci vendor id and device id from it.
425 *
426 * @param blob FDT blob
427 * @param node node to examine
428 * @param vendor vendor id of the pci device
429 * @param device device id of the pci device
430 * @return 0 if ok, negative on error
431 */
432int fdtdec_get_pci_vendev(const void *blob, int node,
433 u16 *vendor, u16 *device);
434
435/**
436 * Look at the pci address of a device node that represents a PCI device
Bin Menga62e84d2014-12-31 16:05:11 +0800437 * and return base address of the pci device's registers.
438 *
Simon Glassfcc0a872015-11-29 13:17:54 -0700439 * @param dev device to examine
Bin Menga62e84d2014-12-31 16:05:11 +0800440 * @param addr pci address in the form of fdt_pci_addr
441 * @param bar returns base address of the pci device's registers
442 * @return 0 if ok, negative on error
443 */
Simon Glass194fca92020-01-27 08:49:38 -0700444int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassfcc0a872015-11-29 13:17:54 -0700445 u32 *bar);
Bin Menga62e84d2014-12-31 16:05:11 +0800446
447/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000448 * Look up a 32-bit integer property in a node and return it. The property
449 * must have at least 4 bytes of data. The value of the first cell is
450 * returned.
451 *
452 * @param blob FDT blob
453 * @param node node to examine
454 * @param prop_name name of property to find
455 * @param default_val default value to return if the property is not found
456 * @return integer value, if found, or default_val if not
457 */
458s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
459 s32 default_val);
460
461/**
Chin Liang Seebfa3e552015-10-17 08:30:32 -0500462 * Unsigned version of fdtdec_get_int. The property must have at least
463 * 4 bytes of data. The value of the first cell is returned.
464 *
465 * @param blob FDT blob
466 * @param node node to examine
467 * @param prop_name name of property to find
468 * @param default_val default value to return if the property is not found
469 * @return unsigned integer value, if found, or default_val if not
470 */
471unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
472 unsigned int default_val);
473
474/**
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700475 * Get a variable-sized number from a property
476 *
477 * This reads a number from one or more cells.
478 *
479 * @param ptr Pointer to property
480 * @param cells Number of cells containing the number
481 * @return the value in the cells
482 */
483u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells);
484
485/**
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000486 * Look up a 64-bit integer property in a node and return it. The property
487 * must have at least 8 bytes of data (2 cells). The first two cells are
488 * concatenated to form a 8 bytes value, where the first cell is top half and
489 * the second cell is bottom half.
490 *
491 * @param blob FDT blob
492 * @param node node to examine
493 * @param prop_name name of property to find
494 * @param default_val default value to return if the property is not found
495 * @return integer value, if found, or default_val if not
496 */
497uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
498 uint64_t default_val);
499
500/**
Simon Glassb5220bc2011-10-24 19:15:32 +0000501 * Checks whether a node is enabled.
502 * This looks for a 'status' property. If this exists, then returns 1 if
503 * the status is 'ok' and 0 otherwise. If there is no status property,
Simon Glassf88fe2d2012-02-27 10:52:34 +0000504 * it returns 1 on the assumption that anything mentioned should be enabled
505 * by default.
Simon Glassb5220bc2011-10-24 19:15:32 +0000506 *
507 * @param blob FDT blob
508 * @param node node to examine
Simon Glassf88fe2d2012-02-27 10:52:34 +0000509 * @return integer value 0 (not enabled) or 1 (enabled)
Simon Glassb5220bc2011-10-24 19:15:32 +0000510 */
Simon Glassf88fe2d2012-02-27 10:52:34 +0000511int fdtdec_get_is_enabled(const void *blob, int node);
Simon Glassb5220bc2011-10-24 19:15:32 +0000512
513/**
Simon Glass9a263e52012-03-28 10:08:24 +0000514 * Make sure we have a valid fdt available to control U-Boot.
515 *
516 * If not, a message is printed to the console if the console is ready.
517 *
518 * @return 0 if all ok, -1 if not
519 */
520int fdtdec_prepare_fdt(void);
521
522/**
523 * Checks that we have a valid fdt available to control U-Boot.
524
525 * However, if not then for the moment nothing is done, since this function
526 * is called too early to panic().
527 *
528 * @returns 0
Simon Glassb5220bc2011-10-24 19:15:32 +0000529 */
530int fdtdec_check_fdt(void);
Simon Glassa53f4a22012-01-17 08:20:50 +0000531
532/**
533 * Find the nodes for a peripheral and return a list of them in the correct
534 * order. This is used to enumerate all the peripherals of a certain type.
535 *
536 * To use this, optionally set up a /aliases node with alias properties for
537 * a peripheral. For example, for usb you could have:
538 *
539 * aliases {
540 * usb0 = "/ehci@c5008000";
541 * usb1 = "/ehci@c5000000";
542 * };
543 *
544 * Pass "usb" as the name to this function and will return a list of two
545 * nodes offsets: /ehci@c5008000 and ehci@c5000000.
546 *
547 * All nodes returned will match the compatible ID, as it is assumed that
548 * all peripherals use the same driver.
549 *
550 * If no alias node is found, then the node list will be returned in the
551 * order found in the fdt. If the aliases mention a node which doesn't
552 * exist, then this will be ignored. If nodes are found with no aliases,
553 * they will be added in any order.
554 *
555 * If there is a gap in the aliases, then this function return a 0 node at
556 * that position. The return value will also count these gaps.
557 *
558 * This function checks node properties and will not return nodes which are
559 * marked disabled (status = "disabled").
560 *
561 * @param blob FDT blob to use
562 * @param name Root name of alias to search for
563 * @param id Compatible ID to look for
564 * @param node_list Place to put list of found nodes
565 * @param maxcount Maximum number of nodes to find
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -0400566 * @return number of nodes found on success, FDT_ERR_... on error
Simon Glassa53f4a22012-01-17 08:20:50 +0000567 */
568int fdtdec_find_aliases_for_id(const void *blob, const char *name,
569 enum fdt_compat_id id, int *node_list, int maxcount);
570
571/*
Simon Glassc6782272012-02-03 15:13:53 +0000572 * This function is similar to fdtdec_find_aliases_for_id() except that it
573 * adds to the node_list that is passed in. Any 0 elements are considered
574 * available for allocation - others are considered already used and are
575 * skipped.
576 *
577 * You can use this by calling fdtdec_find_aliases_for_id() with an
578 * uninitialised array, then setting the elements that are returned to -1,
579 * say, then calling this function, perhaps with a different compat id.
580 * Any elements you get back that are >0 are new nodes added by the call
581 * to this function.
582 *
583 * Note that if you have some nodes with aliases and some without, you are
584 * sailing close to the wind. The call to fdtdec_find_aliases_for_id() with
585 * one compat_id may fill in positions for which you have aliases defined
586 * for another compat_id. When you later call *this* function with the second
587 * compat_id, the alias positions may already be used. A debug warning may
588 * be generated in this case, but it is safest to define aliases for all
589 * nodes when you care about the ordering.
590 */
591int fdtdec_add_aliases_for_id(const void *blob, const char *name,
592 enum fdt_compat_id id, int *node_list, int maxcount);
593
Simon Glass5c33c9f2014-07-23 06:55:09 -0600594/**
595 * Get the alias sequence number of a node
596 *
597 * This works out whether a node is pointed to by an alias, and if so, the
598 * sequence number of that alias. Aliases are of the form <base><num> where
599 * <num> is the sequence number. For example spi2 would be sequence number
600 * 2.
601 *
602 * @param blob Device tree blob (if NULL, then error is returned)
603 * @param base Base name for alias (before the underscore)
604 * @param node Node to look up
605 * @param seqp This is set to the sequence number if one is found,
606 * but otherwise the value is left alone
607 * @return 0 if a sequence was found, -ve if not
608 */
609int fdtdec_get_alias_seq(const void *blob, const char *base, int node,
610 int *seqp);
611
Simon Glass3234aa42014-07-23 06:55:16 -0600612/**
Michal Simek003c9dc2019-01-31 16:30:58 +0100613 * Get the highest alias number for susbystem.
614 *
615 * It parses all aliases and find out highest recorded alias for subsystem.
616 * Aliases are of the form <base><num> where <num> is the sequence number.
617 *
618 * @param blob Device tree blob (if NULL, then error is returned)
619 * @param base Base name for alias susbystem (before the number)
620 *
621 * @return 0 highest alias ID, -1 if not found
622 */
623int fdtdec_get_alias_highest_id(const void *blob, const char *base);
624
625/**
Simon Glass3bc37a52015-10-17 19:41:14 -0600626 * Get a property from the /chosen node
627 *
628 * @param blob Device tree blob (if NULL, then NULL is returned)
629 * @param name Property name to look up
630 * @return Value of property, or NULL if it does not exist
631 */
632const char *fdtdec_get_chosen_prop(const void *blob, const char *name);
633
634/**
635 * Get the offset of the given /chosen node
Simon Glassaac07d42014-09-04 16:27:24 -0600636 *
637 * This looks up a property in /chosen containing the path to another node,
638 * then finds the offset of that node.
639 *
640 * @param blob Device tree blob (if NULL, then error is returned)
641 * @param name Property name, e.g. "stdout-path"
642 * @return Node offset referred to by that chosen node, or -ve FDT_ERR_...
643 */
644int fdtdec_get_chosen_node(const void *blob, const char *name);
645
Simon Glassc6782272012-02-03 15:13:53 +0000646/*
Simon Glassa53f4a22012-01-17 08:20:50 +0000647 * Get the name for a compatible ID
648 *
649 * @param id Compatible ID to look for
650 * @return compatible string for that id
651 */
652const char *fdtdec_get_compatible(enum fdt_compat_id id);
Simon Glassd17da652012-02-27 10:52:35 +0000653
654/* Look up a phandle and follow it to its node. Then return the offset
655 * of that node.
656 *
657 * @param blob FDT blob
658 * @param node node to examine
659 * @param prop_name name of property to find
660 * @return node offset if found, -ve error code on error
661 */
662int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name);
663
664/**
665 * Look up a property in a node and return its contents in an integer
666 * array of given length. The property must have at least enough data for
667 * the array (4*count bytes). It may have more, but this will be ignored.
668 *
669 * @param blob FDT blob
670 * @param node node to examine
671 * @param prop_name name of property to find
672 * @param array array to fill with data
673 * @param count number of array elements
674 * @return 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found,
675 * or -FDT_ERR_BADLAYOUT if not enough data
676 */
677int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
678 u32 *array, int count);
679
680/**
Simon Glassa9f04d42014-11-10 18:00:19 -0700681 * Look up a property in a node and return its contents in an integer
682 * array of given length. The property must exist but may have less data that
683 * expected (4*count bytes). It may have more, but this will be ignored.
684 *
685 * @param blob FDT blob
686 * @param node node to examine
687 * @param prop_name name of property to find
688 * @param array array to fill with data
689 * @param count number of array elements
690 * @return number of array elements if ok, or -FDT_ERR_NOTFOUND if the
691 * property is not found
692 */
693int fdtdec_get_int_array_count(const void *blob, int node,
694 const char *prop_name, u32 *array, int count);
695
696/**
Simon Glass96875e72012-04-02 13:18:41 +0000697 * Look up a property in a node and return a pointer to its contents as a
698 * unsigned int array of given length. The property must have at least enough
699 * data for the array ('count' cells). It may have more, but this will be
700 * ignored. The data is not copied.
701 *
702 * Note that you must access elements of the array with fdt32_to_cpu(),
703 * since the elements will be big endian even on a little endian machine.
704 *
705 * @param blob FDT blob
706 * @param node node to examine
707 * @param prop_name name of property to find
708 * @param count number of array elements
709 * @return pointer to array if found, or NULL if the property is not
710 * found or there is not enough data
711 */
712const u32 *fdtdec_locate_array(const void *blob, int node,
713 const char *prop_name, int count);
714
715/**
Simon Glassd17da652012-02-27 10:52:35 +0000716 * Look up a boolean property in a node and return it.
717 *
718 * A boolean properly is true if present in the device tree and false if not
719 * present, regardless of its value.
720 *
721 * @param blob FDT blob
722 * @param node node to examine
723 * @param prop_name name of property to find
724 * @return 1 if the properly is present; 0 if it isn't present
725 */
726int fdtdec_get_bool(const void *blob, int node, const char *prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000727
Peng Fan1889a7e2016-02-01 13:31:15 +0800728/*
729 * Count child nodes of one parent node.
730 *
731 * @param blob FDT blob
732 * @param node parent node
733 * @return number of child node; 0 if there is not child node
734 */
735int fdtdec_get_child_count(const void *blob, int node);
736
Simon Glassed3ee5c2012-02-27 10:52:36 +0000737/**
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000738 * Look in the FDT for a config item with the given name and return its value
739 * as a 32-bit integer. The property must have at least 4 bytes of data. The
740 * value of the first cell is returned.
741 *
742 * @param blob FDT blob to use
743 * @param prop_name Node property name
744 * @param default_val default value to return if the property is not found
745 * @return integer value, if found, or default_val if not
746 */
747int fdtdec_get_config_int(const void *blob, const char *prop_name,
748 int default_val);
749
Simon Glass332ab0d2012-10-25 16:30:59 +0000750/**
Gabe Black79289c02012-10-25 16:31:04 +0000751 * Look in the FDT for a config item with the given name
752 * and return whether it exists.
753 *
754 * @param blob FDT blob
755 * @param prop_name property name to look up
756 * @return 1, if it exists, or 0 if not
757 */
758int fdtdec_get_config_bool(const void *blob, const char *prop_name);
759
760/**
Simon Glass332ab0d2012-10-25 16:30:59 +0000761 * Look in the FDT for a config item with the given name and return its value
762 * as a string.
763 *
764 * @param blob FDT blob
765 * @param prop_name property name to look up
766 * @returns property string, NULL on error.
767 */
768char *fdtdec_get_config_string(const void *blob, const char *prop_name);
769
Anton Staffbed4d892012-04-17 09:01:28 +0000770/*
771 * Look up a property in a node and return its contents in a byte
772 * array of given length. The property must have at least enough data for
773 * the array (count bytes). It may have more, but this will be ignored.
774 *
775 * @param blob FDT blob
776 * @param node node to examine
777 * @param prop_name name of property to find
778 * @param array array to fill with data
779 * @param count number of array elements
780 * @return 0 if ok, or -FDT_ERR_MISSING if the property is not found,
781 * or -FDT_ERR_BADLAYOUT if not enough data
782 */
783int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
784 u8 *array, int count);
785
786/**
787 * Look up a property in a node and return a pointer to its contents as a
788 * byte array of given length. The property must have at least enough data
789 * for the array (count bytes). It may have more, but this will be ignored.
790 * The data is not copied.
791 *
792 * @param blob FDT blob
793 * @param node node to examine
794 * @param prop_name name of property to find
795 * @param count number of array elements
796 * @return pointer to byte array if found, or NULL if the property is not
797 * found or there is not enough data
798 */
799const u8 *fdtdec_locate_byte_array(const void *blob, int node,
800 const char *prop_name, int count);
Simon Glassf20c4612012-10-25 16:31:00 +0000801
802/**
Thierry Reding56f42242014-08-26 17:33:53 +0200803 * Obtain an indexed resource from a device property.
804 *
805 * @param fdt FDT blob
806 * @param node node to examine
807 * @param property name of the property to parse
808 * @param index index of the resource to retrieve
809 * @param res returns the resource
810 * @return 0 if ok, negative on error
811 */
812int fdt_get_resource(const void *fdt, int node, const char *property,
813 unsigned int index, struct fdt_resource *res);
814
815/**
816 * Obtain a named resource from a device property.
817 *
818 * Look up the index of the name in a list of strings and return the resource
819 * at that index.
820 *
821 * @param fdt FDT blob
822 * @param node node to examine
823 * @param property name of the property to parse
824 * @param prop_names name of the property containing the list of names
825 * @param name the name of the entry to look up
826 * @param res returns the resource
827 */
828int fdt_get_named_resource(const void *fdt, int node, const char *property,
829 const char *prop_names, const char *name,
830 struct fdt_resource *res);
831
Simon Glass12e67112015-04-14 21:03:21 -0600832/* Display timings from linux include/video/display_timing.h */
833enum display_flags {
834 DISPLAY_FLAGS_HSYNC_LOW = 1 << 0,
835 DISPLAY_FLAGS_HSYNC_HIGH = 1 << 1,
836 DISPLAY_FLAGS_VSYNC_LOW = 1 << 2,
837 DISPLAY_FLAGS_VSYNC_HIGH = 1 << 3,
838
839 /* data enable flag */
840 DISPLAY_FLAGS_DE_LOW = 1 << 4,
841 DISPLAY_FLAGS_DE_HIGH = 1 << 5,
842 /* drive data on pos. edge */
843 DISPLAY_FLAGS_PIXDATA_POSEDGE = 1 << 6,
844 /* drive data on neg. edge */
845 DISPLAY_FLAGS_PIXDATA_NEGEDGE = 1 << 7,
846 DISPLAY_FLAGS_INTERLACED = 1 << 8,
847 DISPLAY_FLAGS_DOUBLESCAN = 1 << 9,
848 DISPLAY_FLAGS_DOUBLECLK = 1 << 10,
849};
850
851/*
852 * A single signal can be specified via a range of minimal and maximal values
853 * with a typical value, that lies somewhere inbetween.
854 */
855struct timing_entry {
856 u32 min;
857 u32 typ;
858 u32 max;
859};
860
861/*
862 * Single "mode" entry. This describes one set of signal timings a display can
863 * have in one setting. This struct can later be converted to struct videomode
864 * (see include/video/videomode.h). As each timing_entry can be defined as a
865 * range, one struct display_timing may become multiple struct videomodes.
866 *
867 * Example: hsync active high, vsync active low
868 *
869 * Active Video
870 * Video ______________________XXXXXXXXXXXXXXXXXXXXXX_____________________
871 * |<- sync ->|<- back ->|<----- active ----->|<- front ->|<- sync..
872 * | | porch | | porch |
873 *
874 * HSync _|¯¯¯¯¯¯¯¯¯¯|___________________________________________|¯¯¯¯¯¯¯¯¯
875 *
876 * VSync ¯|__________|¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|_________
877 */
878struct display_timing {
879 struct timing_entry pixelclock;
880
881 struct timing_entry hactive; /* hor. active video */
882 struct timing_entry hfront_porch; /* hor. front porch */
883 struct timing_entry hback_porch; /* hor. back porch */
884 struct timing_entry hsync_len; /* hor. sync len */
885
886 struct timing_entry vactive; /* ver. active video */
887 struct timing_entry vfront_porch; /* ver. front porch */
888 struct timing_entry vback_porch; /* ver. back porch */
889 struct timing_entry vsync_len; /* ver. sync len */
890
891 enum display_flags flags; /* display flags */
Jernej Skrabec43c6bdd2017-04-29 14:43:36 +0200892 bool hdmi_monitor; /* is hdmi monitor? */
Simon Glass12e67112015-04-14 21:03:21 -0600893};
894
895/**
896 * fdtdec_decode_display_timing() - decode display timings
897 *
898 * Decode display timings from the supplied 'display-timings' node.
899 * See doc/device-tree-bindings/video/display-timing.txt for binding
900 * information.
901 *
902 * @param blob FDT blob
903 * @param node 'display-timing' node containing the timing subnodes
904 * @param index Index number to read (0=first timing subnode)
905 * @param config Place to put timings
906 * @return 0 if OK, -FDT_ERR_NOTFOUND if not found
907 */
908int fdtdec_decode_display_timing(const void *blob, int node, int index,
909 struct display_timing *config);
Nathan Rossi623f6012016-12-19 00:03:34 +1000910
911/**
Marek Vasut3ebe09d2019-03-05 04:25:54 +0100912 * fdtdec_setup_mem_size_base_fdt() - decode and setup gd->ram_size and
913 * gd->ram_start
914 *
915 * Decode the /memory 'reg' property to determine the size and start of the
916 * first memory bank, populate the global data with the size and start of the
917 * first bank of memory.
918 *
919 * This function should be called from a boards dram_init(). This helper
920 * function allows for boards to query the device tree for DRAM size and start
921 * address instead of hard coding the value in the case where the memory size
922 * and start address cannot be detected automatically.
923 *
924 * @param blob FDT blob
925 *
926 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
927 * invalid
928 */
929int fdtdec_setup_mem_size_base_fdt(const void *blob);
930
931/**
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530932 * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and
933 * gd->ram_start
Nathan Rossi623f6012016-12-19 00:03:34 +1000934 *
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530935 * Decode the /memory 'reg' property to determine the size and start of the
936 * first memory bank, populate the global data with the size and start of the
937 * first bank of memory.
Nathan Rossi623f6012016-12-19 00:03:34 +1000938 *
939 * This function should be called from a boards dram_init(). This helper
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530940 * function allows for boards to query the device tree for DRAM size and start
941 * address instead of hard coding the value in the case where the memory size
942 * and start address cannot be detected automatically.
Nathan Rossi623f6012016-12-19 00:03:34 +1000943 *
944 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
945 * invalid
946 */
Siva Durga Prasad Paladugu12308b12018-07-16 15:56:11 +0530947int fdtdec_setup_mem_size_base(void);
Nathan Rossi623f6012016-12-19 00:03:34 +1000948
949/**
Marek Vasut118f4d42019-03-05 04:25:55 +0100950 * fdtdec_setup_memory_banksize_fdt() - decode and populate gd->bd->bi_dram
951 *
952 * Decode the /memory 'reg' property to determine the address and size of the
953 * memory banks. Use this data to populate the global data board info with the
954 * phys address and size of memory banks.
955 *
956 * This function should be called from a boards dram_init_banksize(). This
957 * helper function allows for boards to query the device tree for memory bank
958 * information instead of hard coding the information in cases where it cannot
959 * be detected automatically.
960 *
961 * @param blob FDT blob
962 *
963 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
964 * invalid
965 */
966int fdtdec_setup_memory_banksize_fdt(const void *blob);
967
968/**
Nathan Rossi623f6012016-12-19 00:03:34 +1000969 * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram
970 *
971 * Decode the /memory 'reg' property to determine the address and size of the
972 * memory banks. Use this data to populate the global data board info with the
973 * phys address and size of memory banks.
974 *
975 * This function should be called from a boards dram_init_banksize(). This
976 * helper function allows for boards to query the device tree for memory bank
977 * information instead of hard coding the information in cases where it cannot
978 * be detected automatically.
979 *
980 * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
981 * invalid
982 */
983int fdtdec_setup_memory_banksize(void);
984
Simon Glassb45122f2015-02-27 22:06:34 -0700985/**
Thierry Redingebf30e82019-04-15 11:32:13 +0200986 * fdtdec_set_ethernet_mac_address() - set MAC address for default interface
987 *
988 * Looks up the default interface via the "ethernet" alias (in the /aliases
989 * node) and stores the given MAC in its "local-mac-address" property. This
990 * is useful on platforms that store the MAC address in a custom location.
991 * Board code can call this in the late init stage to make sure that the
992 * interface device tree node has the right MAC address configured for the
993 * Ethernet uclass to pick it up.
994 *
995 * Typically the FDT passed into this function will be U-Boot's control DTB.
996 * Given that a lot of code may be holding offsets to various nodes in that
997 * tree, this code will only set the "local-mac-address" property in-place,
998 * which means that it needs to exist and have space for the 6-byte address.
999 * This ensures that the operation is non-destructive and does not invalidate
1000 * offsets that other drivers may be using.
1001 *
1002 * @param fdt FDT blob
1003 * @param mac buffer containing the MAC address to set
1004 * @param size size of MAC address
1005 * @return 0 on success or a negative error code on failure
1006 */
1007int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size);
1008
1009/**
Thierry Reding8153d532019-03-21 19:10:01 +01001010 * fdtdec_set_phandle() - sets the phandle of a given node
1011 *
1012 * @param blob FDT blob
1013 * @param node offset in the FDT blob of the node whose phandle is to
1014 * be set
1015 * @param phandle phandle to set for the given node
1016 * @return 0 on success or a negative error code on failure
1017 */
Thierry Redingd81d9692019-04-15 10:08:20 +02001018static inline int fdtdec_set_phandle(void *blob, int node, uint32_t phandle)
1019{
1020 return fdt_setprop_u32(blob, node, "phandle", phandle);
1021}
Thierry Reding8153d532019-03-21 19:10:01 +01001022
1023/**
Thierry Redingc9222a02019-03-21 19:10:02 +01001024 * fdtdec_add_reserved_memory() - add or find a reserved-memory node
1025 *
1026 * If a reserved-memory node already exists for the given carveout, a phandle
1027 * for that node will be returned. Otherwise a new node will be created and a
1028 * phandle corresponding to it will be returned.
1029 *
1030 * See Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
1031 * for details on how to use reserved memory regions.
1032 *
1033 * As an example, consider the following code snippet:
1034 *
1035 * struct fdt_memory fb = {
1036 * .start = 0x92cb3000,
1037 * .end = 0x934b2fff,
1038 * };
1039 * uint32_t phandle;
1040 *
1041 * fdtdec_add_reserved_memory(fdt, "framebuffer", &fb, &phandle);
1042 *
1043 * This results in the following subnode being added to the top-level
1044 * /reserved-memory node:
1045 *
1046 * reserved-memory {
1047 * #address-cells = <0x00000002>;
1048 * #size-cells = <0x00000002>;
1049 * ranges;
1050 *
1051 * framebuffer@92cb3000 {
1052 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1053 * phandle = <0x0000004d>;
1054 * };
1055 * };
1056 *
1057 * If the top-level /reserved-memory node does not exist, it will be created.
1058 * The phandle returned from the function call can be used to reference this
1059 * reserved memory region from other nodes.
1060 *
Thierry Reding16523ac2019-03-21 19:10:03 +01001061 * See fdtdec_set_carveout() for a more elaborate example.
1062 *
Thierry Redingc9222a02019-03-21 19:10:02 +01001063 * @param blob FDT blob
1064 * @param basename base name of the node to create
1065 * @param carveout information about the carveout region
1066 * @param phandlep return location for the phandle of the carveout region
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001067 * can be NULL if no phandle should be added
Thierry Redingc9222a02019-03-21 19:10:02 +01001068 * @return 0 on success or a negative error code on failure
1069 */
1070int fdtdec_add_reserved_memory(void *blob, const char *basename,
1071 const struct fdt_memory *carveout,
1072 uint32_t *phandlep);
1073
1074/**
Thierry Reding16523ac2019-03-21 19:10:03 +01001075 * fdtdec_get_carveout() - reads a carveout from an FDT
1076 *
1077 * Reads information about a carveout region from an FDT. The carveout is a
1078 * referenced by its phandle that is read from a given property in a given
1079 * node.
1080 *
1081 * @param blob FDT blob
1082 * @param node name of a node
1083 * @param name name of the property in the given node that contains
1084 * the phandle for the carveout
1085 * @param index index of the phandle for which to read the carveout
1086 * @param carveout return location for the carveout information
1087 * @return 0 on success or a negative error code on failure
1088 */
1089int fdtdec_get_carveout(const void *blob, const char *node, const char *name,
1090 unsigned int index, struct fdt_memory *carveout);
1091
1092/**
1093 * fdtdec_set_carveout() - sets a carveout region for a given node
1094 *
1095 * Sets a carveout region for a given node. If a reserved-memory node already
1096 * exists for the carveout, the phandle for that node will be reused. If no
1097 * such node exists, a new one will be created and a phandle to it stored in
1098 * a specified property of the given node.
1099 *
1100 * As an example, consider the following code snippet:
1101 *
1102 * const char *node = "/host1x@50000000/dc@54240000";
1103 * struct fdt_memory fb = {
1104 * .start = 0x92cb3000,
1105 * .end = 0x934b2fff,
1106 * };
1107 *
1108 * fdtdec_set_carveout(fdt, node, "memory-region", 0, "framebuffer", &fb);
1109 *
1110 * dc@54200000 is a display controller and was set up by the bootloader to
1111 * scan out the framebuffer specified by "fb". This would cause the following
1112 * reserved memory region to be added:
1113 *
1114 * reserved-memory {
1115 * #address-cells = <0x00000002>;
1116 * #size-cells = <0x00000002>;
1117 * ranges;
1118 *
1119 * framebuffer@92cb3000 {
1120 * reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1121 * phandle = <0x0000004d>;
1122 * };
1123 * };
1124 *
1125 * A "memory-region" property will also be added to the node referenced by the
1126 * offset parameter.
1127 *
1128 * host1x@50000000 {
1129 * ...
1130 *
1131 * dc@54240000 {
1132 * ...
1133 * memory-region = <0x0000004d>;
1134 * ...
1135 * };
1136 *
1137 * ...
1138 * };
1139 *
1140 * @param blob FDT blob
1141 * @param node name of the node to add the carveout to
1142 * @param prop_name name of the property in which to store the phandle of
1143 * the carveout
1144 * @param index index of the phandle to store
1145 * @param name base name of the reserved-memory node to create
1146 * @param carveout information about the carveout to add
1147 * @return 0 on success or a negative error code on failure
1148 */
1149int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
1150 unsigned int index, const char *name,
1151 const struct fdt_memory *carveout);
1152
1153/**
Simon Glassb45122f2015-02-27 22:06:34 -07001154 * Set up the device tree ready for use
1155 */
Simon Glass08793612015-02-27 22:06:35 -07001156int fdtdec_setup(void);
Simon Glassb45122f2015-02-27 22:06:34 -07001157
Marek Vasut0e2afc82020-04-11 21:18:59 +02001158/**
1159 * Perform board-specific early DT adjustments
1160 */
1161int fdtdec_board_setup(const void *fdt_blob);
1162
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001163#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1164/**
1165 * fdtdec_resetup() - Set up the device tree again
1166 *
1167 * The main difference with fdtdec_setup() is that it returns if the fdt has
1168 * changed because a better match has been found.
1169 * This is typically used for boards that rely on a DM driver to detect the
1170 * board type. This function sould be called by the board code after the stuff
1171 * needed by board_fit_config_name_match() to operate porperly is available.
1172 * If this functions signals that a rescan is necessary, the board code must
1173 * unbind all the drivers using dm_uninit() and then rescan the DT with
1174 * dm_init_and_scan().
1175 *
1176 * @param rescan Returns a flag indicating that fdt has changed and rescanning
1177 * the fdt is required
1178 *
1179 * @return 0 if OK, -ve on error
1180 */
1181int fdtdec_resetup(int *rescan);
1182#endif
1183
Alex Deymo82f766d2017-04-02 01:25:20 -07001184/**
1185 * Board-specific FDT initialization. Returns the address to a device tree blob.
Rob Clark3b595da2018-01-10 11:34:37 +01001186 * Called when CONFIG_OF_BOARD is defined, or if CONFIG_OF_SEPARATE is defined
1187 * and the board implements it.
Alex Deymo82f766d2017-04-02 01:25:20 -07001188 */
Baruch Siachb2364482018-10-28 14:41:14 +02001189void *board_fdt_blob_setup(void);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001190
1191/*
1192 * Decode the size of memory
1193 *
1194 * RAM size is normally set in a /memory node and consists of a list of
1195 * (base, size) cells in the 'reg' property. This information is used to
1196 * determine the total available memory as well as the address and size
1197 * of each bank.
1198 *
1199 * Optionally the memory configuration can vary depending on a board id,
1200 * typically read from strapping resistors or an EEPROM on the board.
1201 *
1202 * Finally, memory size can be detected (within certain limits) by probing
1203 * the available memory. It is safe to do so within the limits provides by
1204 * the board's device tree information. This makes it possible to produce
1205 * boards with different memory sizes, where the device tree specifies the
1206 * maximum memory configuration, and the smaller memory configuration is
1207 * probed.
1208 *
1209 * This function decodes that information, returning the memory base address,
1210 * size and bank information. See the memory.txt binding for full
1211 * documentation.
1212 *
1213 * @param blob Device tree blob
1214 * @param area Name of node to check (NULL means "/memory")
1215 * @param board_id Board ID to look up
1216 * @param basep Returns base address of first memory bank (NULL to
1217 * ignore)
1218 * @param sizep Returns total memory size (NULL to ignore)
1219 * @param bd Updated with the memory bank information (NULL to skip)
1220 * @return 0 if OK, -ve on error
1221 */
1222int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1223 phys_addr_t *basep, phys_size_t *sizep,
1224 struct bd_info *bd);
Alex Deymo82f766d2017-04-02 01:25:20 -07001225
Simon Glass5bfa78d2012-07-12 05:25:02 +00001226#endif