blob: b06559880296276bebd434e9d1de6d2fa923fa98 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass2d2af852011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass1fbd6142023-04-25 10:27:21 -06004 *
5 * NOTE: Please do not add new devicetree-reading functionality into this file.
6 * Add it to the ofnode API instead, since that is compatible with livetree.
Simon Glass2d2af852011-10-24 19:15:32 +00007 */
8
Heiko Schocherd7b42322014-03-03 12:19:30 +01009#ifndef USE_HOSTCC
Simon Glass4a30a572024-01-03 18:49:19 -070010
11#define LOG_CATEGORY LOGC_DT
12
13#include <bloblist.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020014#include <boot_fit.h>
Simon Glass1ab16922022-07-31 12:28:48 -060015#include <display_options.h>
Simon Glassf1037ad2015-11-29 13:17:54 -070016#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070017#include <hang.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070018#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060019#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070020#include <malloc.h>
Simon Glass274e0b02020-05-10 11:39:56 -060021#include <net.h>
Simon Glass84137372022-12-21 16:08:19 -070022#include <spl.h>
Simon Glass6eaea252019-08-01 09:46:48 -060023#include <env.h>
Simon Glass9908ad42014-07-23 06:55:09 -060024#include <errno.h>
Simon Glass2d2af852011-10-24 19:15:32 +000025#include <fdtdec.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020026#include <fdt_support.h>
Simon Glass1a974af2019-08-01 09:46:36 -060027#include <gzip.h>
Heinrich Schuchardt370a1762018-11-18 17:58:50 +010028#include <mapmem.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090029#include <linux/libfdt.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020030#include <serial.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060031#include <asm/global_data.h>
Simon Glass26b78b22015-02-27 22:06:34 -070032#include <asm/sections.h>
Simon Glassba8457b2022-09-06 20:27:19 -060033#include <dm/ofnode.h>
34#include <dm/of_extra.h>
Simon Glass9908ad42014-07-23 06:55:09 -060035#include <linux/ctype.h>
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +020036#include <linux/lzo.h>
Michal Simek6dd9cfd2020-07-10 13:34:44 +020037#include <linux/ioport.h>
Simon Glass2d2af852011-10-24 19:15:32 +000038
39DECLARE_GLOBAL_DATA_PTR;
40
41/*
42 * Here are the type we know about. One day we might allow drivers to
43 * register. For now we just put them here. The COMPAT macro allows us to
44 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass7c380302016-06-19 17:33:13 -060045 *
46 * NOTE: This list is basically a TODO list for things that need to be
47 * converted to driver model. So don't add new things here unless there is a
48 * good reason why driver-model conversion is infeasible. Examples include
49 * things which are used before driver model is available.
Simon Glass2d2af852011-10-24 19:15:32 +000050 */
51#define COMPAT(id, name) name
52static const char * const compat_names[COMPAT_COUNT] = {
Simon Glass65444982012-02-27 10:52:34 +000053 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang5983ef82012-04-02 13:18:52 +000054 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
55 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin5d309e62012-07-29 20:53:29 +000056 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Redingf202e022014-12-09 22:25:09 -070057 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warrenab0cc6b2015-03-04 16:36:00 -070058 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +000059 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautamf8745232013-09-14 14:02:48 +053060 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswataa773182013-02-25 01:13:01 +000061 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczek24e368a2014-03-07 14:59:39 +010062 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chunge3fb6fa2014-05-16 13:59:51 +090063 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrongf6625b42019-02-10 10:16:21 +000064 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumare24c5022014-09-05 16:53:33 +053065 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glassf79d5382014-11-12 22:42:21 -070066 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Meng2bfd2642015-02-05 23:42:26 +080067 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasutf3f8fe22015-07-25 19:33:56 +020068 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut17497232015-07-25 10:48:14 +020069 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutf26c1ae2015-12-05 19:28:44 +010070 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass6f70c112016-06-19 17:33:14 -060071 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
72 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
73 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Ley Foon Tanb25ae722017-04-05 17:32:47 +080074 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
75 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
76 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
77 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
78 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
79 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
80 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
81 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheebbfa5eb2017-09-25 16:40:03 +080082 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
83 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasutee4e36b2018-05-12 11:56:10 +020084 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glass2d2af852011-10-24 19:15:32 +000085};
86
Simon Glass8f9ce7e2021-12-16 20:59:34 -070087static const char *const fdt_src_name[] = {
88 [FDTSRC_SEPARATE] = "separate",
89 [FDTSRC_FIT] = "fit",
90 [FDTSRC_BOARD] = "board",
91 [FDTSRC_EMBED] = "embed",
92 [FDTSRC_ENV] = "env",
Simon Glass4a30a572024-01-03 18:49:19 -070093 [FDTSRC_BLOBLIST] = "bloblist",
Simon Glass8f9ce7e2021-12-16 20:59:34 -070094};
95
96const char *fdtdec_get_srcname(void)
97{
98 return fdt_src_name[gd->fdt_src];
99}
100
Simon Glassb022ead2012-01-17 08:20:50 +0000101const char *fdtdec_get_compatible(enum fdt_compat_id id)
102{
103 /* We allow reading of the 'unknown' ID for testing purposes */
104 assert(id >= 0 && id < COMPAT_COUNT);
105 return compat_names[id];
106}
107
Stephen Warren6dfe6182015-08-06 15:31:02 -0600108fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100109 const char *prop_name, int index, int na,
110 int ns, fdt_size_t *sizep,
111 bool translate)
Simon Glass2d2af852011-10-24 19:15:32 +0000112{
Stephen Warren6dfe6182015-08-06 15:31:02 -0600113 const fdt32_t *prop, *prop_end;
114 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
Simon Glass04c50d12015-08-02 18:13:50 -0600115 int len;
Stephen Warren6dfe6182015-08-06 15:31:02 -0600116 fdt_addr_t addr;
Simon Glass2d2af852011-10-24 19:15:32 +0000117
Simon Glassc8c86dd2012-07-12 05:25:01 +0000118 debug("%s: %s: ", __func__, prop_name);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600119
Stephen Warren6dfe6182015-08-06 15:31:02 -0600120 prop = fdt_getprop(blob, node, prop_name, &len);
121 if (!prop) {
122 debug("(not found)\n");
123 return FDT_ADDR_T_NONE;
124 }
125 prop_end = prop + (len / sizeof(*prop));
Simon Glassc8c86dd2012-07-12 05:25:01 +0000126
Stephen Warren6dfe6182015-08-06 15:31:02 -0600127 prop_addr = prop + (index * (na + ns));
128 prop_size = prop_addr + na;
129 prop_after_size = prop_size + ns;
130 if (prop_after_size > prop_end) {
131 debug("(not enough data: expected >= %d cells, got %d cells)\n",
132 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
133 return FDT_ADDR_T_NONE;
Simon Glassc8c86dd2012-07-12 05:25:01 +0000134 }
Stephen Warren6dfe6182015-08-06 15:31:02 -0600135
Vignesh R621cc092017-03-20 10:04:38 +0530136#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren7d30e102016-08-05 09:47:51 -0600137 if (translate)
138 addr = fdt_translate_address(blob, node, prop_addr);
139 else
140#endif
141 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600142
143 if (sizep) {
144 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glass0b14dc72016-02-29 15:25:37 -0700145 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
146 (unsigned long long)*sizep);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600147 } else {
Simon Glass0b14dc72016-02-29 15:25:37 -0700148 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600149 }
150
151 return addr;
152}
153
154fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100155 int node, const char *prop_name,
156 int index, fdt_size_t *sizep,
157 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600158{
159 int na, ns;
160
161 debug("%s: ", __func__);
162
163 na = fdt_address_cells(blob, parent);
164 if (na < 1) {
165 debug("(bad #address-cells)\n");
166 return FDT_ADDR_T_NONE;
167 }
168
169 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczak7b42f4d2015-09-30 13:14:50 +0200170 if (ns < 0) {
Stephen Warren6dfe6182015-08-06 15:31:02 -0600171 debug("(bad #size-cells)\n");
172 return FDT_ADDR_T_NONE;
173 }
174
175 debug("na=%d, ns=%d, ", na, ns);
176
177 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren7d30e102016-08-05 09:47:51 -0600178 ns, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600179}
180
181fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100182 const char *prop_name, int index,
183 fdt_size_t *sizep,
184 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600185{
186 int parent;
187
188 debug("%s: ", __func__);
189
190 parent = fdt_parent_offset(blob, node);
191 if (parent < 0) {
192 debug("(no parent found)\n");
193 return FDT_ADDR_T_NONE;
194 }
195
196 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren7d30e102016-08-05 09:47:51 -0600197 index, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600198}
199
200fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100201 const char *prop_name, fdt_size_t *sizep)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600202{
Stephen Warrenfda59162015-09-25 10:11:41 -0600203 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
204
Stephen Warren6dfe6182015-08-06 15:31:02 -0600205 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
206 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren7d30e102016-08-05 09:47:51 -0600207 ns, sizep, false);
Simon Glass2d2af852011-10-24 19:15:32 +0000208}
209
Mario Sixbb3e06c2018-01-15 11:07:35 +0100210fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glassf4299552013-03-19 04:58:51 +0000211{
212 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
213}
214
Bin Meng779847e2014-12-31 16:05:11 +0800215int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
216{
217 const char *list, *end;
218 int len;
219
220 list = fdt_getprop(blob, node, "compatible", &len);
221 if (!list)
222 return -ENOENT;
223
224 end = list + len;
225 while (list < end) {
Bin Meng779847e2014-12-31 16:05:11 +0800226 len = strlen(list);
227 if (len >= strlen("pciVVVV,DDDD")) {
Mario Six6abfbc82018-01-15 11:07:36 +0100228 char *s = strstr(list, "pci");
Bin Meng779847e2014-12-31 16:05:11 +0800229
230 /*
231 * check if the string is something like pciVVVV,DDDD.RR
232 * or just pciVVVV,DDDD
233 */
234 if (s && s[7] == ',' &&
235 (s[12] == '.' || s[12] == 0)) {
236 s += 3;
237 *vendor = simple_strtol(s, NULL, 16);
238
239 s += 5;
240 *device = simple_strtol(s, NULL, 16);
241
242 return 0;
243 }
Bin Meng779847e2014-12-31 16:05:11 +0800244 }
Bin Menga2822b82015-08-20 06:40:25 -0700245 list += (len + 1);
Bin Meng779847e2014-12-31 16:05:11 +0800246 }
247
248 return -ENOENT;
249}
250
Simon Glassc92aac12020-01-27 08:49:38 -0700251int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassf1037ad2015-11-29 13:17:54 -0700252 u32 *bar)
Bin Meng779847e2014-12-31 16:05:11 +0800253{
Bin Meng779847e2014-12-31 16:05:11 +0800254 int barnum;
Bin Meng779847e2014-12-31 16:05:11 +0800255
256 /* extract the bar number from fdt_pci_addr */
257 barnum = addr->phys_hi & 0xff;
Mario Six6abfbc82018-01-15 11:07:36 +0100258 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Meng779847e2014-12-31 16:05:11 +0800259 return -EINVAL;
260
261 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassfde8b762021-08-01 18:54:18 -0600262
Simon Glassf1037ad2015-11-29 13:17:54 -0700263 *bar = dm_pci_read_bar32(dev, barnum);
Bin Meng779847e2014-12-31 16:05:11 +0800264
265 return 0;
266}
Suneel Garapati78d0bea2019-10-19 15:19:35 -0700267
268int fdtdec_get_pci_bus_range(const void *blob, int node,
269 struct fdt_resource *res)
270{
271 const u32 *values;
272 int len;
273
274 values = fdt_getprop(blob, node, "bus-range", &len);
275 if (!values || len < sizeof(*values) * 2)
276 return -EINVAL;
277
278 res->start = fdt32_to_cpu(*values++);
279 res->end = fdt32_to_cpu(*values);
280
281 return 0;
282}
Bin Meng779847e2014-12-31 16:05:11 +0800283
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000284uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100285 uint64_t default_val)
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000286{
Jean-Jacques Hiblot487f9172019-10-22 10:05:22 +0200287 const unaligned_fdt64_t *cell64;
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000288 int length;
289
290 cell64 = fdt_getprop(blob, node, prop_name, &length);
291 if (!cell64 || length < sizeof(*cell64))
292 return default_val;
293
294 return fdt64_to_cpu(*cell64);
295}
296
Simon Glass65444982012-02-27 10:52:34 +0000297int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000298{
299 const char *cell;
300
Simon Glass65444982012-02-27 10:52:34 +0000301 /*
302 * It should say "okay", so only allow that. Some fdts use "ok" but
303 * this is a bug. Please fix your device tree source file. See here
304 * for discussion:
305 *
306 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
307 */
Simon Glass2d2af852011-10-24 19:15:32 +0000308 cell = fdt_getprop(blob, node, "status", NULL);
309 if (cell)
Mario Six6abfbc82018-01-15 11:07:36 +0100310 return strcmp(cell, "okay") == 0;
Simon Glass65444982012-02-27 10:52:34 +0000311 return 1;
Simon Glass2d2af852011-10-24 19:15:32 +0000312}
313
Gerald Van Barencdac3392012-11-12 23:13:54 -0500314enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000315{
316 enum fdt_compat_id id;
317
318 /* Search our drivers */
319 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Six6abfbc82018-01-15 11:07:36 +0100320 if (fdt_node_check_compatible(blob, node,
321 compat_names[id]) == 0)
Simon Glass2d2af852011-10-24 19:15:32 +0000322 return id;
323 return COMPAT_UNKNOWN;
324}
325
Mario Sixbb3e06c2018-01-15 11:07:35 +0100326int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glass2d2af852011-10-24 19:15:32 +0000327{
328 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
329}
330
Simon Glass2e979b12012-04-02 13:18:42 +0000331int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100332 enum fdt_compat_id id, int *depthp)
Simon Glass2e979b12012-04-02 13:18:42 +0000333{
334 do {
335 node = fdt_next_node(blob, node, depthp);
336 } while (*depthp > 1);
337
338 /* If this is a direct subnode, and compatible, return it */
339 if (*depthp == 1 && 0 == fdt_node_check_compatible(
340 blob, node, compat_names[id]))
341 return node;
342
343 return -FDT_ERR_NOTFOUND;
344}
345
Mario Sixbb3e06c2018-01-15 11:07:35 +0100346int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
347 int *upto)
Simon Glass2d2af852011-10-24 19:15:32 +0000348{
349#define MAX_STR_LEN 20
350 char str[MAX_STR_LEN + 20];
351 int node, err;
352
353 /* snprintf() is not available */
354 assert(strlen(name) < MAX_STR_LEN);
355 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glasse1d15ca2012-10-31 14:02:42 +0000356 node = fdt_path_offset(blob, str);
Simon Glass2d2af852011-10-24 19:15:32 +0000357 if (node < 0)
358 return node;
359 err = fdt_node_check_compatible(blob, node, compat_names[id]);
360 if (err < 0)
361 return err;
Simon Glass65444982012-02-27 10:52:34 +0000362 if (err)
363 return -FDT_ERR_NOTFOUND;
364 (*upto)++;
365 return node;
Simon Glass2d2af852011-10-24 19:15:32 +0000366}
367
Simon Glassb022ead2012-01-17 08:20:50 +0000368int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100369 enum fdt_compat_id id, int *node_list,
370 int maxcount)
Simon Glassb022ead2012-01-17 08:20:50 +0000371{
Simon Glass1f772662012-02-03 15:13:53 +0000372 memset(node_list, '\0', sizeof(*node_list) * maxcount);
373
374 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
375}
376
377/* TODO: Can we tighten this code up a little? */
378int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100379 enum fdt_compat_id id, int *node_list,
380 int maxcount)
Simon Glass1f772662012-02-03 15:13:53 +0000381{
Simon Glassb022ead2012-01-17 08:20:50 +0000382 int name_len = strlen(name);
383 int nodes[maxcount];
384 int num_found = 0;
385 int offset, node;
386 int alias_node;
387 int count;
388 int i, j;
389
390 /* find the alias node if present */
391 alias_node = fdt_path_offset(blob, "/aliases");
392
393 /*
394 * start with nothing, and we can assume that the root node can't
395 * match
396 */
397 memset(nodes, '\0', sizeof(nodes));
398
399 /* First find all the compatible nodes */
400 for (node = count = 0; node >= 0 && count < maxcount;) {
401 node = fdtdec_next_compatible(blob, node, id);
402 if (node >= 0)
403 nodes[count++] = node;
404 }
405 if (node >= 0)
406 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100407 __func__, name);
Simon Glassb022ead2012-01-17 08:20:50 +0000408
409 /* Now find all the aliases */
Simon Glassb022ead2012-01-17 08:20:50 +0000410 for (offset = fdt_first_property_offset(blob, alias_node);
411 offset > 0;
412 offset = fdt_next_property_offset(blob, offset)) {
413 const struct fdt_property *prop;
414 const char *path;
415 int number;
416 int found;
417
418 node = 0;
419 prop = fdt_get_property_by_offset(blob, offset, NULL);
420 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
421 if (prop->len && 0 == strncmp(path, name, name_len))
422 node = fdt_path_offset(blob, prop->data);
423 if (node <= 0)
424 continue;
425
426 /* Get the alias number */
Simon Glassff9b9032021-07-24 09:03:30 -0600427 number = dectoul(path + name_len, NULL);
Simon Glassb022ead2012-01-17 08:20:50 +0000428 if (number < 0 || number >= maxcount) {
429 debug("%s: warning: alias '%s' is out of range\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100430 __func__, path);
Simon Glassb022ead2012-01-17 08:20:50 +0000431 continue;
432 }
433
434 /* Make sure the node we found is actually in our list! */
435 found = -1;
436 for (j = 0; j < count; j++)
437 if (nodes[j] == node) {
438 found = j;
439 break;
440 }
441
442 if (found == -1) {
443 debug("%s: warning: alias '%s' points to a node "
444 "'%s' that is missing or is not compatible "
445 " with '%s'\n", __func__, path,
446 fdt_get_name(blob, node, NULL),
447 compat_names[id]);
448 continue;
449 }
450
451 /*
452 * Add this node to our list in the right place, and mark
453 * it as done.
454 */
455 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glass1f772662012-02-03 15:13:53 +0000456 if (node_list[number]) {
457 debug("%s: warning: alias '%s' requires that "
458 "a node be placed in the list in a "
459 "position which is already filled by "
460 "node '%s'\n", __func__, path,
461 fdt_get_name(blob, node, NULL));
462 continue;
463 }
Simon Glassb022ead2012-01-17 08:20:50 +0000464 node_list[number] = node;
465 if (number >= num_found)
466 num_found = number + 1;
467 }
Simon Glass1f772662012-02-03 15:13:53 +0000468 nodes[found] = 0;
Simon Glassb022ead2012-01-17 08:20:50 +0000469 }
470
471 /* Add any nodes not mentioned by an alias */
472 for (i = j = 0; i < maxcount; i++) {
473 if (!node_list[i]) {
474 for (; j < maxcount; j++)
475 if (nodes[j] &&
Mario Sixbb3e06c2018-01-15 11:07:35 +0100476 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassb022ead2012-01-17 08:20:50 +0000477 break;
478
479 /* Have we run out of nodes to add? */
480 if (j == maxcount)
481 break;
482
483 assert(!node_list[i]);
484 node_list[i] = nodes[j++];
485 if (i >= num_found)
486 num_found = i + 1;
487 }
488 }
489
490 return num_found;
491}
492
Simon Glass9908ad42014-07-23 06:55:09 -0600493int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
494 int *seqp)
495{
496 int base_len = strlen(base);
497 const char *find_name;
498 int find_namelen;
499 int prop_offset;
500 int aliases;
501
502 find_name = fdt_get_name(blob, offset, &find_namelen);
503 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
504
505 aliases = fdt_path_offset(blob, "/aliases");
506 for (prop_offset = fdt_first_property_offset(blob, aliases);
507 prop_offset > 0;
508 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
509 const char *prop;
510 const char *name;
511 const char *slash;
Simon Glass4aaa4602015-06-23 15:39:08 -0600512 int len, val;
Simon Glass9908ad42014-07-23 06:55:09 -0600513
514 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
515 debug(" - %s, %s\n", name, prop);
516 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
517 strncmp(name, base, base_len))
518 continue;
519
520 slash = strrchr(prop, '/');
521 if (strcmp(slash + 1, find_name))
522 continue;
Aswath Govindraju3dd81252020-12-03 10:55:45 +0530523
524 /*
525 * Adding an extra check to distinguish DT nodes with
526 * same name
527 */
Simon Glass42d97e52022-12-21 16:08:28 -0700528 if (IS_ENABLED(CONFIG_PHANDLE_CHECK_SEQ)) {
529 if (fdt_get_phandle(blob, offset) !=
530 fdt_get_phandle(blob, fdt_path_offset(blob, prop)))
531 continue;
532 }
Aswath Govindraju3dd81252020-12-03 10:55:45 +0530533
Simon Glass4aaa4602015-06-23 15:39:08 -0600534 val = trailing_strtol(name);
535 if (val != -1) {
536 *seqp = val;
537 debug("Found seq %d\n", *seqp);
538 return 0;
Simon Glass9908ad42014-07-23 06:55:09 -0600539 }
540 }
541
542 debug("Not found\n");
543 return -ENOENT;
544}
545
Michal Simek4b586672019-01-31 16:30:58 +0100546int fdtdec_get_alias_highest_id(const void *blob, const char *base)
547{
548 int base_len = strlen(base);
549 int prop_offset;
550 int aliases;
551 int max = -1;
552
553 debug("Looking for highest alias id for '%s'\n", base);
554
555 aliases = fdt_path_offset(blob, "/aliases");
556 for (prop_offset = fdt_first_property_offset(blob, aliases);
557 prop_offset > 0;
558 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
559 const char *prop;
560 const char *name;
561 int len, val;
562
563 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
564 debug(" - %s, %s\n", name, prop);
565 if (*prop != '/' || prop[len - 1] ||
566 strncmp(name, base, base_len))
567 continue;
568
569 val = trailing_strtol(name);
570 if (val > max) {
571 debug("Found seq %d\n", val);
572 max = val;
573 }
574 }
575
576 return max;
577}
578
Simon Glass088dccb2015-10-17 19:41:14 -0600579const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
Simon Glass1e374fb2014-09-04 16:27:24 -0600580{
Simon Glass1e374fb2014-09-04 16:27:24 -0600581 int chosen_node;
Simon Glass1e374fb2014-09-04 16:27:24 -0600582
583 if (!blob)
Simon Glass088dccb2015-10-17 19:41:14 -0600584 return NULL;
Simon Glass1e374fb2014-09-04 16:27:24 -0600585 chosen_node = fdt_path_offset(blob, "/chosen");
Simon Glass088dccb2015-10-17 19:41:14 -0600586 return fdt_getprop(blob, chosen_node, name, NULL);
587}
588
589int fdtdec_get_chosen_node(const void *blob, const char *name)
590{
591 const char *prop;
592
593 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glass1e374fb2014-09-04 16:27:24 -0600594 if (!prop)
595 return -FDT_ERR_NOTFOUND;
596 return fdt_path_offset(blob, prop);
597}
598
Simon Glass84137372022-12-21 16:08:19 -0700599/**
600 * fdtdec_prepare_fdt() - Check we have a valid fdt available to control U-Boot
601 *
Simon Glass2c62a942022-12-21 16:08:20 -0700602 * @blob: Blob to check
603 *
Simon Glass84137372022-12-21 16:08:19 -0700604 * If not, a message is printed to the console if the console is ready.
605 *
606 * Return: 0 if all ok, -ENOENT if not
Simon Glass2d2af852011-10-24 19:15:32 +0000607 */
Simon Glass2c62a942022-12-21 16:08:20 -0700608static int fdtdec_prepare_fdt(const void *blob)
Simon Glass2d2af852011-10-24 19:15:32 +0000609{
Simon Glass2c62a942022-12-21 16:08:20 -0700610 if (!blob || ((uintptr_t)blob & 3) || fdt_check_header(blob)) {
Simon Glassd4dce4a2024-09-29 19:49:36 -0600611 if (xpl_phase() <= PHASE_SPL) {
Simon Glass84137372022-12-21 16:08:19 -0700612 puts("Missing DTB\n");
613 } else {
614 printf("No valid device tree binary found at %p\n",
Simon Glass2c62a942022-12-21 16:08:20 -0700615 blob);
616 if (_DEBUG && blob) {
617 printf("fdt_blob=%p\n", blob);
618 print_buffer((ulong)blob, blob, 4, 32, 0);
Simon Glass84137372022-12-21 16:08:19 -0700619 }
Simon Glass63884ec2015-06-23 15:39:09 -0600620 }
Simon Glass84137372022-12-21 16:08:19 -0700621 return -ENOENT;
Simon Glass1691f692012-03-28 10:08:24 +0000622 }
Simon Glass84137372022-12-21 16:08:19 -0700623
Simon Glass2d2af852011-10-24 19:15:32 +0000624 return 0;
625}
Simon Glassc4697362012-02-27 10:52:35 +0000626
Simon Glassfa3f52d2022-12-21 16:08:18 -0700627int fdtdec_check_fdt(void)
628{
629 /*
630 * We must have an FDT, but we cannot panic() yet since the console
631 * is not ready. So for now, just assert(). Boards which need an early
632 * FDT (prior to console ready) will need to make their own
633 * arrangements and do their own checks.
634 */
Simon Glass2c62a942022-12-21 16:08:20 -0700635 assert(!fdtdec_prepare_fdt(gd->fdt_blob));
Simon Glassfa3f52d2022-12-21 16:08:18 -0700636 return 0;
637}
638
Simon Glassc4697362012-02-27 10:52:35 +0000639int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
640{
641 const u32 *phandle;
642 int lookup;
643
Simon Glassc8c86dd2012-07-12 05:25:01 +0000644 debug("%s: %s\n", __func__, prop_name);
Simon Glassc4697362012-02-27 10:52:35 +0000645 phandle = fdt_getprop(blob, node, prop_name, NULL);
646 if (!phandle)
647 return -FDT_ERR_NOTFOUND;
648
649 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
650 return lookup;
651}
652
653/**
654 * Look up a property in a node and check that it has a minimum length.
655 *
656 * @param blob FDT blob
657 * @param node node to examine
658 * @param prop_name name of property to find
659 * @param min_len minimum property length in bytes
660 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
661 found, or -FDT_ERR_BADLAYOUT if not enough data
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100662 * Return: pointer to cell, which is only valid if err == 0
Simon Glassc4697362012-02-27 10:52:35 +0000663 */
664static const void *get_prop_check_min_len(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100665 const char *prop_name, int min_len,
666 int *err)
Simon Glassc4697362012-02-27 10:52:35 +0000667{
668 const void *cell;
669 int len;
670
671 debug("%s: %s\n", __func__, prop_name);
672 cell = fdt_getprop(blob, node, prop_name, &len);
673 if (!cell)
674 *err = -FDT_ERR_NOTFOUND;
675 else if (len < min_len)
676 *err = -FDT_ERR_BADLAYOUT;
677 else
678 *err = 0;
679 return cell;
680}
681
682int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100683 u32 *array, int count)
Simon Glassc4697362012-02-27 10:52:35 +0000684{
685 const u32 *cell;
Mario Six6abfbc82018-01-15 11:07:36 +0100686 int err = 0;
Simon Glassc4697362012-02-27 10:52:35 +0000687
688 debug("%s: %s\n", __func__, prop_name);
689 cell = get_prop_check_min_len(blob, node, prop_name,
690 sizeof(u32) * count, &err);
691 if (!err) {
Mario Six6abfbc82018-01-15 11:07:36 +0100692 int i;
693
Simon Glassc4697362012-02-27 10:52:35 +0000694 for (i = 0; i < count; i++)
695 array[i] = fdt32_to_cpu(cell[i]);
696 }
697 return err;
698}
699
Simon Glasseda0c3f2014-11-10 18:00:19 -0700700int fdtdec_get_int_array_count(const void *blob, int node,
701 const char *prop_name, u32 *array, int count)
702{
703 const u32 *cell;
704 int len, elems;
705 int i;
706
707 debug("%s: %s\n", __func__, prop_name);
708 cell = fdt_getprop(blob, node, prop_name, &len);
709 if (!cell)
710 return -FDT_ERR_NOTFOUND;
711 elems = len / sizeof(u32);
712 if (count > elems)
713 count = elems;
714 for (i = 0; i < count; i++)
715 array[i] = fdt32_to_cpu(cell[i]);
716
717 return count;
718}
719
Simon Glass744ec232012-04-02 13:18:41 +0000720const u32 *fdtdec_locate_array(const void *blob, int node,
721 const char *prop_name, int count)
722{
723 const u32 *cell;
724 int err;
725
726 cell = get_prop_check_min_len(blob, node, prop_name,
727 sizeof(u32) * count, &err);
728 return err ? NULL : cell;
729}
730
Simon Glassc4697362012-02-27 10:52:35 +0000731int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
732{
733 const s32 *cell;
734 int len;
735
736 debug("%s: %s\n", __func__, prop_name);
737 cell = fdt_getprop(blob, node, prop_name, &len);
738 return cell != NULL;
739}
Simon Glass0d83c4d2012-02-27 10:52:36 +0000740
Simon Glassb491e9c2015-01-05 20:05:26 -0700741int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
742 const char *list_name,
743 const char *cells_name,
744 int cell_count, int index,
745 struct fdtdec_phandle_args *out_args)
746{
747 const __be32 *list, *list_end;
748 int rc = 0, size, cur_index = 0;
749 uint32_t count = 0;
750 int node = -1;
751 int phandle;
752
753 /* Retrieve the phandle list property */
754 list = fdt_getprop(blob, src_node, list_name, &size);
755 if (!list)
756 return -ENOENT;
757 list_end = list + size / sizeof(*list);
758
759 /* Loop over the phandles until all the requested entry is found */
760 while (list < list_end) {
761 rc = -EINVAL;
762 count = 0;
763
764 /*
765 * If phandle is 0, then it is an empty entry with no
766 * arguments. Skip forward to the next entry.
767 */
768 phandle = be32_to_cpup(list++);
769 if (phandle) {
770 /*
771 * Find the provider node and parse the #*-cells
772 * property to determine the argument length.
773 *
774 * This is not needed if the cell count is hard-coded
775 * (i.e. cells_name not set, but cell_count is set),
776 * except when we're going to return the found node
777 * below.
778 */
779 if (cells_name || cur_index == index) {
780 node = fdt_node_offset_by_phandle(blob,
781 phandle);
Patrick Delaunayf9cbd1a2020-09-25 09:41:15 +0200782 if (node < 0) {
Simon Glassb491e9c2015-01-05 20:05:26 -0700783 debug("%s: could not find phandle\n",
784 fdt_get_name(blob, src_node,
785 NULL));
786 goto err;
787 }
788 }
789
790 if (cells_name) {
791 count = fdtdec_get_int(blob, node, cells_name,
792 -1);
793 if (count == -1) {
794 debug("%s: could not get %s for %s\n",
795 fdt_get_name(blob, src_node,
796 NULL),
797 cells_name,
798 fdt_get_name(blob, node,
799 NULL));
800 goto err;
801 }
802 } else {
803 count = cell_count;
804 }
805
806 /*
807 * Make sure that the arguments actually fit in the
808 * remaining property data length
809 */
810 if (list + count > list_end) {
811 debug("%s: arguments longer than property\n",
812 fdt_get_name(blob, src_node, NULL));
813 goto err;
814 }
815 }
816
817 /*
818 * All of the error cases above bail out of the loop, so at
819 * this point, the parsing is successful. If the requested
820 * index matches, then fill the out_args structure and return,
821 * or return -ENOENT for an empty entry.
822 */
823 rc = -ENOENT;
824 if (cur_index == index) {
825 if (!phandle)
826 goto err;
827
828 if (out_args) {
829 int i;
830
831 if (count > MAX_PHANDLE_ARGS) {
832 debug("%s: too many arguments %d\n",
833 fdt_get_name(blob, src_node,
834 NULL), count);
835 count = MAX_PHANDLE_ARGS;
836 }
837 out_args->node = node;
838 out_args->args_count = count;
839 for (i = 0; i < count; i++) {
840 out_args->args[i] =
841 be32_to_cpup(list++);
842 }
843 }
844
845 /* Found it! return success */
846 return 0;
847 }
848
849 node = -1;
850 list += count;
851 cur_index++;
852 }
853
854 /*
855 * Result will be one of:
856 * -ENOENT : index is for empty phandle
857 * -EINVAL : parsing error on data
858 * [1..n] : Number of phandle (count mode; when index = -1)
859 */
860 rc = index < 0 ? cur_index : -ENOENT;
861 err:
862 return rc;
863}
864
Anton Stafff2305ec2012-04-17 09:01:28 +0000865int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100866 u8 *array, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000867{
868 const u8 *cell;
869 int err;
870
871 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
872 if (!err)
873 memcpy(array, cell, count);
874 return err;
875}
876
877const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100878 const char *prop_name, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000879{
880 const u8 *cell;
881 int err;
882
883 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
884 if (err)
885 return NULL;
886 return cell;
887}
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000888
Simon Glass9ffbe332015-03-05 12:25:14 -0700889u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Redinga937b802014-08-26 17:33:53 +0200890{
891 u64 number = 0;
892
893 while (cells--)
894 number = (number << 32) | fdt32_to_cpu(*ptr++);
895
896 return number;
897}
898
899int fdt_get_resource(const void *fdt, int node, const char *property,
900 unsigned int index, struct fdt_resource *res)
901{
902 const fdt32_t *ptr, *end;
903 int na, ns, len, parent;
904 unsigned int i = 0;
905
906 parent = fdt_parent_offset(fdt, node);
907 if (parent < 0)
908 return parent;
909
910 na = fdt_address_cells(fdt, parent);
911 ns = fdt_size_cells(fdt, parent);
912
913 ptr = fdt_getprop(fdt, node, property, &len);
914 if (!ptr)
915 return len;
916
917 end = ptr + len / sizeof(*ptr);
918
919 while (ptr + na + ns <= end) {
920 if (i == index) {
Patrick Delaunay2a28c6e2021-04-06 09:38:06 +0200921 if (CONFIG_IS_ENABLED(OF_TRANSLATE))
922 res->start = fdt_translate_address(fdt, node, ptr);
923 else
924 res->start = fdtdec_get_number(ptr, na);
925
Mario Six6abfbc82018-01-15 11:07:36 +0100926 res->end = res->start;
Thierry Redinga937b802014-08-26 17:33:53 +0200927 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
928 return 0;
929 }
930
931 ptr += na + ns;
932 i++;
933 }
934
935 return -FDT_ERR_NOTFOUND;
936}
937
938int fdt_get_named_resource(const void *fdt, int node, const char *property,
939 const char *prop_names, const char *name,
940 struct fdt_resource *res)
941{
942 int index;
943
Simon Glassb0ea7402016-10-02 17:59:28 -0600944 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Redinga937b802014-08-26 17:33:53 +0200945 if (index < 0)
946 return index;
947
948 return fdt_get_resource(fdt, node, property, index, res);
949}
Thierry Reding24856312014-08-26 17:33:54 +0200950
Simon Glassb24e8642015-04-14 21:03:21 -0600951static int decode_timing_property(const void *blob, int node, const char *name,
952 struct timing_entry *result)
953{
954 int length, ret = 0;
955 const u32 *prop;
956
957 prop = fdt_getprop(blob, node, name, &length);
958 if (!prop) {
959 debug("%s: could not find property %s\n",
960 fdt_get_name(blob, node, NULL), name);
961 return length;
962 }
963
964 if (length == sizeof(u32)) {
965 result->typ = fdtdec_get_int(blob, node, name, 0);
966 result->min = result->typ;
967 result->max = result->typ;
968 } else {
969 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
970 }
971
972 return ret;
973}
974
975int fdtdec_decode_display_timing(const void *blob, int parent, int index,
976 struct display_timing *dt)
977{
978 int i, node, timings_node;
979 u32 val = 0;
980 int ret = 0;
981
982 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
983 if (timings_node < 0)
984 return timings_node;
985
986 for (i = 0, node = fdt_first_subnode(blob, timings_node);
987 node > 0 && i != index;
988 node = fdt_next_subnode(blob, node))
989 i++;
990
991 if (node < 0)
992 return node;
993
994 memset(dt, 0, sizeof(*dt));
995
996 ret |= decode_timing_property(blob, node, "hback-porch",
997 &dt->hback_porch);
998 ret |= decode_timing_property(blob, node, "hfront-porch",
999 &dt->hfront_porch);
1000 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1001 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1002 ret |= decode_timing_property(blob, node, "vback-porch",
1003 &dt->vback_porch);
1004 ret |= decode_timing_property(blob, node, "vfront-porch",
1005 &dt->vfront_porch);
1006 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1007 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1008 ret |= decode_timing_property(blob, node, "clock-frequency",
1009 &dt->pixelclock);
1010
1011 dt->flags = 0;
1012 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1013 if (val != -1) {
1014 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1015 DISPLAY_FLAGS_VSYNC_LOW;
1016 }
1017 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1018 if (val != -1) {
1019 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1020 DISPLAY_FLAGS_HSYNC_LOW;
1021 }
1022 val = fdtdec_get_int(blob, node, "de-active", -1);
1023 if (val != -1) {
1024 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1025 DISPLAY_FLAGS_DE_LOW;
1026 }
1027 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1028 if (val != -1) {
1029 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1030 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1031 }
1032
1033 if (fdtdec_get_bool(blob, node, "interlaced"))
1034 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1035 if (fdtdec_get_bool(blob, node, "doublescan"))
1036 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1037 if (fdtdec_get_bool(blob, node, "doubleclk"))
1038 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1039
Simon Glass6eb90e12016-05-05 07:28:21 -06001040 return ret;
Simon Glassb24e8642015-04-14 21:03:21 -06001041}
1042
Michal Simek43ba85b2020-07-10 13:16:50 +02001043int fdtdec_setup_mem_size_base(void)
Nathan Rossiba97b722016-12-19 00:03:34 +10001044{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001045 int ret;
1046 ofnode mem;
1047 struct resource res;
Nathan Rossiba97b722016-12-19 00:03:34 +10001048
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001049 mem = ofnode_path("/memory");
1050 if (!ofnode_valid(mem)) {
Nathan Rossiba97b722016-12-19 00:03:34 +10001051 debug("%s: Missing /memory node\n", __func__);
1052 return -EINVAL;
1053 }
1054
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001055 ret = ofnode_read_resource(mem, 0, &res);
Nathan Rossiba97b722016-12-19 00:03:34 +10001056 if (ret != 0) {
1057 debug("%s: Unable to decode first memory bank\n", __func__);
1058 return -EINVAL;
1059 }
1060
1061 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +05301062 gd->ram_base = (unsigned long)res.start;
Simon Glass640b78f2017-05-27 07:38:13 -06001063 debug("%s: Initial DRAM size %llx\n", __func__,
1064 (unsigned long long)gd->ram_size);
Nathan Rossiba97b722016-12-19 00:03:34 +10001065
1066 return 0;
1067}
1068
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001069ofnode get_next_memory_node(ofnode mem)
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001070{
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001071 do {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001072 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
Simon Glass2e4938b2022-09-06 20:27:17 -06001073 } while (!ofnode_is_enabled(mem));
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001074
1075 return mem;
1076}
1077
Michal Simekf7833292020-07-10 13:16:49 +02001078int fdtdec_setup_memory_banksize(void)
Nathan Rossiba97b722016-12-19 00:03:34 +10001079{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001080 int bank, ret, reg = 0;
1081 struct resource res;
1082 ofnode mem = ofnode_null();
Nathan Rossiba97b722016-12-19 00:03:34 +10001083
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001084 mem = get_next_memory_node(mem);
1085 if (!ofnode_valid(mem)) {
Michal Simek0bd065c2018-10-03 15:53:52 +02001086 debug("%s: Missing /memory node\n", __func__);
1087 return -EINVAL;
1088 }
Nathan Rossiba97b722016-12-19 00:03:34 +10001089
1090 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001091 ret = ofnode_read_resource(mem, reg++, &res);
1092 if (ret < 0) {
Marek Vasut7f0293a2017-11-27 05:32:42 +01001093 reg = 0;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001094 mem = get_next_memory_node(mem);
Marek Vasut253c1a42020-09-12 12:42:52 +02001095 if (!ofnode_valid(mem))
Michal Simek0bd065c2018-10-03 15:53:52 +02001096 break;
1097
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001098 ret = ofnode_read_resource(mem, reg++, &res);
1099 if (ret < 0)
Michal Simek0bd065c2018-10-03 15:53:52 +02001100 break;
1101 }
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001102
1103 if (ret != 0)
Michal Simek0bd065c2018-10-03 15:53:52 +02001104 return -EINVAL;
Nathan Rossiba97b722016-12-19 00:03:34 +10001105
1106 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1107 gd->bd->bi_dram[bank].size =
1108 (phys_size_t)(res.end - res.start + 1);
1109
1110 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1111 __func__, bank,
1112 (unsigned long long)gd->bd->bi_dram[bank].start,
1113 (unsigned long long)gd->bd->bi_dram[bank].size);
1114 }
1115
1116 return 0;
1117}
Michal Simek9d2cf072020-07-09 14:09:52 +02001118
1119int fdtdec_setup_mem_size_base_lowest(void)
1120{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001121 int bank, ret, reg = 0;
1122 struct resource res;
Michal Simek9d2cf072020-07-09 14:09:52 +02001123 unsigned long base;
1124 phys_size_t size;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001125 ofnode mem = ofnode_null();
Michal Simek9d2cf072020-07-09 14:09:52 +02001126
1127 gd->ram_base = (unsigned long)~0;
1128
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001129 mem = get_next_memory_node(mem);
1130 if (!ofnode_valid(mem)) {
Michal Simek9d2cf072020-07-09 14:09:52 +02001131 debug("%s: Missing /memory node\n", __func__);
1132 return -EINVAL;
1133 }
1134
1135 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001136 ret = ofnode_read_resource(mem, reg++, &res);
1137 if (ret < 0) {
Michal Simek9d2cf072020-07-09 14:09:52 +02001138 reg = 0;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001139 mem = get_next_memory_node(mem);
Marek Vasut253c1a42020-09-12 12:42:52 +02001140 if (!ofnode_valid(mem))
Michal Simek9d2cf072020-07-09 14:09:52 +02001141 break;
1142
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001143 ret = ofnode_read_resource(mem, reg++, &res);
1144 if (ret < 0)
Michal Simek9d2cf072020-07-09 14:09:52 +02001145 break;
1146 }
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001147
Michal Simek9d2cf072020-07-09 14:09:52 +02001148 if (ret != 0)
1149 return -EINVAL;
1150
1151 base = (unsigned long)res.start;
1152 size = (phys_size_t)(res.end - res.start + 1);
1153
1154 if (gd->ram_base > base && size) {
1155 gd->ram_base = base;
1156 gd->ram_size = size;
1157 debug("%s: Initial DRAM base %lx size %lx\n",
1158 __func__, base, (unsigned long)size);
1159 }
1160 }
1161
1162 return 0;
1163}
Nathan Rossiba97b722016-12-19 00:03:34 +10001164
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001165static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1166{
Simon Glass69daf5a2021-12-16 20:59:25 -07001167#if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1168 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
Marek Vasutaeaa29d2019-03-08 16:06:55 +01001169 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut42e5c032019-03-13 21:11:22 +01001170 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001171 ulong sz_in = sz_src;
1172 void *dst;
1173 int rc;
1174
Lad Prabhakar9ac02ef2024-10-01 10:56:47 +01001175 if (CONFIG_IS_ENABLED(GZIP) && CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP))
Marek Vasut42e5c032019-03-13 21:11:22 +01001176 if (gzip_parse_header(src, sz_in) >= 0)
1177 gzip = 1;
Lad Prabhakar9ac02ef2024-10-01 10:56:47 +01001178 if (CONFIG_IS_ENABLED(LZO) && CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO))
Marek Vasut42e5c032019-03-13 21:11:22 +01001179 if (!gzip && lzop_is_valid_header(src))
1180 lzo = 1;
1181
1182 if (!gzip && !lzo)
1183 return -EBADMSG;
1184
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001185 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1186 dst = malloc(sz_out);
1187 if (!dst) {
1188 puts("uncompress_blob: Unable to allocate memory\n");
1189 return -ENOMEM;
1190 }
1191 } else {
Simon Glass69daf5a2021-12-16 20:59:25 -07001192# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001193 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
Simon Glass69daf5a2021-12-16 20:59:25 -07001194# else
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001195 return -ENOTSUPP;
Simon Glass69daf5a2021-12-16 20:59:25 -07001196# endif
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001197 }
1198
Marek Vasut42e5c032019-03-13 21:11:22 +01001199 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001200 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut42e5c032019-03-13 21:11:22 +01001201 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001202 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut42e5c032019-03-13 21:11:22 +01001203 else
1204 hang();
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001205
1206 if (rc < 0) {
1207 /* not a valid compressed blob */
1208 puts("uncompress_blob: Unable to uncompress\n");
1209 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1210 free(dst);
1211 return -EBADMSG;
1212 }
1213 *dstp = dst;
Simon Glass69daf5a2021-12-16 20:59:25 -07001214#else
1215 *dstp = (void *)src;
Marek Vasut5bd49fb2018-10-18 20:37:05 +02001216 *dstp = (void *)src;
Simon Glass69daf5a2021-12-16 20:59:25 -07001217#endif
Marek Vasut5bd49fb2018-10-18 20:37:05 +02001218 return 0;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001219}
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001220
Simon Glass28b76512021-12-16 20:59:31 -07001221/**
1222 * fdt_find_separate() - Find a devicetree at the end of the image
1223 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001224 * Return: pointer to FDT blob
Rob Clark974dcac2018-01-10 11:34:37 +01001225 */
Simon Glass28b76512021-12-16 20:59:31 -07001226static void *fdt_find_separate(void)
Rob Clark974dcac2018-01-10 11:34:37 +01001227{
1228 void *fdt_blob = NULL;
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001229
Simon Glassdf5f4382022-02-28 12:08:24 -07001230 if (IS_ENABLED(CONFIG_SANDBOX))
1231 return NULL;
1232
Simon Glass0e84d962024-09-29 19:49:50 -06001233#ifdef CONFIG_XPL_BUILD
Rob Clark974dcac2018-01-10 11:34:37 +01001234 /* FDT is at end of BSS unless it is in a different memory region */
Simon Glassd6fce7d2024-09-20 09:24:28 +02001235 if (CONFIG_IS_ENABLED(SEPARATE_BSS))
Shiji Yangeff11fa2023-08-03 09:47:17 +08001236 fdt_blob = (ulong *)_image_binary_end;
Rob Clark974dcac2018-01-10 11:34:37 +01001237 else
Shiji Yangeff11fa2023-08-03 09:47:17 +08001238 fdt_blob = (ulong *)__bss_end;
Rob Clark974dcac2018-01-10 11:34:37 +01001239#else
1240 /* FDT is at end of image */
Shiji Yangeff11fa2023-08-03 09:47:17 +08001241 fdt_blob = (ulong *)_end;
Simon Glass7e87afb2022-12-21 16:08:21 -07001242
1243 if (_DEBUG && !fdtdec_prepare_fdt(fdt_blob)) {
1244 int stack_ptr;
1245 const void *top = fdt_blob + fdt_totalsize(fdt_blob);
1246
1247 /*
1248 * Perform a sanity check on the memory layout. If this fails,
1249 * it indicates that the device tree is positioned above the
1250 * global data pointer or the stack pointer. This should not
1251 * happen.
1252 *
1253 * If this fails, check that SYS_INIT_SP_ADDR has enough space
1254 * below it for SYS_MALLOC_F_LEN and global_data, as well as the
1255 * stack, without overwriting the device tree or U-Boot itself.
1256 * Since the device tree is sitting at _end (the start of the
1257 * BSS region), we need the top of the device tree to be below
1258 * any memory allocated by board_init_f_alloc_reserve().
1259 */
1260 if (top > (void *)gd || top > (void *)&stack_ptr) {
1261 printf("FDT %p gd %p\n", fdt_blob, gd);
1262 panic("FDT overlap");
1263 }
1264 }
Rob Clark974dcac2018-01-10 11:34:37 +01001265#endif
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001266
Rob Clark974dcac2018-01-10 11:34:37 +01001267 return fdt_blob;
1268}
Rob Clark974dcac2018-01-10 11:34:37 +01001269
Thierry Reding1bb59a92019-04-15 11:32:13 +02001270int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1271{
1272 const char *path;
1273 int offset, err;
1274
1275 if (!is_valid_ethaddr(mac))
1276 return -EINVAL;
1277
1278 path = fdt_get_alias(fdt, "ethernet");
1279 if (!path)
1280 return 0;
1281
1282 debug("ethernet alias found: %s\n", path);
1283
1284 offset = fdt_path_offset(fdt, path);
1285 if (offset < 0) {
1286 debug("ethernet alias points to absent node %s\n", path);
1287 return -ENOENT;
1288 }
1289
1290 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1291 if (err < 0)
1292 return err;
1293
1294 debug("MAC address: %pM\n", mac);
1295
1296 return 0;
1297}
1298
Thierry Redinge8dfad42019-03-21 19:10:02 +01001299static int fdtdec_init_reserved_memory(void *blob)
1300{
1301 int na, ns, node, err;
1302 fdt32_t value;
1303
1304 /* inherit #address-cells and #size-cells from the root node */
1305 na = fdt_address_cells(blob, 0);
1306 ns = fdt_size_cells(blob, 0);
1307
1308 node = fdt_add_subnode(blob, 0, "reserved-memory");
1309 if (node < 0)
1310 return node;
1311
1312 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1313 if (err < 0)
1314 return err;
1315
1316 value = cpu_to_fdt32(ns);
1317
1318 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1319 if (err < 0)
1320 return err;
1321
1322 value = cpu_to_fdt32(na);
1323
1324 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1325 if (err < 0)
1326 return err;
1327
1328 return node;
1329}
1330
1331int fdtdec_add_reserved_memory(void *blob, const char *basename,
1332 const struct fdt_memory *carveout,
Thierry Reding5e336912021-09-03 15:16:19 +02001333 const char **compatibles, unsigned int count,
Thierry Redingbedc4392021-09-03 15:16:21 +02001334 uint32_t *phandlep, unsigned long flags)
Thierry Redinge8dfad42019-03-21 19:10:02 +01001335{
1336 fdt32_t cells[4] = {}, *ptr = cells;
1337 uint32_t upper, lower, phandle;
1338 int parent, node, na, ns, err;
Thierry Reding26130012019-04-15 10:08:21 +02001339 fdt_size_t size;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001340 char name[64];
1341
1342 /* create an empty /reserved-memory node if one doesn't exist */
1343 parent = fdt_path_offset(blob, "/reserved-memory");
1344 if (parent < 0) {
1345 parent = fdtdec_init_reserved_memory(blob);
1346 if (parent < 0)
1347 return parent;
1348 }
1349
1350 /* only 1 or 2 #address-cells and #size-cells are supported */
1351 na = fdt_address_cells(blob, parent);
1352 if (na < 1 || na > 2)
1353 return -FDT_ERR_BADNCELLS;
1354
1355 ns = fdt_size_cells(blob, parent);
1356 if (ns < 1 || ns > 2)
1357 return -FDT_ERR_BADNCELLS;
1358
1359 /* find a matching node and return the phandle to that */
1360 fdt_for_each_subnode(node, blob, parent) {
1361 const char *name = fdt_get_name(blob, node, NULL);
Bin Menga26ad7a2020-05-19 23:38:32 -07001362 fdt_addr_t addr;
1363 fdt_size_t size;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001364
Bin Meng32d294b2020-05-19 23:38:33 -07001365 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1366 &size, false);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001367 if (addr == FDT_ADDR_T_NONE) {
1368 debug("failed to read address/size for %s\n", name);
1369 continue;
1370 }
1371
Atish Patrab57af062020-04-21 11:15:00 -07001372 if (addr == carveout->start && (addr + size - 1) ==
1373 carveout->end) {
Heiko Stuebner49723ac2019-10-23 16:46:38 +02001374 if (phandlep)
1375 *phandlep = fdt_get_phandle(blob, node);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001376 return 0;
1377 }
1378 }
1379
1380 /*
1381 * Unpack the start address and generate the name of the new node
1382 * base on the basename and the unit-address.
1383 */
Thierry Reding26130012019-04-15 10:08:21 +02001384 upper = upper_32_bits(carveout->start);
1385 lower = lower_32_bits(carveout->start);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001386
1387 if (na > 1 && upper > 0)
1388 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1389 lower);
1390 else {
1391 if (upper > 0) {
1392 debug("address %08x:%08x exceeds addressable space\n",
1393 upper, lower);
1394 return -FDT_ERR_BADVALUE;
1395 }
1396
1397 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1398 }
1399
1400 node = fdt_add_subnode(blob, parent, name);
1401 if (node < 0)
1402 return node;
1403
Thierry Redingbedc4392021-09-03 15:16:21 +02001404 if (flags & FDTDEC_RESERVED_MEMORY_NO_MAP) {
1405 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1406 if (err < 0)
1407 return err;
1408 }
1409
Heiko Stuebner754302f2019-10-23 16:46:39 +02001410 if (phandlep) {
1411 err = fdt_generate_phandle(blob, &phandle);
1412 if (err < 0)
1413 return err;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001414
Heiko Stuebner754302f2019-10-23 16:46:39 +02001415 err = fdtdec_set_phandle(blob, node, phandle);
1416 if (err < 0)
1417 return err;
1418 }
Thierry Redinge8dfad42019-03-21 19:10:02 +01001419
1420 /* store one or two address cells */
1421 if (na > 1)
1422 *ptr++ = cpu_to_fdt32(upper);
1423
1424 *ptr++ = cpu_to_fdt32(lower);
1425
1426 /* store one or two size cells */
Thierry Reding26130012019-04-15 10:08:21 +02001427 size = carveout->end - carveout->start + 1;
1428 upper = upper_32_bits(size);
1429 lower = lower_32_bits(size);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001430
1431 if (ns > 1)
1432 *ptr++ = cpu_to_fdt32(upper);
1433
1434 *ptr++ = cpu_to_fdt32(lower);
1435
1436 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1437 if (err < 0)
1438 return err;
1439
Thierry Reding5e336912021-09-03 15:16:19 +02001440 if (compatibles && count > 0) {
1441 size_t length = 0, len = 0;
1442 unsigned int i;
1443 char *buffer;
1444
1445 for (i = 0; i < count; i++)
1446 length += strlen(compatibles[i]) + 1;
1447
1448 buffer = malloc(length);
1449 if (!buffer)
1450 return -FDT_ERR_INTERNAL;
1451
1452 for (i = 0; i < count; i++)
1453 len += strlcpy(buffer + len, compatibles[i],
1454 length - len) + 1;
1455
1456 err = fdt_setprop(blob, node, "compatible", buffer, length);
1457 free(buffer);
1458 if (err < 0)
1459 return err;
1460 }
1461
Thierry Redinge8dfad42019-03-21 19:10:02 +01001462 /* return the phandle for the new node for the caller to use */
1463 if (phandlep)
1464 *phandlep = phandle;
1465
1466 return 0;
1467}
1468
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001469int fdtdec_get_carveout(const void *blob, const char *node,
1470 const char *prop_name, unsigned int index,
Thierry Reding5e336912021-09-03 15:16:19 +02001471 struct fdt_memory *carveout, const char **name,
Thierry Redingbedc4392021-09-03 15:16:21 +02001472 const char ***compatiblesp, unsigned int *countp,
1473 unsigned long *flags)
Thierry Redinge629b0d2019-03-21 19:10:03 +01001474{
1475 const fdt32_t *prop;
1476 uint32_t phandle;
1477 int offset, len;
1478 fdt_size_t size;
1479
1480 offset = fdt_path_offset(blob, node);
1481 if (offset < 0)
1482 return offset;
1483
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001484 prop = fdt_getprop(blob, offset, prop_name, &len);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001485 if (!prop) {
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001486 debug("failed to get %s for %s\n", prop_name, node);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001487 return -FDT_ERR_NOTFOUND;
1488 }
1489
1490 if ((len % sizeof(phandle)) != 0) {
1491 debug("invalid phandle property\n");
1492 return -FDT_ERR_BADPHANDLE;
1493 }
1494
1495 if (len < (sizeof(phandle) * (index + 1))) {
1496 debug("invalid phandle index\n");
Thierry Reding3dcc4cf2021-09-03 15:16:17 +02001497 return -FDT_ERR_NOTFOUND;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001498 }
1499
1500 phandle = fdt32_to_cpu(prop[index]);
1501
1502 offset = fdt_node_offset_by_phandle(blob, phandle);
1503 if (offset < 0) {
1504 debug("failed to find node for phandle %u\n", phandle);
1505 return offset;
1506 }
1507
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001508 if (name)
1509 *name = fdt_get_name(blob, offset, NULL);
1510
Thierry Reding5e336912021-09-03 15:16:19 +02001511 if (compatiblesp) {
1512 const char **compatibles = NULL;
1513 const char *start, *end, *ptr;
1514 unsigned int count = 0;
1515
1516 prop = fdt_getprop(blob, offset, "compatible", &len);
1517 if (!prop)
1518 goto skip_compat;
1519
1520 start = ptr = (const char *)prop;
1521 end = start + len;
1522
1523 while (ptr < end) {
1524 ptr = strchrnul(ptr, '\0');
1525 count++;
1526 ptr++;
1527 }
1528
1529 compatibles = malloc(sizeof(ptr) * count);
1530 if (!compatibles)
1531 return -FDT_ERR_INTERNAL;
1532
1533 ptr = start;
1534 count = 0;
1535
1536 while (ptr < end) {
1537 compatibles[count] = ptr;
1538 ptr = strchrnul(ptr, '\0');
1539 count++;
1540 ptr++;
1541 }
1542
1543skip_compat:
1544 *compatiblesp = compatibles;
1545
1546 if (countp)
1547 *countp = count;
1548 }
1549
Thierry Redinge629b0d2019-03-21 19:10:03 +01001550 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1551 "reg", 0, &size,
1552 true);
1553 if (carveout->start == FDT_ADDR_T_NONE) {
1554 debug("failed to read address/size from \"reg\" property\n");
1555 return -FDT_ERR_NOTFOUND;
1556 }
1557
1558 carveout->end = carveout->start + size - 1;
1559
Thierry Redingbedc4392021-09-03 15:16:21 +02001560 if (flags) {
1561 *flags = 0;
1562
1563 if (fdtdec_get_bool(blob, offset, "no-map"))
1564 *flags |= FDTDEC_RESERVED_MEMORY_NO_MAP;
1565 }
1566
Thierry Redinge629b0d2019-03-21 19:10:03 +01001567 return 0;
1568}
1569
1570int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Redingd6ad8072021-09-03 15:16:20 +02001571 unsigned int index, const struct fdt_memory *carveout,
1572 const char *name, const char **compatibles,
Thierry Redingbedc4392021-09-03 15:16:21 +02001573 unsigned int count, unsigned long flags)
Thierry Redinge629b0d2019-03-21 19:10:03 +01001574{
1575 uint32_t phandle;
Laurentiu Tudoref135222020-04-03 13:43:03 +03001576 int err, offset, len;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001577 fdt32_t value;
Laurentiu Tudoref135222020-04-03 13:43:03 +03001578 void *prop;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001579
Thierry Reding5e336912021-09-03 15:16:19 +02001580 err = fdtdec_add_reserved_memory(blob, name, carveout, compatibles,
Thierry Redingbedc4392021-09-03 15:16:21 +02001581 count, &phandle, flags);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001582 if (err < 0) {
1583 debug("failed to add reserved memory: %d\n", err);
1584 return err;
1585 }
1586
1587 offset = fdt_path_offset(blob, node);
1588 if (offset < 0) {
1589 debug("failed to find offset for node %s: %d\n", node, offset);
1590 return offset;
1591 }
1592
1593 value = cpu_to_fdt32(phandle);
1594
Laurentiu Tudoref135222020-04-03 13:43:03 +03001595 if (!fdt_getprop(blob, offset, prop_name, &len)) {
1596 if (len == -FDT_ERR_NOTFOUND)
1597 len = 0;
1598 else
1599 return len;
1600 }
1601
1602 if ((index + 1) * sizeof(value) > len) {
1603 err = fdt_setprop_placeholder(blob, offset, prop_name,
1604 (index + 1) * sizeof(value),
1605 &prop);
1606 if (err < 0) {
1607 debug("failed to resize reserved memory property: %s\n",
1608 fdt_strerror(err));
1609 return err;
1610 }
1611 }
1612
1613 err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1614 strlen(prop_name),
1615 index * sizeof(value),
1616 &value, sizeof(value));
Thierry Redinge629b0d2019-03-21 19:10:03 +01001617 if (err < 0) {
Laurentiu Tudoref135222020-04-03 13:43:03 +03001618 debug("failed to update %s property for node %s: %s\n",
1619 prop_name, node, fdt_strerror(err));
Thierry Redinge629b0d2019-03-21 19:10:03 +01001620 return err;
1621 }
1622
1623 return 0;
1624}
1625
Simon Glass37604392021-12-16 20:59:35 -07001626/* TODO(sjg@chromium.org): This function should not be weak */
Marek Vasutedeb6542020-04-11 21:18:59 +02001627__weak int fdtdec_board_setup(const void *fdt_blob)
1628{
1629 return 0;
1630}
1631
Simon Glasse1d46fa2021-12-16 20:59:24 -07001632/**
1633 * setup_multi_dtb_fit() - locate the correct dtb from a FIT
1634 *
1635 * This supports the CONFIG_MULTI_DTB_FIT feature, looking for the dtb in a
1636 * supplied FIT
1637 *
1638 * It accepts the current value of gd->fdt_blob, which points to the FIT, then
1639 * updates that gd->fdt_blob, to point to the chosen dtb so that U-Boot uses the
1640 * correct one
1641 */
1642static void setup_multi_dtb_fit(void)
1643{
Simon Glasse1d46fa2021-12-16 20:59:24 -07001644 void *blob;
1645
1646 /*
1647 * Try and uncompress the blob.
1648 * Unfortunately there is no way to know how big the input blob really
1649 * is. So let us set the maximum input size arbitrarily high. 16MB
1650 * ought to be more than enough for packed DTBs.
1651 */
1652 if (uncompress_blob(gd->fdt_blob, 0x1000000, &blob) == 0)
1653 gd->fdt_blob = blob;
1654
1655 /*
1656 * Check if blob is a FIT images containings DTBs.
1657 * If so, pick the most relevant
1658 */
1659 blob = locate_dtb_in_fit(gd->fdt_blob);
1660 if (blob) {
Simon Glass69daf5a2021-12-16 20:59:25 -07001661 gd_set_multi_dtb_fit(gd->fdt_blob);
Simon Glasse1d46fa2021-12-16 20:59:24 -07001662 gd->fdt_blob = blob;
Simon Glassbed6bc72021-12-16 20:59:33 -07001663 gd->fdt_src = FDTSRC_FIT;
Simon Glasse1d46fa2021-12-16 20:59:24 -07001664 }
Simon Glasse1d46fa2021-12-16 20:59:24 -07001665}
1666
Simon Glassa0877672015-02-27 22:06:35 -07001667int fdtdec_setup(void)
Simon Glass26b78b22015-02-27 22:06:34 -07001668{
Simon Glass4a30a572024-01-03 18:49:19 -07001669 int ret = -ENOENT;
Simon Glass2a3789b2021-12-16 20:59:30 -07001670
Simon Glass1a6d2e02024-07-31 08:49:05 -06001671 /*
1672 * If allowing a bloblist, check that first. There was discussion about
1673 * adding an OF_BLOBLIST Kconfig, but this was rejected.
1674 *
1675 * The necessary test is whether the previous phase passed a bloblist,
1676 * not whether this phase creates one.
1677 */
1678 if (CONFIG_IS_ENABLED(BLOBLIST) &&
Simon Glass6b7f9c02024-09-29 19:49:39 -06001679 (xpl_prev_phase() != PHASE_TPL ||
Simon Glass1a6d2e02024-07-31 08:49:05 -06001680 !IS_ENABLED(CONFIG_TPL_BLOBLIST))) {
Simon Glass4a30a572024-01-03 18:49:19 -07001681 ret = bloblist_maybe_init();
1682 if (!ret) {
1683 gd->fdt_blob = bloblist_find(BLOBLISTT_CONTROL_FDT, 0);
1684 if (gd->fdt_blob) {
1685 gd->fdt_src = FDTSRC_BLOBLIST;
1686 log_debug("Devicetree is in bloblist at %p\n",
1687 gd->fdt_blob);
Simon Glassed122842024-08-07 16:47:22 -06001688 ret = 0;
Simon Glass4a30a572024-01-03 18:49:19 -07001689 } else {
1690 log_debug("No FDT found in bloblist\n");
1691 ret = -ENOENT;
1692 }
1693 }
1694 }
1695
1696 /* Otherwise, the devicetree is typically appended to U-Boot */
1697 if (ret) {
1698 if (IS_ENABLED(CONFIG_OF_SEPARATE)) {
1699 gd->fdt_blob = fdt_find_separate();
1700 gd->fdt_src = FDTSRC_SEPARATE;
1701 } else { /* embed dtb in ELF file for testing / development */
1702 gd->fdt_blob = dtb_dt_embedded();
1703 gd->fdt_src = FDTSRC_EMBED;
1704 }
Simon Glassbed6bc72021-12-16 20:59:33 -07001705 }
Simon Glass28b76512021-12-16 20:59:31 -07001706
1707 /* Allow the board to override the fdt address. */
1708 if (IS_ENABLED(CONFIG_OF_BOARD)) {
Simon Glass2a3789b2021-12-16 20:59:30 -07001709 gd->fdt_blob = board_fdt_blob_setup(&ret);
Simon Glass4a30a572024-01-03 18:49:19 -07001710 if (!ret)
1711 gd->fdt_src = FDTSRC_BOARD;
1712 else if (ret != -EEXIST)
Simon Glass2a3789b2021-12-16 20:59:30 -07001713 return ret;
Simon Glass2a3789b2021-12-16 20:59:30 -07001714 }
1715
Simon Glassbed6bc72021-12-16 20:59:33 -07001716 /* Allow the early environment to override the fdt address */
Simon Glass0e84d962024-09-29 19:49:50 -06001717 if (!IS_ENABLED(CONFIG_XPL_BUILD)) {
Simon Glassbed6bc72021-12-16 20:59:33 -07001718 ulong addr;
1719
1720 addr = env_get_hex("fdtcontroladdr", 0);
1721 if (addr) {
1722 gd->fdt_blob = map_sysmem(addr, 0);
1723 gd->fdt_src = FDTSRC_ENV;
1724 }
Simon Glassbcafa8c2021-12-16 20:59:28 -07001725 }
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001726
Simon Glasse1d46fa2021-12-16 20:59:24 -07001727 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
1728 setup_multi_dtb_fit();
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001729
Simon Glass2c62a942022-12-21 16:08:20 -07001730 ret = fdtdec_prepare_fdt(gd->fdt_blob);
Marek Vasutedeb6542020-04-11 21:18:59 +02001731 if (!ret)
1732 ret = fdtdec_board_setup(gd->fdt_blob);
Simon Glassba8457b2022-09-06 20:27:19 -06001733 oftree_reset();
1734
Marek Vasutedeb6542020-04-11 21:18:59 +02001735 return ret;
Simon Glass26b78b22015-02-27 22:06:34 -07001736}
1737
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001738int fdtdec_resetup(int *rescan)
1739{
1740 void *fdt_blob;
1741
1742 /*
1743 * If the current DTB is part of a compressed FIT image,
1744 * try to locate the best match from the uncompressed
1745 * FIT image stillpresent there. Save the time and space
1746 * required to uncompress it again.
1747 */
Simon Glass69daf5a2021-12-16 20:59:25 -07001748 if (gd_multi_dtb_fit()) {
1749 fdt_blob = locate_dtb_in_fit(gd_multi_dtb_fit());
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001750
1751 if (fdt_blob == gd->fdt_blob) {
1752 /*
1753 * The best match did not change. no need to tear down
1754 * the DM and rescan the fdt.
1755 */
1756 *rescan = 0;
1757 return 0;
1758 }
1759
1760 *rescan = 1;
1761 gd->fdt_blob = fdt_blob;
Simon Glass2c62a942022-12-21 16:08:20 -07001762 return fdtdec_prepare_fdt(fdt_blob);
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001763 }
1764
1765 /*
1766 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1767 * not a FIT image containings DTB, but a single DTB. There is no need
1768 * to teard down DM and rescan the DT in this case.
1769 */
1770 *rescan = 0;
1771 return 0;
1772}
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001773
Michael Prattfa28d142018-06-11 13:07:09 -06001774int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +09001775 phys_addr_t *basep, phys_size_t *sizep,
1776 struct bd_info *bd)
Michael Prattfa28d142018-06-11 13:07:09 -06001777{
1778 int addr_cells, size_cells;
1779 const u32 *cell, *end;
1780 u64 total_size, size, addr;
1781 int node, child;
1782 bool auto_size;
1783 int bank;
1784 int len;
1785
1786 debug("%s: board_id=%d\n", __func__, board_id);
1787 if (!area)
1788 area = "/memory";
1789 node = fdt_path_offset(blob, area);
1790 if (node < 0) {
1791 debug("No %s node found\n", area);
1792 return -ENOENT;
1793 }
1794
1795 cell = fdt_getprop(blob, node, "reg", &len);
1796 if (!cell) {
1797 debug("No reg property found\n");
1798 return -ENOENT;
1799 }
1800
1801 addr_cells = fdt_address_cells(blob, node);
1802 size_cells = fdt_size_cells(blob, node);
1803
1804 /* Check the board id and mask */
1805 for (child = fdt_first_subnode(blob, node);
1806 child >= 0;
1807 child = fdt_next_subnode(blob, child)) {
1808 int match_mask, match_value;
1809
1810 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1811 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1812
1813 if (match_value >= 0 &&
1814 ((board_id & match_mask) == match_value)) {
1815 /* Found matching mask */
1816 debug("Found matching mask %d\n", match_mask);
1817 node = child;
1818 cell = fdt_getprop(blob, node, "reg", &len);
1819 if (!cell) {
1820 debug("No memory-banks property found\n");
1821 return -EINVAL;
1822 }
1823 break;
1824 }
1825 }
1826 /* Note: if no matching subnode was found we use the parent node */
1827
1828 if (bd) {
1829 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1830 CONFIG_NR_DRAM_BANKS);
1831 }
1832
1833 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1834
1835 total_size = 0;
1836 end = cell + len / 4 - addr_cells - size_cells;
1837 debug("cell at %p, end %p\n", cell, end);
1838 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1839 if (cell > end)
1840 break;
1841 addr = 0;
1842 if (addr_cells == 2)
1843 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1844 addr += fdt32_to_cpu(*cell++);
1845 if (bd)
1846 bd->bi_dram[bank].start = addr;
1847 if (basep && !bank)
1848 *basep = (phys_addr_t)addr;
1849
1850 size = 0;
1851 if (size_cells == 2)
1852 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1853 size += fdt32_to_cpu(*cell++);
1854
1855 if (auto_size) {
1856 u64 new_size;
1857
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001858 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Prattfa28d142018-06-11 13:07:09 -06001859 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1860 if (new_size == size) {
1861 debug("OK\n");
1862 } else {
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001863 debug("sized to %llx\n", new_size);
Michael Prattfa28d142018-06-11 13:07:09 -06001864 size = new_size;
1865 }
1866 }
1867
1868 if (bd)
1869 bd->bi_dram[bank].size = size;
1870 total_size += size;
1871 }
1872
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001873 debug("Memory size %llu\n", total_size);
Michael Prattfa28d142018-06-11 13:07:09 -06001874 if (sizep)
1875 *sizep = (phys_size_t)total_size;
1876
1877 return 0;
1878}
Michael Prattfa28d142018-06-11 13:07:09 -06001879
Simon Glass26b78b22015-02-27 22:06:34 -07001880#endif /* !USE_HOSTCC */