blob: 55cc95db5d0e9c4758d3dbe7d6f13ebc0bba2bb8 [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 Glass2d2af852011-10-24 19:15:32 +000010#include <common.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020011#include <boot_fit.h>
Simon Glass1ab16922022-07-31 12:28:48 -060012#include <display_options.h>
Simon Glassf1037ad2015-11-29 13:17:54 -070013#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070014#include <hang.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070015#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070017#include <malloc.h>
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <net.h>
Simon Glass84137372022-12-21 16:08:19 -070019#include <spl.h>
Simon Glass6eaea252019-08-01 09:46:48 -060020#include <env.h>
Simon Glass9908ad42014-07-23 06:55:09 -060021#include <errno.h>
Simon Glass2d2af852011-10-24 19:15:32 +000022#include <fdtdec.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020023#include <fdt_support.h>
Simon Glass1a974af2019-08-01 09:46:36 -060024#include <gzip.h>
Heinrich Schuchardt370a1762018-11-18 17:58:50 +010025#include <mapmem.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090026#include <linux/libfdt.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020027#include <serial.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060028#include <asm/global_data.h>
Simon Glass26b78b22015-02-27 22:06:34 -070029#include <asm/sections.h>
Simon Glassba8457b2022-09-06 20:27:19 -060030#include <dm/ofnode.h>
31#include <dm/of_extra.h>
Simon Glass9908ad42014-07-23 06:55:09 -060032#include <linux/ctype.h>
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +020033#include <linux/lzo.h>
Michal Simek6dd9cfd2020-07-10 13:34:44 +020034#include <linux/ioport.h>
Simon Glass2d2af852011-10-24 19:15:32 +000035
36DECLARE_GLOBAL_DATA_PTR;
37
38/*
39 * Here are the type we know about. One day we might allow drivers to
40 * register. For now we just put them here. The COMPAT macro allows us to
41 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass7c380302016-06-19 17:33:13 -060042 *
43 * NOTE: This list is basically a TODO list for things that need to be
44 * converted to driver model. So don't add new things here unless there is a
45 * good reason why driver-model conversion is infeasible. Examples include
46 * things which are used before driver model is available.
Simon Glass2d2af852011-10-24 19:15:32 +000047 */
48#define COMPAT(id, name) name
49static const char * const compat_names[COMPAT_COUNT] = {
Simon Glass65444982012-02-27 10:52:34 +000050 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang5983ef82012-04-02 13:18:52 +000051 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
52 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin5d309e62012-07-29 20:53:29 +000053 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Redingf202e022014-12-09 22:25:09 -070054 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warrenab0cc6b2015-03-04 16:36:00 -070055 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +000056 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautamf8745232013-09-14 14:02:48 +053057 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswataa773182013-02-25 01:13:01 +000058 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczek24e368a2014-03-07 14:59:39 +010059 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chunge3fb6fa2014-05-16 13:59:51 +090060 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrongf6625b42019-02-10 10:16:21 +000061 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumare24c5022014-09-05 16:53:33 +053062 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glassf79d5382014-11-12 22:42:21 -070063 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Meng2bfd2642015-02-05 23:42:26 +080064 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasutf3f8fe22015-07-25 19:33:56 +020065 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut17497232015-07-25 10:48:14 +020066 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutf26c1ae2015-12-05 19:28:44 +010067 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass6f70c112016-06-19 17:33:14 -060068 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
69 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
70 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Boris Brezillon57f20382016-06-15 21:09:23 +020071 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
Ley Foon Tanb25ae722017-04-05 17:32:47 +080072 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
73 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
74 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
75 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
76 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
77 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
78 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
79 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheebbfa5eb2017-09-25 16:40:03 +080080 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
81 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasutee4e36b2018-05-12 11:56:10 +020082 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glass2d2af852011-10-24 19:15:32 +000083};
84
Simon Glass8f9ce7e2021-12-16 20:59:34 -070085static const char *const fdt_src_name[] = {
86 [FDTSRC_SEPARATE] = "separate",
87 [FDTSRC_FIT] = "fit",
88 [FDTSRC_BOARD] = "board",
89 [FDTSRC_EMBED] = "embed",
90 [FDTSRC_ENV] = "env",
91};
92
93const char *fdtdec_get_srcname(void)
94{
95 return fdt_src_name[gd->fdt_src];
96}
97
Simon Glassb022ead2012-01-17 08:20:50 +000098const char *fdtdec_get_compatible(enum fdt_compat_id id)
99{
100 /* We allow reading of the 'unknown' ID for testing purposes */
101 assert(id >= 0 && id < COMPAT_COUNT);
102 return compat_names[id];
103}
104
Stephen Warren6dfe6182015-08-06 15:31:02 -0600105fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100106 const char *prop_name, int index, int na,
107 int ns, fdt_size_t *sizep,
108 bool translate)
Simon Glass2d2af852011-10-24 19:15:32 +0000109{
Stephen Warren6dfe6182015-08-06 15:31:02 -0600110 const fdt32_t *prop, *prop_end;
111 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
Simon Glass04c50d12015-08-02 18:13:50 -0600112 int len;
Stephen Warren6dfe6182015-08-06 15:31:02 -0600113 fdt_addr_t addr;
Simon Glass2d2af852011-10-24 19:15:32 +0000114
Simon Glassc8c86dd2012-07-12 05:25:01 +0000115 debug("%s: %s: ", __func__, prop_name);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600116
Stephen Warren6dfe6182015-08-06 15:31:02 -0600117 prop = fdt_getprop(blob, node, prop_name, &len);
118 if (!prop) {
119 debug("(not found)\n");
120 return FDT_ADDR_T_NONE;
121 }
122 prop_end = prop + (len / sizeof(*prop));
Simon Glassc8c86dd2012-07-12 05:25:01 +0000123
Stephen Warren6dfe6182015-08-06 15:31:02 -0600124 prop_addr = prop + (index * (na + ns));
125 prop_size = prop_addr + na;
126 prop_after_size = prop_size + ns;
127 if (prop_after_size > prop_end) {
128 debug("(not enough data: expected >= %d cells, got %d cells)\n",
129 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
130 return FDT_ADDR_T_NONE;
Simon Glassc8c86dd2012-07-12 05:25:01 +0000131 }
Stephen Warren6dfe6182015-08-06 15:31:02 -0600132
Vignesh R621cc092017-03-20 10:04:38 +0530133#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren7d30e102016-08-05 09:47:51 -0600134 if (translate)
135 addr = fdt_translate_address(blob, node, prop_addr);
136 else
137#endif
138 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600139
140 if (sizep) {
141 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glass0b14dc72016-02-29 15:25:37 -0700142 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
143 (unsigned long long)*sizep);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600144 } else {
Simon Glass0b14dc72016-02-29 15:25:37 -0700145 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600146 }
147
148 return addr;
149}
150
151fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100152 int node, const char *prop_name,
153 int index, fdt_size_t *sizep,
154 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600155{
156 int na, ns;
157
158 debug("%s: ", __func__);
159
160 na = fdt_address_cells(blob, parent);
161 if (na < 1) {
162 debug("(bad #address-cells)\n");
163 return FDT_ADDR_T_NONE;
164 }
165
166 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczak7b42f4d2015-09-30 13:14:50 +0200167 if (ns < 0) {
Stephen Warren6dfe6182015-08-06 15:31:02 -0600168 debug("(bad #size-cells)\n");
169 return FDT_ADDR_T_NONE;
170 }
171
172 debug("na=%d, ns=%d, ", na, ns);
173
174 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren7d30e102016-08-05 09:47:51 -0600175 ns, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600176}
177
178fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100179 const char *prop_name, int index,
180 fdt_size_t *sizep,
181 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600182{
183 int parent;
184
185 debug("%s: ", __func__);
186
187 parent = fdt_parent_offset(blob, node);
188 if (parent < 0) {
189 debug("(no parent found)\n");
190 return FDT_ADDR_T_NONE;
191 }
192
193 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren7d30e102016-08-05 09:47:51 -0600194 index, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600195}
196
197fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100198 const char *prop_name, fdt_size_t *sizep)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600199{
Stephen Warrenfda59162015-09-25 10:11:41 -0600200 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
201
Stephen Warren6dfe6182015-08-06 15:31:02 -0600202 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
203 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren7d30e102016-08-05 09:47:51 -0600204 ns, sizep, false);
Simon Glass2d2af852011-10-24 19:15:32 +0000205}
206
Mario Sixbb3e06c2018-01-15 11:07:35 +0100207fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glassf4299552013-03-19 04:58:51 +0000208{
209 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
210}
211
Bin Meng779847e2014-12-31 16:05:11 +0800212int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
213{
214 const char *list, *end;
215 int len;
216
217 list = fdt_getprop(blob, node, "compatible", &len);
218 if (!list)
219 return -ENOENT;
220
221 end = list + len;
222 while (list < end) {
Bin Meng779847e2014-12-31 16:05:11 +0800223 len = strlen(list);
224 if (len >= strlen("pciVVVV,DDDD")) {
Mario Six6abfbc82018-01-15 11:07:36 +0100225 char *s = strstr(list, "pci");
Bin Meng779847e2014-12-31 16:05:11 +0800226
227 /*
228 * check if the string is something like pciVVVV,DDDD.RR
229 * or just pciVVVV,DDDD
230 */
231 if (s && s[7] == ',' &&
232 (s[12] == '.' || s[12] == 0)) {
233 s += 3;
234 *vendor = simple_strtol(s, NULL, 16);
235
236 s += 5;
237 *device = simple_strtol(s, NULL, 16);
238
239 return 0;
240 }
Bin Meng779847e2014-12-31 16:05:11 +0800241 }
Bin Menga2822b82015-08-20 06:40:25 -0700242 list += (len + 1);
Bin Meng779847e2014-12-31 16:05:11 +0800243 }
244
245 return -ENOENT;
246}
247
Simon Glassc92aac12020-01-27 08:49:38 -0700248int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassf1037ad2015-11-29 13:17:54 -0700249 u32 *bar)
Bin Meng779847e2014-12-31 16:05:11 +0800250{
Bin Meng779847e2014-12-31 16:05:11 +0800251 int barnum;
Bin Meng779847e2014-12-31 16:05:11 +0800252
253 /* extract the bar number from fdt_pci_addr */
254 barnum = addr->phys_hi & 0xff;
Mario Six6abfbc82018-01-15 11:07:36 +0100255 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Meng779847e2014-12-31 16:05:11 +0800256 return -EINVAL;
257
258 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassfde8b762021-08-01 18:54:18 -0600259
Simon Glassf1037ad2015-11-29 13:17:54 -0700260 *bar = dm_pci_read_bar32(dev, barnum);
Bin Meng779847e2014-12-31 16:05:11 +0800261
262 return 0;
263}
Suneel Garapati78d0bea2019-10-19 15:19:35 -0700264
265int fdtdec_get_pci_bus_range(const void *blob, int node,
266 struct fdt_resource *res)
267{
268 const u32 *values;
269 int len;
270
271 values = fdt_getprop(blob, node, "bus-range", &len);
272 if (!values || len < sizeof(*values) * 2)
273 return -EINVAL;
274
275 res->start = fdt32_to_cpu(*values++);
276 res->end = fdt32_to_cpu(*values);
277
278 return 0;
279}
Bin Meng779847e2014-12-31 16:05:11 +0800280
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000281uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100282 uint64_t default_val)
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000283{
Jean-Jacques Hiblot487f9172019-10-22 10:05:22 +0200284 const unaligned_fdt64_t *cell64;
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000285 int length;
286
287 cell64 = fdt_getprop(blob, node, prop_name, &length);
288 if (!cell64 || length < sizeof(*cell64))
289 return default_val;
290
291 return fdt64_to_cpu(*cell64);
292}
293
Simon Glass65444982012-02-27 10:52:34 +0000294int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000295{
296 const char *cell;
297
Simon Glass65444982012-02-27 10:52:34 +0000298 /*
299 * It should say "okay", so only allow that. Some fdts use "ok" but
300 * this is a bug. Please fix your device tree source file. See here
301 * for discussion:
302 *
303 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
304 */
Simon Glass2d2af852011-10-24 19:15:32 +0000305 cell = fdt_getprop(blob, node, "status", NULL);
306 if (cell)
Mario Six6abfbc82018-01-15 11:07:36 +0100307 return strcmp(cell, "okay") == 0;
Simon Glass65444982012-02-27 10:52:34 +0000308 return 1;
Simon Glass2d2af852011-10-24 19:15:32 +0000309}
310
Gerald Van Barencdac3392012-11-12 23:13:54 -0500311enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000312{
313 enum fdt_compat_id id;
314
315 /* Search our drivers */
316 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Six6abfbc82018-01-15 11:07:36 +0100317 if (fdt_node_check_compatible(blob, node,
318 compat_names[id]) == 0)
Simon Glass2d2af852011-10-24 19:15:32 +0000319 return id;
320 return COMPAT_UNKNOWN;
321}
322
Mario Sixbb3e06c2018-01-15 11:07:35 +0100323int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glass2d2af852011-10-24 19:15:32 +0000324{
325 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
326}
327
Simon Glass2e979b12012-04-02 13:18:42 +0000328int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100329 enum fdt_compat_id id, int *depthp)
Simon Glass2e979b12012-04-02 13:18:42 +0000330{
331 do {
332 node = fdt_next_node(blob, node, depthp);
333 } while (*depthp > 1);
334
335 /* If this is a direct subnode, and compatible, return it */
336 if (*depthp == 1 && 0 == fdt_node_check_compatible(
337 blob, node, compat_names[id]))
338 return node;
339
340 return -FDT_ERR_NOTFOUND;
341}
342
Mario Sixbb3e06c2018-01-15 11:07:35 +0100343int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
344 int *upto)
Simon Glass2d2af852011-10-24 19:15:32 +0000345{
346#define MAX_STR_LEN 20
347 char str[MAX_STR_LEN + 20];
348 int node, err;
349
350 /* snprintf() is not available */
351 assert(strlen(name) < MAX_STR_LEN);
352 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glasse1d15ca2012-10-31 14:02:42 +0000353 node = fdt_path_offset(blob, str);
Simon Glass2d2af852011-10-24 19:15:32 +0000354 if (node < 0)
355 return node;
356 err = fdt_node_check_compatible(blob, node, compat_names[id]);
357 if (err < 0)
358 return err;
Simon Glass65444982012-02-27 10:52:34 +0000359 if (err)
360 return -FDT_ERR_NOTFOUND;
361 (*upto)++;
362 return node;
Simon Glass2d2af852011-10-24 19:15:32 +0000363}
364
Simon Glassb022ead2012-01-17 08:20:50 +0000365int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100366 enum fdt_compat_id id, int *node_list,
367 int maxcount)
Simon Glassb022ead2012-01-17 08:20:50 +0000368{
Simon Glass1f772662012-02-03 15:13:53 +0000369 memset(node_list, '\0', sizeof(*node_list) * maxcount);
370
371 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
372}
373
374/* TODO: Can we tighten this code up a little? */
375int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100376 enum fdt_compat_id id, int *node_list,
377 int maxcount)
Simon Glass1f772662012-02-03 15:13:53 +0000378{
Simon Glassb022ead2012-01-17 08:20:50 +0000379 int name_len = strlen(name);
380 int nodes[maxcount];
381 int num_found = 0;
382 int offset, node;
383 int alias_node;
384 int count;
385 int i, j;
386
387 /* find the alias node if present */
388 alias_node = fdt_path_offset(blob, "/aliases");
389
390 /*
391 * start with nothing, and we can assume that the root node can't
392 * match
393 */
394 memset(nodes, '\0', sizeof(nodes));
395
396 /* First find all the compatible nodes */
397 for (node = count = 0; node >= 0 && count < maxcount;) {
398 node = fdtdec_next_compatible(blob, node, id);
399 if (node >= 0)
400 nodes[count++] = node;
401 }
402 if (node >= 0)
403 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100404 __func__, name);
Simon Glassb022ead2012-01-17 08:20:50 +0000405
406 /* Now find all the aliases */
Simon Glassb022ead2012-01-17 08:20:50 +0000407 for (offset = fdt_first_property_offset(blob, alias_node);
408 offset > 0;
409 offset = fdt_next_property_offset(blob, offset)) {
410 const struct fdt_property *prop;
411 const char *path;
412 int number;
413 int found;
414
415 node = 0;
416 prop = fdt_get_property_by_offset(blob, offset, NULL);
417 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
418 if (prop->len && 0 == strncmp(path, name, name_len))
419 node = fdt_path_offset(blob, prop->data);
420 if (node <= 0)
421 continue;
422
423 /* Get the alias number */
Simon Glassff9b9032021-07-24 09:03:30 -0600424 number = dectoul(path + name_len, NULL);
Simon Glassb022ead2012-01-17 08:20:50 +0000425 if (number < 0 || number >= maxcount) {
426 debug("%s: warning: alias '%s' is out of range\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100427 __func__, path);
Simon Glassb022ead2012-01-17 08:20:50 +0000428 continue;
429 }
430
431 /* Make sure the node we found is actually in our list! */
432 found = -1;
433 for (j = 0; j < count; j++)
434 if (nodes[j] == node) {
435 found = j;
436 break;
437 }
438
439 if (found == -1) {
440 debug("%s: warning: alias '%s' points to a node "
441 "'%s' that is missing or is not compatible "
442 " with '%s'\n", __func__, path,
443 fdt_get_name(blob, node, NULL),
444 compat_names[id]);
445 continue;
446 }
447
448 /*
449 * Add this node to our list in the right place, and mark
450 * it as done.
451 */
452 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glass1f772662012-02-03 15:13:53 +0000453 if (node_list[number]) {
454 debug("%s: warning: alias '%s' requires that "
455 "a node be placed in the list in a "
456 "position which is already filled by "
457 "node '%s'\n", __func__, path,
458 fdt_get_name(blob, node, NULL));
459 continue;
460 }
Simon Glassb022ead2012-01-17 08:20:50 +0000461 node_list[number] = node;
462 if (number >= num_found)
463 num_found = number + 1;
464 }
Simon Glass1f772662012-02-03 15:13:53 +0000465 nodes[found] = 0;
Simon Glassb022ead2012-01-17 08:20:50 +0000466 }
467
468 /* Add any nodes not mentioned by an alias */
469 for (i = j = 0; i < maxcount; i++) {
470 if (!node_list[i]) {
471 for (; j < maxcount; j++)
472 if (nodes[j] &&
Mario Sixbb3e06c2018-01-15 11:07:35 +0100473 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassb022ead2012-01-17 08:20:50 +0000474 break;
475
476 /* Have we run out of nodes to add? */
477 if (j == maxcount)
478 break;
479
480 assert(!node_list[i]);
481 node_list[i] = nodes[j++];
482 if (i >= num_found)
483 num_found = i + 1;
484 }
485 }
486
487 return num_found;
488}
489
Simon Glass9908ad42014-07-23 06:55:09 -0600490int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
491 int *seqp)
492{
493 int base_len = strlen(base);
494 const char *find_name;
495 int find_namelen;
496 int prop_offset;
497 int aliases;
498
499 find_name = fdt_get_name(blob, offset, &find_namelen);
500 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
501
502 aliases = fdt_path_offset(blob, "/aliases");
503 for (prop_offset = fdt_first_property_offset(blob, aliases);
504 prop_offset > 0;
505 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
506 const char *prop;
507 const char *name;
508 const char *slash;
Simon Glass4aaa4602015-06-23 15:39:08 -0600509 int len, val;
Simon Glass9908ad42014-07-23 06:55:09 -0600510
511 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
512 debug(" - %s, %s\n", name, prop);
513 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
514 strncmp(name, base, base_len))
515 continue;
516
517 slash = strrchr(prop, '/');
518 if (strcmp(slash + 1, find_name))
519 continue;
Aswath Govindraju3dd81252020-12-03 10:55:45 +0530520
521 /*
522 * Adding an extra check to distinguish DT nodes with
523 * same name
524 */
Simon Glass42d97e52022-12-21 16:08:28 -0700525 if (IS_ENABLED(CONFIG_PHANDLE_CHECK_SEQ)) {
526 if (fdt_get_phandle(blob, offset) !=
527 fdt_get_phandle(blob, fdt_path_offset(blob, prop)))
528 continue;
529 }
Aswath Govindraju3dd81252020-12-03 10:55:45 +0530530
Simon Glass4aaa4602015-06-23 15:39:08 -0600531 val = trailing_strtol(name);
532 if (val != -1) {
533 *seqp = val;
534 debug("Found seq %d\n", *seqp);
535 return 0;
Simon Glass9908ad42014-07-23 06:55:09 -0600536 }
537 }
538
539 debug("Not found\n");
540 return -ENOENT;
541}
542
Michal Simek4b586672019-01-31 16:30:58 +0100543int fdtdec_get_alias_highest_id(const void *blob, const char *base)
544{
545 int base_len = strlen(base);
546 int prop_offset;
547 int aliases;
548 int max = -1;
549
550 debug("Looking for highest alias id for '%s'\n", base);
551
552 aliases = fdt_path_offset(blob, "/aliases");
553 for (prop_offset = fdt_first_property_offset(blob, aliases);
554 prop_offset > 0;
555 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
556 const char *prop;
557 const char *name;
558 int len, val;
559
560 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
561 debug(" - %s, %s\n", name, prop);
562 if (*prop != '/' || prop[len - 1] ||
563 strncmp(name, base, base_len))
564 continue;
565
566 val = trailing_strtol(name);
567 if (val > max) {
568 debug("Found seq %d\n", val);
569 max = val;
570 }
571 }
572
573 return max;
574}
575
Simon Glass088dccb2015-10-17 19:41:14 -0600576const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
Simon Glass1e374fb2014-09-04 16:27:24 -0600577{
Simon Glass1e374fb2014-09-04 16:27:24 -0600578 int chosen_node;
Simon Glass1e374fb2014-09-04 16:27:24 -0600579
580 if (!blob)
Simon Glass088dccb2015-10-17 19:41:14 -0600581 return NULL;
Simon Glass1e374fb2014-09-04 16:27:24 -0600582 chosen_node = fdt_path_offset(blob, "/chosen");
Simon Glass088dccb2015-10-17 19:41:14 -0600583 return fdt_getprop(blob, chosen_node, name, NULL);
584}
585
586int fdtdec_get_chosen_node(const void *blob, const char *name)
587{
588 const char *prop;
589
590 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glass1e374fb2014-09-04 16:27:24 -0600591 if (!prop)
592 return -FDT_ERR_NOTFOUND;
593 return fdt_path_offset(blob, prop);
594}
595
Simon Glass84137372022-12-21 16:08:19 -0700596/**
597 * fdtdec_prepare_fdt() - Check we have a valid fdt available to control U-Boot
598 *
Simon Glass2c62a942022-12-21 16:08:20 -0700599 * @blob: Blob to check
600 *
Simon Glass84137372022-12-21 16:08:19 -0700601 * If not, a message is printed to the console if the console is ready.
602 *
603 * Return: 0 if all ok, -ENOENT if not
Simon Glass2d2af852011-10-24 19:15:32 +0000604 */
Simon Glass2c62a942022-12-21 16:08:20 -0700605static int fdtdec_prepare_fdt(const void *blob)
Simon Glass2d2af852011-10-24 19:15:32 +0000606{
Simon Glass2c62a942022-12-21 16:08:20 -0700607 if (!blob || ((uintptr_t)blob & 3) || fdt_check_header(blob)) {
Simon Glass84137372022-12-21 16:08:19 -0700608 if (spl_phase() <= PHASE_SPL) {
609 puts("Missing DTB\n");
610 } else {
611 printf("No valid device tree binary found at %p\n",
Simon Glass2c62a942022-12-21 16:08:20 -0700612 blob);
613 if (_DEBUG && blob) {
614 printf("fdt_blob=%p\n", blob);
615 print_buffer((ulong)blob, blob, 4, 32, 0);
Simon Glass84137372022-12-21 16:08:19 -0700616 }
Simon Glass63884ec2015-06-23 15:39:09 -0600617 }
Simon Glass84137372022-12-21 16:08:19 -0700618 return -ENOENT;
Simon Glass1691f692012-03-28 10:08:24 +0000619 }
Simon Glass84137372022-12-21 16:08:19 -0700620
Simon Glass2d2af852011-10-24 19:15:32 +0000621 return 0;
622}
Simon Glassc4697362012-02-27 10:52:35 +0000623
Simon Glassfa3f52d2022-12-21 16:08:18 -0700624int fdtdec_check_fdt(void)
625{
626 /*
627 * We must have an FDT, but we cannot panic() yet since the console
628 * is not ready. So for now, just assert(). Boards which need an early
629 * FDT (prior to console ready) will need to make their own
630 * arrangements and do their own checks.
631 */
Simon Glass2c62a942022-12-21 16:08:20 -0700632 assert(!fdtdec_prepare_fdt(gd->fdt_blob));
Simon Glassfa3f52d2022-12-21 16:08:18 -0700633 return 0;
634}
635
Simon Glassc4697362012-02-27 10:52:35 +0000636int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
637{
638 const u32 *phandle;
639 int lookup;
640
Simon Glassc8c86dd2012-07-12 05:25:01 +0000641 debug("%s: %s\n", __func__, prop_name);
Simon Glassc4697362012-02-27 10:52:35 +0000642 phandle = fdt_getprop(blob, node, prop_name, NULL);
643 if (!phandle)
644 return -FDT_ERR_NOTFOUND;
645
646 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
647 return lookup;
648}
649
650/**
651 * Look up a property in a node and check that it has a minimum length.
652 *
653 * @param blob FDT blob
654 * @param node node to examine
655 * @param prop_name name of property to find
656 * @param min_len minimum property length in bytes
657 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
658 found, or -FDT_ERR_BADLAYOUT if not enough data
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100659 * Return: pointer to cell, which is only valid if err == 0
Simon Glassc4697362012-02-27 10:52:35 +0000660 */
661static const void *get_prop_check_min_len(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100662 const char *prop_name, int min_len,
663 int *err)
Simon Glassc4697362012-02-27 10:52:35 +0000664{
665 const void *cell;
666 int len;
667
668 debug("%s: %s\n", __func__, prop_name);
669 cell = fdt_getprop(blob, node, prop_name, &len);
670 if (!cell)
671 *err = -FDT_ERR_NOTFOUND;
672 else if (len < min_len)
673 *err = -FDT_ERR_BADLAYOUT;
674 else
675 *err = 0;
676 return cell;
677}
678
679int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100680 u32 *array, int count)
Simon Glassc4697362012-02-27 10:52:35 +0000681{
682 const u32 *cell;
Mario Six6abfbc82018-01-15 11:07:36 +0100683 int err = 0;
Simon Glassc4697362012-02-27 10:52:35 +0000684
685 debug("%s: %s\n", __func__, prop_name);
686 cell = get_prop_check_min_len(blob, node, prop_name,
687 sizeof(u32) * count, &err);
688 if (!err) {
Mario Six6abfbc82018-01-15 11:07:36 +0100689 int i;
690
Simon Glassc4697362012-02-27 10:52:35 +0000691 for (i = 0; i < count; i++)
692 array[i] = fdt32_to_cpu(cell[i]);
693 }
694 return err;
695}
696
Simon Glasseda0c3f2014-11-10 18:00:19 -0700697int fdtdec_get_int_array_count(const void *blob, int node,
698 const char *prop_name, u32 *array, int count)
699{
700 const u32 *cell;
701 int len, elems;
702 int i;
703
704 debug("%s: %s\n", __func__, prop_name);
705 cell = fdt_getprop(blob, node, prop_name, &len);
706 if (!cell)
707 return -FDT_ERR_NOTFOUND;
708 elems = len / sizeof(u32);
709 if (count > elems)
710 count = elems;
711 for (i = 0; i < count; i++)
712 array[i] = fdt32_to_cpu(cell[i]);
713
714 return count;
715}
716
Simon Glass744ec232012-04-02 13:18:41 +0000717const u32 *fdtdec_locate_array(const void *blob, int node,
718 const char *prop_name, int count)
719{
720 const u32 *cell;
721 int err;
722
723 cell = get_prop_check_min_len(blob, node, prop_name,
724 sizeof(u32) * count, &err);
725 return err ? NULL : cell;
726}
727
Simon Glassc4697362012-02-27 10:52:35 +0000728int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
729{
730 const s32 *cell;
731 int len;
732
733 debug("%s: %s\n", __func__, prop_name);
734 cell = fdt_getprop(blob, node, prop_name, &len);
735 return cell != NULL;
736}
Simon Glass0d83c4d2012-02-27 10:52:36 +0000737
Simon Glassb491e9c2015-01-05 20:05:26 -0700738int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
739 const char *list_name,
740 const char *cells_name,
741 int cell_count, int index,
742 struct fdtdec_phandle_args *out_args)
743{
744 const __be32 *list, *list_end;
745 int rc = 0, size, cur_index = 0;
746 uint32_t count = 0;
747 int node = -1;
748 int phandle;
749
750 /* Retrieve the phandle list property */
751 list = fdt_getprop(blob, src_node, list_name, &size);
752 if (!list)
753 return -ENOENT;
754 list_end = list + size / sizeof(*list);
755
756 /* Loop over the phandles until all the requested entry is found */
757 while (list < list_end) {
758 rc = -EINVAL;
759 count = 0;
760
761 /*
762 * If phandle is 0, then it is an empty entry with no
763 * arguments. Skip forward to the next entry.
764 */
765 phandle = be32_to_cpup(list++);
766 if (phandle) {
767 /*
768 * Find the provider node and parse the #*-cells
769 * property to determine the argument length.
770 *
771 * This is not needed if the cell count is hard-coded
772 * (i.e. cells_name not set, but cell_count is set),
773 * except when we're going to return the found node
774 * below.
775 */
776 if (cells_name || cur_index == index) {
777 node = fdt_node_offset_by_phandle(blob,
778 phandle);
Patrick Delaunayf9cbd1a2020-09-25 09:41:15 +0200779 if (node < 0) {
Simon Glassb491e9c2015-01-05 20:05:26 -0700780 debug("%s: could not find phandle\n",
781 fdt_get_name(blob, src_node,
782 NULL));
783 goto err;
784 }
785 }
786
787 if (cells_name) {
788 count = fdtdec_get_int(blob, node, cells_name,
789 -1);
790 if (count == -1) {
791 debug("%s: could not get %s for %s\n",
792 fdt_get_name(blob, src_node,
793 NULL),
794 cells_name,
795 fdt_get_name(blob, node,
796 NULL));
797 goto err;
798 }
799 } else {
800 count = cell_count;
801 }
802
803 /*
804 * Make sure that the arguments actually fit in the
805 * remaining property data length
806 */
807 if (list + count > list_end) {
808 debug("%s: arguments longer than property\n",
809 fdt_get_name(blob, src_node, NULL));
810 goto err;
811 }
812 }
813
814 /*
815 * All of the error cases above bail out of the loop, so at
816 * this point, the parsing is successful. If the requested
817 * index matches, then fill the out_args structure and return,
818 * or return -ENOENT for an empty entry.
819 */
820 rc = -ENOENT;
821 if (cur_index == index) {
822 if (!phandle)
823 goto err;
824
825 if (out_args) {
826 int i;
827
828 if (count > MAX_PHANDLE_ARGS) {
829 debug("%s: too many arguments %d\n",
830 fdt_get_name(blob, src_node,
831 NULL), count);
832 count = MAX_PHANDLE_ARGS;
833 }
834 out_args->node = node;
835 out_args->args_count = count;
836 for (i = 0; i < count; i++) {
837 out_args->args[i] =
838 be32_to_cpup(list++);
839 }
840 }
841
842 /* Found it! return success */
843 return 0;
844 }
845
846 node = -1;
847 list += count;
848 cur_index++;
849 }
850
851 /*
852 * Result will be one of:
853 * -ENOENT : index is for empty phandle
854 * -EINVAL : parsing error on data
855 * [1..n] : Number of phandle (count mode; when index = -1)
856 */
857 rc = index < 0 ? cur_index : -ENOENT;
858 err:
859 return rc;
860}
861
Anton Stafff2305ec2012-04-17 09:01:28 +0000862int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100863 u8 *array, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000864{
865 const u8 *cell;
866 int err;
867
868 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
869 if (!err)
870 memcpy(array, cell, count);
871 return err;
872}
873
874const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100875 const char *prop_name, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000876{
877 const u8 *cell;
878 int err;
879
880 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
881 if (err)
882 return NULL;
883 return cell;
884}
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000885
Simon Glass9ffbe332015-03-05 12:25:14 -0700886u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Redinga937b802014-08-26 17:33:53 +0200887{
888 u64 number = 0;
889
890 while (cells--)
891 number = (number << 32) | fdt32_to_cpu(*ptr++);
892
893 return number;
894}
895
896int fdt_get_resource(const void *fdt, int node, const char *property,
897 unsigned int index, struct fdt_resource *res)
898{
899 const fdt32_t *ptr, *end;
900 int na, ns, len, parent;
901 unsigned int i = 0;
902
903 parent = fdt_parent_offset(fdt, node);
904 if (parent < 0)
905 return parent;
906
907 na = fdt_address_cells(fdt, parent);
908 ns = fdt_size_cells(fdt, parent);
909
910 ptr = fdt_getprop(fdt, node, property, &len);
911 if (!ptr)
912 return len;
913
914 end = ptr + len / sizeof(*ptr);
915
916 while (ptr + na + ns <= end) {
917 if (i == index) {
Patrick Delaunay2a28c6e2021-04-06 09:38:06 +0200918 if (CONFIG_IS_ENABLED(OF_TRANSLATE))
919 res->start = fdt_translate_address(fdt, node, ptr);
920 else
921 res->start = fdtdec_get_number(ptr, na);
922
Mario Six6abfbc82018-01-15 11:07:36 +0100923 res->end = res->start;
Thierry Redinga937b802014-08-26 17:33:53 +0200924 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
925 return 0;
926 }
927
928 ptr += na + ns;
929 i++;
930 }
931
932 return -FDT_ERR_NOTFOUND;
933}
934
935int fdt_get_named_resource(const void *fdt, int node, const char *property,
936 const char *prop_names, const char *name,
937 struct fdt_resource *res)
938{
939 int index;
940
Simon Glassb0ea7402016-10-02 17:59:28 -0600941 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Redinga937b802014-08-26 17:33:53 +0200942 if (index < 0)
943 return index;
944
945 return fdt_get_resource(fdt, node, property, index, res);
946}
Thierry Reding24856312014-08-26 17:33:54 +0200947
Simon Glassb24e8642015-04-14 21:03:21 -0600948static int decode_timing_property(const void *blob, int node, const char *name,
949 struct timing_entry *result)
950{
951 int length, ret = 0;
952 const u32 *prop;
953
954 prop = fdt_getprop(blob, node, name, &length);
955 if (!prop) {
956 debug("%s: could not find property %s\n",
957 fdt_get_name(blob, node, NULL), name);
958 return length;
959 }
960
961 if (length == sizeof(u32)) {
962 result->typ = fdtdec_get_int(blob, node, name, 0);
963 result->min = result->typ;
964 result->max = result->typ;
965 } else {
966 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
967 }
968
969 return ret;
970}
971
972int fdtdec_decode_display_timing(const void *blob, int parent, int index,
973 struct display_timing *dt)
974{
975 int i, node, timings_node;
976 u32 val = 0;
977 int ret = 0;
978
979 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
980 if (timings_node < 0)
981 return timings_node;
982
983 for (i = 0, node = fdt_first_subnode(blob, timings_node);
984 node > 0 && i != index;
985 node = fdt_next_subnode(blob, node))
986 i++;
987
988 if (node < 0)
989 return node;
990
991 memset(dt, 0, sizeof(*dt));
992
993 ret |= decode_timing_property(blob, node, "hback-porch",
994 &dt->hback_porch);
995 ret |= decode_timing_property(blob, node, "hfront-porch",
996 &dt->hfront_porch);
997 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
998 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
999 ret |= decode_timing_property(blob, node, "vback-porch",
1000 &dt->vback_porch);
1001 ret |= decode_timing_property(blob, node, "vfront-porch",
1002 &dt->vfront_porch);
1003 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1004 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1005 ret |= decode_timing_property(blob, node, "clock-frequency",
1006 &dt->pixelclock);
1007
1008 dt->flags = 0;
1009 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1010 if (val != -1) {
1011 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1012 DISPLAY_FLAGS_VSYNC_LOW;
1013 }
1014 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1015 if (val != -1) {
1016 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1017 DISPLAY_FLAGS_HSYNC_LOW;
1018 }
1019 val = fdtdec_get_int(blob, node, "de-active", -1);
1020 if (val != -1) {
1021 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1022 DISPLAY_FLAGS_DE_LOW;
1023 }
1024 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1025 if (val != -1) {
1026 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1027 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1028 }
1029
1030 if (fdtdec_get_bool(blob, node, "interlaced"))
1031 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1032 if (fdtdec_get_bool(blob, node, "doublescan"))
1033 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1034 if (fdtdec_get_bool(blob, node, "doubleclk"))
1035 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1036
Simon Glass6eb90e12016-05-05 07:28:21 -06001037 return ret;
Simon Glassb24e8642015-04-14 21:03:21 -06001038}
1039
Michal Simek43ba85b2020-07-10 13:16:50 +02001040int fdtdec_setup_mem_size_base(void)
Nathan Rossiba97b722016-12-19 00:03:34 +10001041{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001042 int ret;
1043 ofnode mem;
1044 struct resource res;
Nathan Rossiba97b722016-12-19 00:03:34 +10001045
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001046 mem = ofnode_path("/memory");
1047 if (!ofnode_valid(mem)) {
Nathan Rossiba97b722016-12-19 00:03:34 +10001048 debug("%s: Missing /memory node\n", __func__);
1049 return -EINVAL;
1050 }
1051
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001052 ret = ofnode_read_resource(mem, 0, &res);
Nathan Rossiba97b722016-12-19 00:03:34 +10001053 if (ret != 0) {
1054 debug("%s: Unable to decode first memory bank\n", __func__);
1055 return -EINVAL;
1056 }
1057
1058 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +05301059 gd->ram_base = (unsigned long)res.start;
Simon Glass640b78f2017-05-27 07:38:13 -06001060 debug("%s: Initial DRAM size %llx\n", __func__,
1061 (unsigned long long)gd->ram_size);
Nathan Rossiba97b722016-12-19 00:03:34 +10001062
1063 return 0;
1064}
1065
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001066ofnode get_next_memory_node(ofnode mem)
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001067{
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001068 do {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001069 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
Simon Glass2e4938b2022-09-06 20:27:17 -06001070 } while (!ofnode_is_enabled(mem));
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001071
1072 return mem;
1073}
1074
Michal Simekf7833292020-07-10 13:16:49 +02001075int fdtdec_setup_memory_banksize(void)
Nathan Rossiba97b722016-12-19 00:03:34 +10001076{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001077 int bank, ret, reg = 0;
1078 struct resource res;
1079 ofnode mem = ofnode_null();
Nathan Rossiba97b722016-12-19 00:03:34 +10001080
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001081 mem = get_next_memory_node(mem);
1082 if (!ofnode_valid(mem)) {
Michal Simek0bd065c2018-10-03 15:53:52 +02001083 debug("%s: Missing /memory node\n", __func__);
1084 return -EINVAL;
1085 }
Nathan Rossiba97b722016-12-19 00:03:34 +10001086
1087 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001088 ret = ofnode_read_resource(mem, reg++, &res);
1089 if (ret < 0) {
Marek Vasut7f0293a2017-11-27 05:32:42 +01001090 reg = 0;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001091 mem = get_next_memory_node(mem);
Marek Vasut253c1a42020-09-12 12:42:52 +02001092 if (!ofnode_valid(mem))
Michal Simek0bd065c2018-10-03 15:53:52 +02001093 break;
1094
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001095 ret = ofnode_read_resource(mem, reg++, &res);
1096 if (ret < 0)
Michal Simek0bd065c2018-10-03 15:53:52 +02001097 break;
1098 }
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001099
1100 if (ret != 0)
Michal Simek0bd065c2018-10-03 15:53:52 +02001101 return -EINVAL;
Nathan Rossiba97b722016-12-19 00:03:34 +10001102
1103 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1104 gd->bd->bi_dram[bank].size =
1105 (phys_size_t)(res.end - res.start + 1);
1106
1107 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1108 __func__, bank,
1109 (unsigned long long)gd->bd->bi_dram[bank].start,
1110 (unsigned long long)gd->bd->bi_dram[bank].size);
1111 }
1112
1113 return 0;
1114}
Michal Simek9d2cf072020-07-09 14:09:52 +02001115
1116int fdtdec_setup_mem_size_base_lowest(void)
1117{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001118 int bank, ret, reg = 0;
1119 struct resource res;
Michal Simek9d2cf072020-07-09 14:09:52 +02001120 unsigned long base;
1121 phys_size_t size;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001122 ofnode mem = ofnode_null();
Michal Simek9d2cf072020-07-09 14:09:52 +02001123
1124 gd->ram_base = (unsigned long)~0;
1125
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001126 mem = get_next_memory_node(mem);
1127 if (!ofnode_valid(mem)) {
Michal Simek9d2cf072020-07-09 14:09:52 +02001128 debug("%s: Missing /memory node\n", __func__);
1129 return -EINVAL;
1130 }
1131
1132 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001133 ret = ofnode_read_resource(mem, reg++, &res);
1134 if (ret < 0) {
Michal Simek9d2cf072020-07-09 14:09:52 +02001135 reg = 0;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001136 mem = get_next_memory_node(mem);
Marek Vasut253c1a42020-09-12 12:42:52 +02001137 if (!ofnode_valid(mem))
Michal Simek9d2cf072020-07-09 14:09:52 +02001138 break;
1139
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001140 ret = ofnode_read_resource(mem, reg++, &res);
1141 if (ret < 0)
Michal Simek9d2cf072020-07-09 14:09:52 +02001142 break;
1143 }
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001144
Michal Simek9d2cf072020-07-09 14:09:52 +02001145 if (ret != 0)
1146 return -EINVAL;
1147
1148 base = (unsigned long)res.start;
1149 size = (phys_size_t)(res.end - res.start + 1);
1150
1151 if (gd->ram_base > base && size) {
1152 gd->ram_base = base;
1153 gd->ram_size = size;
1154 debug("%s: Initial DRAM base %lx size %lx\n",
1155 __func__, base, (unsigned long)size);
1156 }
1157 }
1158
1159 return 0;
1160}
Nathan Rossiba97b722016-12-19 00:03:34 +10001161
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001162static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1163{
Simon Glass69daf5a2021-12-16 20:59:25 -07001164#if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1165 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
Marek Vasutaeaa29d2019-03-08 16:06:55 +01001166 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut42e5c032019-03-13 21:11:22 +01001167 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001168 ulong sz_in = sz_src;
1169 void *dst;
1170 int rc;
1171
1172 if (CONFIG_IS_ENABLED(GZIP))
Marek Vasut42e5c032019-03-13 21:11:22 +01001173 if (gzip_parse_header(src, sz_in) >= 0)
1174 gzip = 1;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001175 if (CONFIG_IS_ENABLED(LZO))
Marek Vasut42e5c032019-03-13 21:11:22 +01001176 if (!gzip && lzop_is_valid_header(src))
1177 lzo = 1;
1178
1179 if (!gzip && !lzo)
1180 return -EBADMSG;
1181
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001182
1183 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1184 dst = malloc(sz_out);
1185 if (!dst) {
1186 puts("uncompress_blob: Unable to allocate memory\n");
1187 return -ENOMEM;
1188 }
1189 } else {
Simon Glass69daf5a2021-12-16 20:59:25 -07001190# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001191 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
Simon Glass69daf5a2021-12-16 20:59:25 -07001192# else
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001193 return -ENOTSUPP;
Simon Glass69daf5a2021-12-16 20:59:25 -07001194# endif
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001195 }
1196
Marek Vasut42e5c032019-03-13 21:11:22 +01001197 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001198 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut42e5c032019-03-13 21:11:22 +01001199 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001200 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut42e5c032019-03-13 21:11:22 +01001201 else
1202 hang();
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001203
1204 if (rc < 0) {
1205 /* not a valid compressed blob */
1206 puts("uncompress_blob: Unable to uncompress\n");
1207 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1208 free(dst);
1209 return -EBADMSG;
1210 }
1211 *dstp = dst;
Simon Glass69daf5a2021-12-16 20:59:25 -07001212#else
1213 *dstp = (void *)src;
Marek Vasut5bd49fb2018-10-18 20:37:05 +02001214 *dstp = (void *)src;
Simon Glass69daf5a2021-12-16 20:59:25 -07001215#endif
Marek Vasut5bd49fb2018-10-18 20:37:05 +02001216 return 0;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001217}
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001218
Simon Glass28b76512021-12-16 20:59:31 -07001219/**
1220 * fdt_find_separate() - Find a devicetree at the end of the image
1221 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001222 * Return: pointer to FDT blob
Rob Clark974dcac2018-01-10 11:34:37 +01001223 */
Simon Glass28b76512021-12-16 20:59:31 -07001224static void *fdt_find_separate(void)
Rob Clark974dcac2018-01-10 11:34:37 +01001225{
1226 void *fdt_blob = NULL;
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001227
Simon Glassdf5f4382022-02-28 12:08:24 -07001228 if (IS_ENABLED(CONFIG_SANDBOX))
1229 return NULL;
1230
Rob Clark974dcac2018-01-10 11:34:37 +01001231#ifdef CONFIG_SPL_BUILD
1232 /* FDT is at end of BSS unless it is in a different memory region */
Andrew Abbottb449fed2022-04-16 10:12:31 +10001233 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
Rob Clark974dcac2018-01-10 11:34:37 +01001234 fdt_blob = (ulong *)&_image_binary_end;
1235 else
1236 fdt_blob = (ulong *)&__bss_end;
1237#else
1238 /* FDT is at end of image */
1239 fdt_blob = (ulong *)&_end;
Simon Glass7e87afb2022-12-21 16:08:21 -07001240
1241 if (_DEBUG && !fdtdec_prepare_fdt(fdt_blob)) {
1242 int stack_ptr;
1243 const void *top = fdt_blob + fdt_totalsize(fdt_blob);
1244
1245 /*
1246 * Perform a sanity check on the memory layout. If this fails,
1247 * it indicates that the device tree is positioned above the
1248 * global data pointer or the stack pointer. This should not
1249 * happen.
1250 *
1251 * If this fails, check that SYS_INIT_SP_ADDR has enough space
1252 * below it for SYS_MALLOC_F_LEN and global_data, as well as the
1253 * stack, without overwriting the device tree or U-Boot itself.
1254 * Since the device tree is sitting at _end (the start of the
1255 * BSS region), we need the top of the device tree to be below
1256 * any memory allocated by board_init_f_alloc_reserve().
1257 */
1258 if (top > (void *)gd || top > (void *)&stack_ptr) {
1259 printf("FDT %p gd %p\n", fdt_blob, gd);
1260 panic("FDT overlap");
1261 }
1262 }
Rob Clark974dcac2018-01-10 11:34:37 +01001263#endif
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001264
Rob Clark974dcac2018-01-10 11:34:37 +01001265 return fdt_blob;
1266}
Rob Clark974dcac2018-01-10 11:34:37 +01001267
Thierry Reding1bb59a92019-04-15 11:32:13 +02001268int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1269{
1270 const char *path;
1271 int offset, err;
1272
1273 if (!is_valid_ethaddr(mac))
1274 return -EINVAL;
1275
1276 path = fdt_get_alias(fdt, "ethernet");
1277 if (!path)
1278 return 0;
1279
1280 debug("ethernet alias found: %s\n", path);
1281
1282 offset = fdt_path_offset(fdt, path);
1283 if (offset < 0) {
1284 debug("ethernet alias points to absent node %s\n", path);
1285 return -ENOENT;
1286 }
1287
1288 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1289 if (err < 0)
1290 return err;
1291
1292 debug("MAC address: %pM\n", mac);
1293
1294 return 0;
1295}
1296
Thierry Redinge8dfad42019-03-21 19:10:02 +01001297static int fdtdec_init_reserved_memory(void *blob)
1298{
1299 int na, ns, node, err;
1300 fdt32_t value;
1301
1302 /* inherit #address-cells and #size-cells from the root node */
1303 na = fdt_address_cells(blob, 0);
1304 ns = fdt_size_cells(blob, 0);
1305
1306 node = fdt_add_subnode(blob, 0, "reserved-memory");
1307 if (node < 0)
1308 return node;
1309
1310 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1311 if (err < 0)
1312 return err;
1313
1314 value = cpu_to_fdt32(ns);
1315
1316 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1317 if (err < 0)
1318 return err;
1319
1320 value = cpu_to_fdt32(na);
1321
1322 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1323 if (err < 0)
1324 return err;
1325
1326 return node;
1327}
1328
1329int fdtdec_add_reserved_memory(void *blob, const char *basename,
1330 const struct fdt_memory *carveout,
Thierry Reding5e336912021-09-03 15:16:19 +02001331 const char **compatibles, unsigned int count,
Thierry Redingbedc4392021-09-03 15:16:21 +02001332 uint32_t *phandlep, unsigned long flags)
Thierry Redinge8dfad42019-03-21 19:10:02 +01001333{
1334 fdt32_t cells[4] = {}, *ptr = cells;
1335 uint32_t upper, lower, phandle;
1336 int parent, node, na, ns, err;
Thierry Reding26130012019-04-15 10:08:21 +02001337 fdt_size_t size;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001338 char name[64];
1339
1340 /* create an empty /reserved-memory node if one doesn't exist */
1341 parent = fdt_path_offset(blob, "/reserved-memory");
1342 if (parent < 0) {
1343 parent = fdtdec_init_reserved_memory(blob);
1344 if (parent < 0)
1345 return parent;
1346 }
1347
1348 /* only 1 or 2 #address-cells and #size-cells are supported */
1349 na = fdt_address_cells(blob, parent);
1350 if (na < 1 || na > 2)
1351 return -FDT_ERR_BADNCELLS;
1352
1353 ns = fdt_size_cells(blob, parent);
1354 if (ns < 1 || ns > 2)
1355 return -FDT_ERR_BADNCELLS;
1356
1357 /* find a matching node and return the phandle to that */
1358 fdt_for_each_subnode(node, blob, parent) {
1359 const char *name = fdt_get_name(blob, node, NULL);
Bin Menga26ad7a2020-05-19 23:38:32 -07001360 fdt_addr_t addr;
1361 fdt_size_t size;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001362
Bin Meng32d294b2020-05-19 23:38:33 -07001363 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1364 &size, false);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001365 if (addr == FDT_ADDR_T_NONE) {
1366 debug("failed to read address/size for %s\n", name);
1367 continue;
1368 }
1369
Atish Patrab57af062020-04-21 11:15:00 -07001370 if (addr == carveout->start && (addr + size - 1) ==
1371 carveout->end) {
Heiko Stuebner49723ac2019-10-23 16:46:38 +02001372 if (phandlep)
1373 *phandlep = fdt_get_phandle(blob, node);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001374 return 0;
1375 }
1376 }
1377
1378 /*
1379 * Unpack the start address and generate the name of the new node
1380 * base on the basename and the unit-address.
1381 */
Thierry Reding26130012019-04-15 10:08:21 +02001382 upper = upper_32_bits(carveout->start);
1383 lower = lower_32_bits(carveout->start);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001384
1385 if (na > 1 && upper > 0)
1386 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1387 lower);
1388 else {
1389 if (upper > 0) {
1390 debug("address %08x:%08x exceeds addressable space\n",
1391 upper, lower);
1392 return -FDT_ERR_BADVALUE;
1393 }
1394
1395 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1396 }
1397
1398 node = fdt_add_subnode(blob, parent, name);
1399 if (node < 0)
1400 return node;
1401
Thierry Redingbedc4392021-09-03 15:16:21 +02001402 if (flags & FDTDEC_RESERVED_MEMORY_NO_MAP) {
1403 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1404 if (err < 0)
1405 return err;
1406 }
1407
Heiko Stuebner754302f2019-10-23 16:46:39 +02001408 if (phandlep) {
1409 err = fdt_generate_phandle(blob, &phandle);
1410 if (err < 0)
1411 return err;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001412
Heiko Stuebner754302f2019-10-23 16:46:39 +02001413 err = fdtdec_set_phandle(blob, node, phandle);
1414 if (err < 0)
1415 return err;
1416 }
Thierry Redinge8dfad42019-03-21 19:10:02 +01001417
1418 /* store one or two address cells */
1419 if (na > 1)
1420 *ptr++ = cpu_to_fdt32(upper);
1421
1422 *ptr++ = cpu_to_fdt32(lower);
1423
1424 /* store one or two size cells */
Thierry Reding26130012019-04-15 10:08:21 +02001425 size = carveout->end - carveout->start + 1;
1426 upper = upper_32_bits(size);
1427 lower = lower_32_bits(size);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001428
1429 if (ns > 1)
1430 *ptr++ = cpu_to_fdt32(upper);
1431
1432 *ptr++ = cpu_to_fdt32(lower);
1433
1434 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1435 if (err < 0)
1436 return err;
1437
Thierry Reding5e336912021-09-03 15:16:19 +02001438 if (compatibles && count > 0) {
1439 size_t length = 0, len = 0;
1440 unsigned int i;
1441 char *buffer;
1442
1443 for (i = 0; i < count; i++)
1444 length += strlen(compatibles[i]) + 1;
1445
1446 buffer = malloc(length);
1447 if (!buffer)
1448 return -FDT_ERR_INTERNAL;
1449
1450 for (i = 0; i < count; i++)
1451 len += strlcpy(buffer + len, compatibles[i],
1452 length - len) + 1;
1453
1454 err = fdt_setprop(blob, node, "compatible", buffer, length);
1455 free(buffer);
1456 if (err < 0)
1457 return err;
1458 }
1459
Thierry Redinge8dfad42019-03-21 19:10:02 +01001460 /* return the phandle for the new node for the caller to use */
1461 if (phandlep)
1462 *phandlep = phandle;
1463
1464 return 0;
1465}
1466
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001467int fdtdec_get_carveout(const void *blob, const char *node,
1468 const char *prop_name, unsigned int index,
Thierry Reding5e336912021-09-03 15:16:19 +02001469 struct fdt_memory *carveout, const char **name,
Thierry Redingbedc4392021-09-03 15:16:21 +02001470 const char ***compatiblesp, unsigned int *countp,
1471 unsigned long *flags)
Thierry Redinge629b0d2019-03-21 19:10:03 +01001472{
1473 const fdt32_t *prop;
1474 uint32_t phandle;
1475 int offset, len;
1476 fdt_size_t size;
1477
1478 offset = fdt_path_offset(blob, node);
1479 if (offset < 0)
1480 return offset;
1481
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001482 prop = fdt_getprop(blob, offset, prop_name, &len);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001483 if (!prop) {
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001484 debug("failed to get %s for %s\n", prop_name, node);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001485 return -FDT_ERR_NOTFOUND;
1486 }
1487
1488 if ((len % sizeof(phandle)) != 0) {
1489 debug("invalid phandle property\n");
1490 return -FDT_ERR_BADPHANDLE;
1491 }
1492
1493 if (len < (sizeof(phandle) * (index + 1))) {
1494 debug("invalid phandle index\n");
Thierry Reding3dcc4cf2021-09-03 15:16:17 +02001495 return -FDT_ERR_NOTFOUND;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001496 }
1497
1498 phandle = fdt32_to_cpu(prop[index]);
1499
1500 offset = fdt_node_offset_by_phandle(blob, phandle);
1501 if (offset < 0) {
1502 debug("failed to find node for phandle %u\n", phandle);
1503 return offset;
1504 }
1505
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001506 if (name)
1507 *name = fdt_get_name(blob, offset, NULL);
1508
Thierry Reding5e336912021-09-03 15:16:19 +02001509 if (compatiblesp) {
1510 const char **compatibles = NULL;
1511 const char *start, *end, *ptr;
1512 unsigned int count = 0;
1513
1514 prop = fdt_getprop(blob, offset, "compatible", &len);
1515 if (!prop)
1516 goto skip_compat;
1517
1518 start = ptr = (const char *)prop;
1519 end = start + len;
1520
1521 while (ptr < end) {
1522 ptr = strchrnul(ptr, '\0');
1523 count++;
1524 ptr++;
1525 }
1526
1527 compatibles = malloc(sizeof(ptr) * count);
1528 if (!compatibles)
1529 return -FDT_ERR_INTERNAL;
1530
1531 ptr = start;
1532 count = 0;
1533
1534 while (ptr < end) {
1535 compatibles[count] = ptr;
1536 ptr = strchrnul(ptr, '\0');
1537 count++;
1538 ptr++;
1539 }
1540
1541skip_compat:
1542 *compatiblesp = compatibles;
1543
1544 if (countp)
1545 *countp = count;
1546 }
1547
Thierry Redinge629b0d2019-03-21 19:10:03 +01001548 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1549 "reg", 0, &size,
1550 true);
1551 if (carveout->start == FDT_ADDR_T_NONE) {
1552 debug("failed to read address/size from \"reg\" property\n");
1553 return -FDT_ERR_NOTFOUND;
1554 }
1555
1556 carveout->end = carveout->start + size - 1;
1557
Thierry Redingbedc4392021-09-03 15:16:21 +02001558 if (flags) {
1559 *flags = 0;
1560
1561 if (fdtdec_get_bool(blob, offset, "no-map"))
1562 *flags |= FDTDEC_RESERVED_MEMORY_NO_MAP;
1563 }
1564
Thierry Redinge629b0d2019-03-21 19:10:03 +01001565 return 0;
1566}
1567
1568int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Redingd6ad8072021-09-03 15:16:20 +02001569 unsigned int index, const struct fdt_memory *carveout,
1570 const char *name, const char **compatibles,
Thierry Redingbedc4392021-09-03 15:16:21 +02001571 unsigned int count, unsigned long flags)
Thierry Redinge629b0d2019-03-21 19:10:03 +01001572{
1573 uint32_t phandle;
Laurentiu Tudoref135222020-04-03 13:43:03 +03001574 int err, offset, len;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001575 fdt32_t value;
Laurentiu Tudoref135222020-04-03 13:43:03 +03001576 void *prop;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001577
Thierry Reding5e336912021-09-03 15:16:19 +02001578 err = fdtdec_add_reserved_memory(blob, name, carveout, compatibles,
Thierry Redingbedc4392021-09-03 15:16:21 +02001579 count, &phandle, flags);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001580 if (err < 0) {
1581 debug("failed to add reserved memory: %d\n", err);
1582 return err;
1583 }
1584
1585 offset = fdt_path_offset(blob, node);
1586 if (offset < 0) {
1587 debug("failed to find offset for node %s: %d\n", node, offset);
1588 return offset;
1589 }
1590
1591 value = cpu_to_fdt32(phandle);
1592
Laurentiu Tudoref135222020-04-03 13:43:03 +03001593 if (!fdt_getprop(blob, offset, prop_name, &len)) {
1594 if (len == -FDT_ERR_NOTFOUND)
1595 len = 0;
1596 else
1597 return len;
1598 }
1599
1600 if ((index + 1) * sizeof(value) > len) {
1601 err = fdt_setprop_placeholder(blob, offset, prop_name,
1602 (index + 1) * sizeof(value),
1603 &prop);
1604 if (err < 0) {
1605 debug("failed to resize reserved memory property: %s\n",
1606 fdt_strerror(err));
1607 return err;
1608 }
1609 }
1610
1611 err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1612 strlen(prop_name),
1613 index * sizeof(value),
1614 &value, sizeof(value));
Thierry Redinge629b0d2019-03-21 19:10:03 +01001615 if (err < 0) {
Laurentiu Tudoref135222020-04-03 13:43:03 +03001616 debug("failed to update %s property for node %s: %s\n",
1617 prop_name, node, fdt_strerror(err));
Thierry Redinge629b0d2019-03-21 19:10:03 +01001618 return err;
1619 }
1620
1621 return 0;
1622}
1623
Simon Glass37604392021-12-16 20:59:35 -07001624/* TODO(sjg@chromium.org): This function should not be weak */
Marek Vasutedeb6542020-04-11 21:18:59 +02001625__weak int fdtdec_board_setup(const void *fdt_blob)
1626{
1627 return 0;
1628}
1629
Simon Glasse1d46fa2021-12-16 20:59:24 -07001630/**
1631 * setup_multi_dtb_fit() - locate the correct dtb from a FIT
1632 *
1633 * This supports the CONFIG_MULTI_DTB_FIT feature, looking for the dtb in a
1634 * supplied FIT
1635 *
1636 * It accepts the current value of gd->fdt_blob, which points to the FIT, then
1637 * updates that gd->fdt_blob, to point to the chosen dtb so that U-Boot uses the
1638 * correct one
1639 */
1640static void setup_multi_dtb_fit(void)
1641{
Simon Glasse1d46fa2021-12-16 20:59:24 -07001642 void *blob;
1643
1644 /*
1645 * Try and uncompress the blob.
1646 * Unfortunately there is no way to know how big the input blob really
1647 * is. So let us set the maximum input size arbitrarily high. 16MB
1648 * ought to be more than enough for packed DTBs.
1649 */
1650 if (uncompress_blob(gd->fdt_blob, 0x1000000, &blob) == 0)
1651 gd->fdt_blob = blob;
1652
1653 /*
1654 * Check if blob is a FIT images containings DTBs.
1655 * If so, pick the most relevant
1656 */
1657 blob = locate_dtb_in_fit(gd->fdt_blob);
1658 if (blob) {
Simon Glass69daf5a2021-12-16 20:59:25 -07001659 gd_set_multi_dtb_fit(gd->fdt_blob);
Simon Glasse1d46fa2021-12-16 20:59:24 -07001660 gd->fdt_blob = blob;
Simon Glassbed6bc72021-12-16 20:59:33 -07001661 gd->fdt_src = FDTSRC_FIT;
Simon Glasse1d46fa2021-12-16 20:59:24 -07001662 }
Simon Glasse1d46fa2021-12-16 20:59:24 -07001663}
1664
Simon Glassa0877672015-02-27 22:06:35 -07001665int fdtdec_setup(void)
Simon Glass26b78b22015-02-27 22:06:34 -07001666{
Marek Vasutedeb6542020-04-11 21:18:59 +02001667 int ret;
Simon Glass2a3789b2021-12-16 20:59:30 -07001668
1669 /* The devicetree is typically appended to U-Boot */
Simon Glassbed6bc72021-12-16 20:59:33 -07001670 if (IS_ENABLED(CONFIG_OF_SEPARATE)) {
Simon Glass28b76512021-12-16 20:59:31 -07001671 gd->fdt_blob = fdt_find_separate();
Simon Glassbed6bc72021-12-16 20:59:33 -07001672 gd->fdt_src = FDTSRC_SEPARATE;
1673 } else { /* embed dtb in ELF file for testing / development */
Simon Glass28b76512021-12-16 20:59:31 -07001674 gd->fdt_blob = dtb_dt_embedded();
Simon Glassbed6bc72021-12-16 20:59:33 -07001675 gd->fdt_src = FDTSRC_EMBED;
1676 }
Simon Glass28b76512021-12-16 20:59:31 -07001677
1678 /* Allow the board to override the fdt address. */
1679 if (IS_ENABLED(CONFIG_OF_BOARD)) {
Simon Glass2a3789b2021-12-16 20:59:30 -07001680 gd->fdt_blob = board_fdt_blob_setup(&ret);
1681 if (ret)
1682 return ret;
Simon Glassbed6bc72021-12-16 20:59:33 -07001683 gd->fdt_src = FDTSRC_BOARD;
Simon Glass2a3789b2021-12-16 20:59:30 -07001684 }
1685
Simon Glassbed6bc72021-12-16 20:59:33 -07001686 /* Allow the early environment to override the fdt address */
Simon Glassbcafa8c2021-12-16 20:59:28 -07001687 if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
Simon Glassbed6bc72021-12-16 20:59:33 -07001688 ulong addr;
1689
1690 addr = env_get_hex("fdtcontroladdr", 0);
1691 if (addr) {
1692 gd->fdt_blob = map_sysmem(addr, 0);
1693 gd->fdt_src = FDTSRC_ENV;
1694 }
Simon Glassbcafa8c2021-12-16 20:59:28 -07001695 }
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001696
Simon Glasse1d46fa2021-12-16 20:59:24 -07001697 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
1698 setup_multi_dtb_fit();
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001699
Simon Glass2c62a942022-12-21 16:08:20 -07001700 ret = fdtdec_prepare_fdt(gd->fdt_blob);
Marek Vasutedeb6542020-04-11 21:18:59 +02001701 if (!ret)
1702 ret = fdtdec_board_setup(gd->fdt_blob);
Simon Glassba8457b2022-09-06 20:27:19 -06001703 oftree_reset();
1704
Marek Vasutedeb6542020-04-11 21:18:59 +02001705 return ret;
Simon Glass26b78b22015-02-27 22:06:34 -07001706}
1707
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001708int fdtdec_resetup(int *rescan)
1709{
1710 void *fdt_blob;
1711
1712 /*
1713 * If the current DTB is part of a compressed FIT image,
1714 * try to locate the best match from the uncompressed
1715 * FIT image stillpresent there. Save the time and space
1716 * required to uncompress it again.
1717 */
Simon Glass69daf5a2021-12-16 20:59:25 -07001718 if (gd_multi_dtb_fit()) {
1719 fdt_blob = locate_dtb_in_fit(gd_multi_dtb_fit());
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001720
1721 if (fdt_blob == gd->fdt_blob) {
1722 /*
1723 * The best match did not change. no need to tear down
1724 * the DM and rescan the fdt.
1725 */
1726 *rescan = 0;
1727 return 0;
1728 }
1729
1730 *rescan = 1;
1731 gd->fdt_blob = fdt_blob;
Simon Glass2c62a942022-12-21 16:08:20 -07001732 return fdtdec_prepare_fdt(fdt_blob);
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001733 }
1734
1735 /*
1736 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1737 * not a FIT image containings DTB, but a single DTB. There is no need
1738 * to teard down DM and rescan the DT in this case.
1739 */
1740 *rescan = 0;
1741 return 0;
1742}
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001743
Michael Prattfa28d142018-06-11 13:07:09 -06001744int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +09001745 phys_addr_t *basep, phys_size_t *sizep,
1746 struct bd_info *bd)
Michael Prattfa28d142018-06-11 13:07:09 -06001747{
1748 int addr_cells, size_cells;
1749 const u32 *cell, *end;
1750 u64 total_size, size, addr;
1751 int node, child;
1752 bool auto_size;
1753 int bank;
1754 int len;
1755
1756 debug("%s: board_id=%d\n", __func__, board_id);
1757 if (!area)
1758 area = "/memory";
1759 node = fdt_path_offset(blob, area);
1760 if (node < 0) {
1761 debug("No %s node found\n", area);
1762 return -ENOENT;
1763 }
1764
1765 cell = fdt_getprop(blob, node, "reg", &len);
1766 if (!cell) {
1767 debug("No reg property found\n");
1768 return -ENOENT;
1769 }
1770
1771 addr_cells = fdt_address_cells(blob, node);
1772 size_cells = fdt_size_cells(blob, node);
1773
1774 /* Check the board id and mask */
1775 for (child = fdt_first_subnode(blob, node);
1776 child >= 0;
1777 child = fdt_next_subnode(blob, child)) {
1778 int match_mask, match_value;
1779
1780 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1781 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1782
1783 if (match_value >= 0 &&
1784 ((board_id & match_mask) == match_value)) {
1785 /* Found matching mask */
1786 debug("Found matching mask %d\n", match_mask);
1787 node = child;
1788 cell = fdt_getprop(blob, node, "reg", &len);
1789 if (!cell) {
1790 debug("No memory-banks property found\n");
1791 return -EINVAL;
1792 }
1793 break;
1794 }
1795 }
1796 /* Note: if no matching subnode was found we use the parent node */
1797
1798 if (bd) {
1799 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1800 CONFIG_NR_DRAM_BANKS);
1801 }
1802
1803 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1804
1805 total_size = 0;
1806 end = cell + len / 4 - addr_cells - size_cells;
1807 debug("cell at %p, end %p\n", cell, end);
1808 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1809 if (cell > end)
1810 break;
1811 addr = 0;
1812 if (addr_cells == 2)
1813 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1814 addr += fdt32_to_cpu(*cell++);
1815 if (bd)
1816 bd->bi_dram[bank].start = addr;
1817 if (basep && !bank)
1818 *basep = (phys_addr_t)addr;
1819
1820 size = 0;
1821 if (size_cells == 2)
1822 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1823 size += fdt32_to_cpu(*cell++);
1824
1825 if (auto_size) {
1826 u64 new_size;
1827
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001828 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Prattfa28d142018-06-11 13:07:09 -06001829 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1830 if (new_size == size) {
1831 debug("OK\n");
1832 } else {
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001833 debug("sized to %llx\n", new_size);
Michael Prattfa28d142018-06-11 13:07:09 -06001834 size = new_size;
1835 }
1836 }
1837
1838 if (bd)
1839 bd->bi_dram[bank].size = size;
1840 total_size += size;
1841 }
1842
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001843 debug("Memory size %llu\n", total_size);
Michael Prattfa28d142018-06-11 13:07:09 -06001844 if (sizep)
1845 *sizep = (phys_size_t)total_size;
1846
1847 return 0;
1848}
Michael Prattfa28d142018-06-11 13:07:09 -06001849
Simon Glass26b78b22015-02-27 22:06:34 -07001850#endif /* !USE_HOSTCC */