blob: 0827e16859f1994793d53d0de45243e16ffda011 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassb5220bc2011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glassb5220bc2011-10-24 19:15:32 +00004 */
5
Heiko Schocher29a23f92014-03-03 12:19:30 +01006#ifndef USE_HOSTCC
Simon Glassb5220bc2011-10-24 19:15:32 +00007#include <common.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +02008#include <boot_fit.h>
Simon Glass4e4bf942022-07-31 12:28:48 -06009#include <display_options.h>
Simon Glassfcc0a872015-11-29 13:17:54 -070010#include <dm.h>
Simon Glassdb41d652019-12-28 10:45:07 -070011#include <hang.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070012#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070014#include <malloc.h>
Simon Glass90526e92020-05-10 11:39:56 -060015#include <net.h>
Simon Glassb62d3492022-12-21 16:08:19 -070016#include <spl.h>
Simon Glass9eef56d2019-08-01 09:46:48 -060017#include <env.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020018#include <errno.h>
19#include <fdtdec.h>
20#include <fdt_support.h>
Simon Glass0c670fc2019-08-01 09:46:36 -060021#include <gzip.h>
Heinrich Schuchardtf980c992018-11-18 17:58:50 +010022#include <mapmem.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090023#include <linux/libfdt.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020024#include <serial.h>
Simon Glass401d1c42020-10-30 21:38:53 -060025#include <asm/global_data.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020026#include <asm/sections.h>
Simon Glassee88ba72022-09-06 20:27:19 -060027#include <dm/ofnode.h>
28#include <dm/of_extra.h>
Simon Glass5c33c9f2014-07-23 06:55:09 -060029#include <linux/ctype.h>
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +020030#include <linux/lzo.h>
Michal Simekc2f09502020-07-10 13:34:44 +020031#include <linux/ioport.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000032
33DECLARE_GLOBAL_DATA_PTR;
34
35/*
36 * Here are the type we know about. One day we might allow drivers to
37 * register. For now we just put them here. The COMPAT macro allows us to
38 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass01a227d2016-06-19 17:33:13 -060039 *
40 * NOTE: This list is basically a TODO list for things that need to be
41 * converted to driver model. So don't add new things here unless there is a
42 * good reason why driver-model conversion is infeasible. Examples include
43 * things which are used before driver model is available.
Simon Glassb5220bc2011-10-24 19:15:32 +000044 */
45#define COMPAT(id, name) name
46static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000047 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000048 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
49 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin312693c2012-07-29 20:53:29 +000050 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Reding79c7a902014-12-09 22:25:09 -070051 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warren7aaa5a62015-03-04 16:36:00 -070052 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000053 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053054 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000055 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010056 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090057 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrong51e4e3e2019-02-10 10:16:21 +000058 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053059 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070060 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Mengc89ada02015-02-05 23:42:26 +080061 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasut6ab00db2015-07-25 19:33:56 +020062 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut129adf52015-07-25 10:48:14 +020063 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutef4b01b2015-12-05 19:28:44 +010064 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass39ea0ee2016-06-19 17:33:14 -060065 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
66 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
67 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Boris Brezillon4ccae812016-06-15 21:09:23 +020068 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
Ley Foon Tane11b5e82017-04-05 17:32:47 +080069 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
70 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
71 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
72 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
73 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
74 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
75 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
76 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +080077 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
78 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasut19c8fc72018-05-12 11:56:10 +020079 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glassb5220bc2011-10-24 19:15:32 +000080};
81
Simon Glassff66e7b2021-12-16 20:59:34 -070082static const char *const fdt_src_name[] = {
83 [FDTSRC_SEPARATE] = "separate",
84 [FDTSRC_FIT] = "fit",
85 [FDTSRC_BOARD] = "board",
86 [FDTSRC_EMBED] = "embed",
87 [FDTSRC_ENV] = "env",
88};
89
90const char *fdtdec_get_srcname(void)
91{
92 return fdt_src_name[gd->fdt_src];
93}
94
Simon Glassa53f4a22012-01-17 08:20:50 +000095const char *fdtdec_get_compatible(enum fdt_compat_id id)
96{
97 /* We allow reading of the 'unknown' ID for testing purposes */
98 assert(id >= 0 && id < COMPAT_COUNT);
99 return compat_names[id];
100}
101
Stephen Warren02464e32015-08-06 15:31:02 -0600102fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100103 const char *prop_name, int index, int na,
104 int ns, fdt_size_t *sizep,
105 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600106{
107 const fdt32_t *prop, *prop_end;
108 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
109 int len;
110 fdt_addr_t addr;
111
112 debug("%s: %s: ", __func__, prop_name);
113
Stephen Warren02464e32015-08-06 15:31:02 -0600114 prop = fdt_getprop(blob, node, prop_name, &len);
115 if (!prop) {
116 debug("(not found)\n");
117 return FDT_ADDR_T_NONE;
118 }
119 prop_end = prop + (len / sizeof(*prop));
120
121 prop_addr = prop + (index * (na + ns));
122 prop_size = prop_addr + na;
123 prop_after_size = prop_size + ns;
124 if (prop_after_size > prop_end) {
125 debug("(not enough data: expected >= %d cells, got %d cells)\n",
126 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
127 return FDT_ADDR_T_NONE;
128 }
129
Vignesh R5efa1bf2017-03-20 10:04:38 +0530130#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren6e06acb2016-08-05 09:47:51 -0600131 if (translate)
132 addr = fdt_translate_address(blob, node, prop_addr);
133 else
134#endif
135 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren02464e32015-08-06 15:31:02 -0600136
137 if (sizep) {
138 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glassfd30d2c2016-02-29 15:25:37 -0700139 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
140 (unsigned long long)*sizep);
Stephen Warren02464e32015-08-06 15:31:02 -0600141 } else {
Simon Glassfd30d2c2016-02-29 15:25:37 -0700142 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren02464e32015-08-06 15:31:02 -0600143 }
144
145 return addr;
146}
147
148fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Six2e386622018-01-15 11:07:35 +0100149 int node, const char *prop_name,
150 int index, fdt_size_t *sizep,
151 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600152{
153 int na, ns;
154
155 debug("%s: ", __func__);
156
157 na = fdt_address_cells(blob, parent);
158 if (na < 1) {
159 debug("(bad #address-cells)\n");
160 return FDT_ADDR_T_NONE;
161 }
162
163 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczakff0a6352015-09-30 13:14:50 +0200164 if (ns < 0) {
Stephen Warren02464e32015-08-06 15:31:02 -0600165 debug("(bad #size-cells)\n");
166 return FDT_ADDR_T_NONE;
167 }
168
169 debug("na=%d, ns=%d, ", na, ns);
170
171 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600172 ns, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600173}
174
175fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100176 const char *prop_name, int index,
177 fdt_size_t *sizep,
178 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600179{
180 int parent;
181
182 debug("%s: ", __func__);
183
184 parent = fdt_parent_offset(blob, node);
185 if (parent < 0) {
186 debug("(no parent found)\n");
187 return FDT_ADDR_T_NONE;
188 }
189
190 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600191 index, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600192}
193
Simon Glass4397a2a2013-03-19 04:58:51 +0000194fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100195 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +0000196{
Stephen Warrend93b9a02015-09-25 10:11:41 -0600197 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
198
Stephen Warren02464e32015-08-06 15:31:02 -0600199 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
200 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren6e06acb2016-08-05 09:47:51 -0600201 ns, sizep, false);
Simon Glassb5220bc2011-10-24 19:15:32 +0000202}
203
Mario Six2e386622018-01-15 11:07:35 +0100204fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glass4397a2a2013-03-19 04:58:51 +0000205{
206 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
207}
208
Bin Menga62e84d2014-12-31 16:05:11 +0800209int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
210{
211 const char *list, *end;
212 int len;
213
214 list = fdt_getprop(blob, node, "compatible", &len);
215 if (!list)
216 return -ENOENT;
217
218 end = list + len;
219 while (list < end) {
Bin Menga62e84d2014-12-31 16:05:11 +0800220 len = strlen(list);
221 if (len >= strlen("pciVVVV,DDDD")) {
Mario Sixb79221a2018-01-15 11:07:36 +0100222 char *s = strstr(list, "pci");
Bin Menga62e84d2014-12-31 16:05:11 +0800223
224 /*
225 * check if the string is something like pciVVVV,DDDD.RR
226 * or just pciVVVV,DDDD
227 */
228 if (s && s[7] == ',' &&
229 (s[12] == '.' || s[12] == 0)) {
230 s += 3;
231 *vendor = simple_strtol(s, NULL, 16);
232
233 s += 5;
234 *device = simple_strtol(s, NULL, 16);
235
236 return 0;
237 }
Bin Menga62e84d2014-12-31 16:05:11 +0800238 }
Bin Mengbc6351e2015-08-20 06:40:25 -0700239 list += (len + 1);
Bin Menga62e84d2014-12-31 16:05:11 +0800240 }
241
242 return -ENOENT;
243}
244
Simon Glass194fca92020-01-27 08:49:38 -0700245int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassfcc0a872015-11-29 13:17:54 -0700246 u32 *bar)
Bin Menga62e84d2014-12-31 16:05:11 +0800247{
Bin Menga62e84d2014-12-31 16:05:11 +0800248 int barnum;
Bin Menga62e84d2014-12-31 16:05:11 +0800249
250 /* extract the bar number from fdt_pci_addr */
251 barnum = addr->phys_hi & 0xff;
Mario Sixb79221a2018-01-15 11:07:36 +0100252 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Menga62e84d2014-12-31 16:05:11 +0800253 return -EINVAL;
254
255 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassb717f2f2021-08-01 18:54:18 -0600256
Simon Glassfcc0a872015-11-29 13:17:54 -0700257 *bar = dm_pci_read_bar32(dev, barnum);
Bin Menga62e84d2014-12-31 16:05:11 +0800258
259 return 0;
260}
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700261
262int fdtdec_get_pci_bus_range(const void *blob, int node,
263 struct fdt_resource *res)
264{
265 const u32 *values;
266 int len;
267
268 values = fdt_getprop(blob, node, "bus-range", &len);
269 if (!values || len < sizeof(*values) * 2)
270 return -EINVAL;
271
272 res->start = fdt32_to_cpu(*values++);
273 res->end = fdt32_to_cpu(*values);
274
275 return 0;
276}
Bin Menga62e84d2014-12-31 16:05:11 +0800277
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000278uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100279 uint64_t default_val)
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000280{
Jean-Jacques Hiblotd60ae4c2019-10-22 10:05:22 +0200281 const unaligned_fdt64_t *cell64;
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000282 int length;
283
284 cell64 = fdt_getprop(blob, node, prop_name, &length);
285 if (!cell64 || length < sizeof(*cell64))
286 return default_val;
287
288 return fdt64_to_cpu(*cell64);
289}
290
Simon Glassf88fe2d2012-02-27 10:52:34 +0000291int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000292{
293 const char *cell;
294
Simon Glassf88fe2d2012-02-27 10:52:34 +0000295 /*
296 * It should say "okay", so only allow that. Some fdts use "ok" but
297 * this is a bug. Please fix your device tree source file. See here
298 * for discussion:
299 *
300 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
301 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000302 cell = fdt_getprop(blob, node, "status", NULL);
303 if (cell)
Mario Sixb79221a2018-01-15 11:07:36 +0100304 return strcmp(cell, "okay") == 0;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000305 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000306}
307
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500308enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000309{
310 enum fdt_compat_id id;
311
312 /* Search our drivers */
313 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Sixb79221a2018-01-15 11:07:36 +0100314 if (fdt_node_check_compatible(blob, node,
315 compat_names[id]) == 0)
Simon Glassb5220bc2011-10-24 19:15:32 +0000316 return id;
317 return COMPAT_UNKNOWN;
318}
319
Mario Six2e386622018-01-15 11:07:35 +0100320int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glassb5220bc2011-10-24 19:15:32 +0000321{
322 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
323}
324
Simon Glass3ddecfc2012-04-02 13:18:42 +0000325int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100326 enum fdt_compat_id id, int *depthp)
Simon Glass3ddecfc2012-04-02 13:18:42 +0000327{
328 do {
329 node = fdt_next_node(blob, node, depthp);
330 } while (*depthp > 1);
331
332 /* If this is a direct subnode, and compatible, return it */
333 if (*depthp == 1 && 0 == fdt_node_check_compatible(
334 blob, node, compat_names[id]))
335 return node;
336
337 return -FDT_ERR_NOTFOUND;
338}
339
Mario Six2e386622018-01-15 11:07:35 +0100340int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
341 int *upto)
Simon Glassb5220bc2011-10-24 19:15:32 +0000342{
343#define MAX_STR_LEN 20
344 char str[MAX_STR_LEN + 20];
345 int node, err;
346
347 /* snprintf() is not available */
348 assert(strlen(name) < MAX_STR_LEN);
349 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000350 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000351 if (node < 0)
352 return node;
353 err = fdt_node_check_compatible(blob, node, compat_names[id]);
354 if (err < 0)
355 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000356 if (err)
357 return -FDT_ERR_NOTFOUND;
358 (*upto)++;
359 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000360}
361
Simon Glassa53f4a22012-01-17 08:20:50 +0000362int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100363 enum fdt_compat_id id, int *node_list,
364 int maxcount)
Simon Glassa53f4a22012-01-17 08:20:50 +0000365{
Simon Glassc6782272012-02-03 15:13:53 +0000366 memset(node_list, '\0', sizeof(*node_list) * maxcount);
367
368 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
369}
370
371/* TODO: Can we tighten this code up a little? */
372int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100373 enum fdt_compat_id id, int *node_list,
374 int maxcount)
Simon Glassc6782272012-02-03 15:13:53 +0000375{
Simon Glassa53f4a22012-01-17 08:20:50 +0000376 int name_len = strlen(name);
377 int nodes[maxcount];
378 int num_found = 0;
379 int offset, node;
380 int alias_node;
381 int count;
382 int i, j;
383
384 /* find the alias node if present */
385 alias_node = fdt_path_offset(blob, "/aliases");
386
387 /*
388 * start with nothing, and we can assume that the root node can't
389 * match
390 */
391 memset(nodes, '\0', sizeof(nodes));
392
393 /* First find all the compatible nodes */
394 for (node = count = 0; node >= 0 && count < maxcount;) {
395 node = fdtdec_next_compatible(blob, node, id);
396 if (node >= 0)
397 nodes[count++] = node;
398 }
399 if (node >= 0)
400 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Six2e386622018-01-15 11:07:35 +0100401 __func__, name);
Simon Glassa53f4a22012-01-17 08:20:50 +0000402
403 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000404 for (offset = fdt_first_property_offset(blob, alias_node);
405 offset > 0;
406 offset = fdt_next_property_offset(blob, offset)) {
407 const struct fdt_property *prop;
408 const char *path;
409 int number;
410 int found;
411
412 node = 0;
413 prop = fdt_get_property_by_offset(blob, offset, NULL);
414 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
415 if (prop->len && 0 == strncmp(path, name, name_len))
416 node = fdt_path_offset(blob, prop->data);
417 if (node <= 0)
418 continue;
419
420 /* Get the alias number */
Simon Glass0b1284e2021-07-24 09:03:30 -0600421 number = dectoul(path + name_len, NULL);
Simon Glassa53f4a22012-01-17 08:20:50 +0000422 if (number < 0 || number >= maxcount) {
423 debug("%s: warning: alias '%s' is out of range\n",
Mario Six2e386622018-01-15 11:07:35 +0100424 __func__, path);
Simon Glassa53f4a22012-01-17 08:20:50 +0000425 continue;
426 }
427
428 /* Make sure the node we found is actually in our list! */
429 found = -1;
430 for (j = 0; j < count; j++)
431 if (nodes[j] == node) {
432 found = j;
433 break;
434 }
435
436 if (found == -1) {
437 debug("%s: warning: alias '%s' points to a node "
438 "'%s' that is missing or is not compatible "
439 " with '%s'\n", __func__, path,
440 fdt_get_name(blob, node, NULL),
441 compat_names[id]);
442 continue;
443 }
444
445 /*
446 * Add this node to our list in the right place, and mark
447 * it as done.
448 */
449 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000450 if (node_list[number]) {
451 debug("%s: warning: alias '%s' requires that "
452 "a node be placed in the list in a "
453 "position which is already filled by "
454 "node '%s'\n", __func__, path,
455 fdt_get_name(blob, node, NULL));
456 continue;
457 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000458 node_list[number] = node;
459 if (number >= num_found)
460 num_found = number + 1;
461 }
Simon Glassc6782272012-02-03 15:13:53 +0000462 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000463 }
464
465 /* Add any nodes not mentioned by an alias */
466 for (i = j = 0; i < maxcount; i++) {
467 if (!node_list[i]) {
468 for (; j < maxcount; j++)
469 if (nodes[j] &&
Mario Six2e386622018-01-15 11:07:35 +0100470 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassa53f4a22012-01-17 08:20:50 +0000471 break;
472
473 /* Have we run out of nodes to add? */
474 if (j == maxcount)
475 break;
476
477 assert(!node_list[i]);
478 node_list[i] = nodes[j++];
479 if (i >= num_found)
480 num_found = i + 1;
481 }
482 }
483
484 return num_found;
485}
486
Simon Glass5c33c9f2014-07-23 06:55:09 -0600487int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
488 int *seqp)
489{
490 int base_len = strlen(base);
491 const char *find_name;
492 int find_namelen;
493 int prop_offset;
494 int aliases;
495
496 find_name = fdt_get_name(blob, offset, &find_namelen);
497 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
498
499 aliases = fdt_path_offset(blob, "/aliases");
500 for (prop_offset = fdt_first_property_offset(blob, aliases);
501 prop_offset > 0;
502 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
503 const char *prop;
504 const char *name;
505 const char *slash;
Simon Glassc4af6732015-06-23 15:39:08 -0600506 int len, val;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600507
508 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
509 debug(" - %s, %s\n", name, prop);
510 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
511 strncmp(name, base, base_len))
512 continue;
513
514 slash = strrchr(prop, '/');
515 if (strcmp(slash + 1, find_name))
516 continue;
Aswath Govindrajuc5891322020-12-03 10:55:45 +0530517
518 /*
519 * Adding an extra check to distinguish DT nodes with
520 * same name
521 */
Simon Glassebc1d502022-12-21 16:08:28 -0700522 if (IS_ENABLED(CONFIG_PHANDLE_CHECK_SEQ)) {
523 if (fdt_get_phandle(blob, offset) !=
524 fdt_get_phandle(blob, fdt_path_offset(blob, prop)))
525 continue;
526 }
Aswath Govindrajuc5891322020-12-03 10:55:45 +0530527
Simon Glassc4af6732015-06-23 15:39:08 -0600528 val = trailing_strtol(name);
529 if (val != -1) {
530 *seqp = val;
531 debug("Found seq %d\n", *seqp);
532 return 0;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600533 }
534 }
535
536 debug("Not found\n");
537 return -ENOENT;
538}
539
Michal Simek003c9dc2019-01-31 16:30:58 +0100540int fdtdec_get_alias_highest_id(const void *blob, const char *base)
541{
542 int base_len = strlen(base);
543 int prop_offset;
544 int aliases;
545 int max = -1;
546
547 debug("Looking for highest alias id for '%s'\n", base);
548
549 aliases = fdt_path_offset(blob, "/aliases");
550 for (prop_offset = fdt_first_property_offset(blob, aliases);
551 prop_offset > 0;
552 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
553 const char *prop;
554 const char *name;
555 int len, val;
556
557 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
558 debug(" - %s, %s\n", name, prop);
559 if (*prop != '/' || prop[len - 1] ||
560 strncmp(name, base, base_len))
561 continue;
562
563 val = trailing_strtol(name);
564 if (val > max) {
565 debug("Found seq %d\n", val);
566 max = val;
567 }
568 }
569
570 return max;
571}
572
Simon Glass3bc37a52015-10-17 19:41:14 -0600573const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
574{
575 int chosen_node;
576
577 if (!blob)
578 return NULL;
579 chosen_node = fdt_path_offset(blob, "/chosen");
580 return fdt_getprop(blob, chosen_node, name, NULL);
581}
582
Simon Glassaac07d42014-09-04 16:27:24 -0600583int fdtdec_get_chosen_node(const void *blob, const char *name)
584{
585 const char *prop;
Simon Glassaac07d42014-09-04 16:27:24 -0600586
Simon Glass3bc37a52015-10-17 19:41:14 -0600587 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glassaac07d42014-09-04 16:27:24 -0600588 if (!prop)
589 return -FDT_ERR_NOTFOUND;
590 return fdt_path_offset(blob, prop);
591}
592
Simon Glassb62d3492022-12-21 16:08:19 -0700593/**
594 * fdtdec_prepare_fdt() - Check we have a valid fdt available to control U-Boot
595 *
Simon Glassec4f3272022-12-21 16:08:20 -0700596 * @blob: Blob to check
597 *
Simon Glassb62d3492022-12-21 16:08:19 -0700598 * If not, a message is printed to the console if the console is ready.
599 *
600 * Return: 0 if all ok, -ENOENT if not
Simon Glassb5220bc2011-10-24 19:15:32 +0000601 */
Simon Glassec4f3272022-12-21 16:08:20 -0700602static int fdtdec_prepare_fdt(const void *blob)
Simon Glassb5220bc2011-10-24 19:15:32 +0000603{
Simon Glassec4f3272022-12-21 16:08:20 -0700604 if (!blob || ((uintptr_t)blob & 3) || fdt_check_header(blob)) {
Simon Glassb62d3492022-12-21 16:08:19 -0700605 if (spl_phase() <= PHASE_SPL) {
606 puts("Missing DTB\n");
607 } else {
608 printf("No valid device tree binary found at %p\n",
Simon Glassec4f3272022-12-21 16:08:20 -0700609 blob);
610 if (_DEBUG && blob) {
611 printf("fdt_blob=%p\n", blob);
612 print_buffer((ulong)blob, blob, 4, 32, 0);
Simon Glassb62d3492022-12-21 16:08:19 -0700613 }
Simon Glasscb5f97f702015-06-23 15:39:09 -0600614 }
Simon Glassb62d3492022-12-21 16:08:19 -0700615 return -ENOENT;
Simon Glass9a263e52012-03-28 10:08:24 +0000616 }
Simon Glassb62d3492022-12-21 16:08:19 -0700617
Simon Glassb5220bc2011-10-24 19:15:32 +0000618 return 0;
619}
Simon Glassd17da652012-02-27 10:52:35 +0000620
Simon Glassc662d0b2022-12-21 16:08:18 -0700621int fdtdec_check_fdt(void)
622{
623 /*
624 * We must have an FDT, but we cannot panic() yet since the console
625 * is not ready. So for now, just assert(). Boards which need an early
626 * FDT (prior to console ready) will need to make their own
627 * arrangements and do their own checks.
628 */
Simon Glassec4f3272022-12-21 16:08:20 -0700629 assert(!fdtdec_prepare_fdt(gd->fdt_blob));
Simon Glassc662d0b2022-12-21 16:08:18 -0700630 return 0;
631}
632
Simon Glassd17da652012-02-27 10:52:35 +0000633int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
634{
635 const u32 *phandle;
636 int lookup;
637
Simon Glass1cb23232012-07-12 05:25:01 +0000638 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000639 phandle = fdt_getprop(blob, node, prop_name, NULL);
640 if (!phandle)
641 return -FDT_ERR_NOTFOUND;
642
643 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
644 return lookup;
645}
646
647/**
648 * Look up a property in a node and check that it has a minimum length.
649 *
650 * @param blob FDT blob
651 * @param node node to examine
652 * @param prop_name name of property to find
653 * @param min_len minimum property length in bytes
654 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
655 found, or -FDT_ERR_BADLAYOUT if not enough data
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100656 * Return: pointer to cell, which is only valid if err == 0
Simon Glassd17da652012-02-27 10:52:35 +0000657 */
658static const void *get_prop_check_min_len(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100659 const char *prop_name, int min_len,
660 int *err)
Simon Glassd17da652012-02-27 10:52:35 +0000661{
662 const void *cell;
663 int len;
664
665 debug("%s: %s\n", __func__, prop_name);
666 cell = fdt_getprop(blob, node, prop_name, &len);
667 if (!cell)
668 *err = -FDT_ERR_NOTFOUND;
669 else if (len < min_len)
670 *err = -FDT_ERR_BADLAYOUT;
671 else
672 *err = 0;
673 return cell;
674}
675
676int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100677 u32 *array, int count)
Simon Glassd17da652012-02-27 10:52:35 +0000678{
679 const u32 *cell;
Mario Sixb79221a2018-01-15 11:07:36 +0100680 int err = 0;
Simon Glassd17da652012-02-27 10:52:35 +0000681
682 debug("%s: %s\n", __func__, prop_name);
683 cell = get_prop_check_min_len(blob, node, prop_name,
684 sizeof(u32) * count, &err);
685 if (!err) {
Mario Sixb79221a2018-01-15 11:07:36 +0100686 int i;
687
Simon Glassd17da652012-02-27 10:52:35 +0000688 for (i = 0; i < count; i++)
689 array[i] = fdt32_to_cpu(cell[i]);
690 }
691 return err;
692}
693
Simon Glassa9f04d42014-11-10 18:00:19 -0700694int fdtdec_get_int_array_count(const void *blob, int node,
695 const char *prop_name, u32 *array, int count)
696{
697 const u32 *cell;
698 int len, elems;
699 int i;
700
701 debug("%s: %s\n", __func__, prop_name);
702 cell = fdt_getprop(blob, node, prop_name, &len);
703 if (!cell)
704 return -FDT_ERR_NOTFOUND;
705 elems = len / sizeof(u32);
706 if (count > elems)
707 count = elems;
708 for (i = 0; i < count; i++)
709 array[i] = fdt32_to_cpu(cell[i]);
710
711 return count;
712}
713
Simon Glass96875e72012-04-02 13:18:41 +0000714const u32 *fdtdec_locate_array(const void *blob, int node,
715 const char *prop_name, int count)
716{
717 const u32 *cell;
718 int err;
719
720 cell = get_prop_check_min_len(blob, node, prop_name,
721 sizeof(u32) * count, &err);
722 return err ? NULL : cell;
723}
724
Simon Glassd17da652012-02-27 10:52:35 +0000725int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
726{
727 const s32 *cell;
728 int len;
729
730 debug("%s: %s\n", __func__, prop_name);
731 cell = fdt_getprop(blob, node, prop_name, &len);
732 return cell != NULL;
733}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000734
Simon Glass57068a72015-01-05 20:05:26 -0700735int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
736 const char *list_name,
737 const char *cells_name,
738 int cell_count, int index,
739 struct fdtdec_phandle_args *out_args)
740{
741 const __be32 *list, *list_end;
742 int rc = 0, size, cur_index = 0;
743 uint32_t count = 0;
744 int node = -1;
745 int phandle;
746
747 /* Retrieve the phandle list property */
748 list = fdt_getprop(blob, src_node, list_name, &size);
749 if (!list)
750 return -ENOENT;
751 list_end = list + size / sizeof(*list);
752
753 /* Loop over the phandles until all the requested entry is found */
754 while (list < list_end) {
755 rc = -EINVAL;
756 count = 0;
757
758 /*
759 * If phandle is 0, then it is an empty entry with no
760 * arguments. Skip forward to the next entry.
761 */
762 phandle = be32_to_cpup(list++);
763 if (phandle) {
764 /*
765 * Find the provider node and parse the #*-cells
766 * property to determine the argument length.
767 *
768 * This is not needed if the cell count is hard-coded
769 * (i.e. cells_name not set, but cell_count is set),
770 * except when we're going to return the found node
771 * below.
772 */
773 if (cells_name || cur_index == index) {
774 node = fdt_node_offset_by_phandle(blob,
775 phandle);
Patrick Delaunaycba487c2020-09-25 09:41:15 +0200776 if (node < 0) {
Simon Glass57068a72015-01-05 20:05:26 -0700777 debug("%s: could not find phandle\n",
778 fdt_get_name(blob, src_node,
779 NULL));
780 goto err;
781 }
782 }
783
784 if (cells_name) {
785 count = fdtdec_get_int(blob, node, cells_name,
786 -1);
787 if (count == -1) {
788 debug("%s: could not get %s for %s\n",
789 fdt_get_name(blob, src_node,
790 NULL),
791 cells_name,
792 fdt_get_name(blob, node,
793 NULL));
794 goto err;
795 }
796 } else {
797 count = cell_count;
798 }
799
800 /*
801 * Make sure that the arguments actually fit in the
802 * remaining property data length
803 */
804 if (list + count > list_end) {
805 debug("%s: arguments longer than property\n",
806 fdt_get_name(blob, src_node, NULL));
807 goto err;
808 }
809 }
810
811 /*
812 * All of the error cases above bail out of the loop, so at
813 * this point, the parsing is successful. If the requested
814 * index matches, then fill the out_args structure and return,
815 * or return -ENOENT for an empty entry.
816 */
817 rc = -ENOENT;
818 if (cur_index == index) {
819 if (!phandle)
820 goto err;
821
822 if (out_args) {
823 int i;
824
825 if (count > MAX_PHANDLE_ARGS) {
826 debug("%s: too many arguments %d\n",
827 fdt_get_name(blob, src_node,
828 NULL), count);
829 count = MAX_PHANDLE_ARGS;
830 }
831 out_args->node = node;
832 out_args->args_count = count;
833 for (i = 0; i < count; i++) {
834 out_args->args[i] =
835 be32_to_cpup(list++);
836 }
837 }
838
839 /* Found it! return success */
840 return 0;
841 }
842
843 node = -1;
844 list += count;
845 cur_index++;
846 }
847
848 /*
849 * Result will be one of:
850 * -ENOENT : index is for empty phandle
851 * -EINVAL : parsing error on data
852 * [1..n] : Number of phandle (count mode; when index = -1)
853 */
854 rc = index < 0 ? cur_index : -ENOENT;
855 err:
856 return rc;
857}
858
Anton Staffbed4d892012-04-17 09:01:28 +0000859int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100860 u8 *array, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000861{
862 const u8 *cell;
863 int err;
864
865 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
866 if (!err)
867 memcpy(array, cell, count);
868 return err;
869}
870
871const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100872 const char *prop_name, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000873{
874 const u8 *cell;
875 int err;
876
877 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
878 if (err)
879 return NULL;
880 return cell;
881}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000882
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700883u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Reding56f42242014-08-26 17:33:53 +0200884{
885 u64 number = 0;
886
887 while (cells--)
888 number = (number << 32) | fdt32_to_cpu(*ptr++);
889
890 return number;
891}
892
893int fdt_get_resource(const void *fdt, int node, const char *property,
894 unsigned int index, struct fdt_resource *res)
895{
896 const fdt32_t *ptr, *end;
897 int na, ns, len, parent;
898 unsigned int i = 0;
899
900 parent = fdt_parent_offset(fdt, node);
901 if (parent < 0)
902 return parent;
903
904 na = fdt_address_cells(fdt, parent);
905 ns = fdt_size_cells(fdt, parent);
906
907 ptr = fdt_getprop(fdt, node, property, &len);
908 if (!ptr)
909 return len;
910
911 end = ptr + len / sizeof(*ptr);
912
913 while (ptr + na + ns <= end) {
914 if (i == index) {
Patrick Delaunayfeb7ac42021-04-06 09:38:06 +0200915 if (CONFIG_IS_ENABLED(OF_TRANSLATE))
916 res->start = fdt_translate_address(fdt, node, ptr);
917 else
918 res->start = fdtdec_get_number(ptr, na);
919
Mario Sixb79221a2018-01-15 11:07:36 +0100920 res->end = res->start;
Thierry Reding56f42242014-08-26 17:33:53 +0200921 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
922 return 0;
923 }
924
925 ptr += na + ns;
926 i++;
927 }
928
929 return -FDT_ERR_NOTFOUND;
930}
931
932int fdt_get_named_resource(const void *fdt, int node, const char *property,
933 const char *prop_names, const char *name,
934 struct fdt_resource *res)
935{
936 int index;
937
Simon Glassb02e4042016-10-02 17:59:28 -0600938 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Reding56f42242014-08-26 17:33:53 +0200939 if (index < 0)
940 return index;
941
942 return fdt_get_resource(fdt, node, property, index, res);
943}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200944
Simon Glass12e67112015-04-14 21:03:21 -0600945static int decode_timing_property(const void *blob, int node, const char *name,
946 struct timing_entry *result)
947{
948 int length, ret = 0;
949 const u32 *prop;
950
951 prop = fdt_getprop(blob, node, name, &length);
952 if (!prop) {
953 debug("%s: could not find property %s\n",
954 fdt_get_name(blob, node, NULL), name);
955 return length;
956 }
957
958 if (length == sizeof(u32)) {
959 result->typ = fdtdec_get_int(blob, node, name, 0);
960 result->min = result->typ;
961 result->max = result->typ;
962 } else {
963 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
964 }
965
966 return ret;
967}
968
969int fdtdec_decode_display_timing(const void *blob, int parent, int index,
970 struct display_timing *dt)
971{
972 int i, node, timings_node;
973 u32 val = 0;
974 int ret = 0;
975
976 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
977 if (timings_node < 0)
978 return timings_node;
979
980 for (i = 0, node = fdt_first_subnode(blob, timings_node);
981 node > 0 && i != index;
982 node = fdt_next_subnode(blob, node))
983 i++;
984
985 if (node < 0)
986 return node;
987
988 memset(dt, 0, sizeof(*dt));
989
990 ret |= decode_timing_property(blob, node, "hback-porch",
991 &dt->hback_porch);
992 ret |= decode_timing_property(blob, node, "hfront-porch",
993 &dt->hfront_porch);
994 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
995 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
996 ret |= decode_timing_property(blob, node, "vback-porch",
997 &dt->vback_porch);
998 ret |= decode_timing_property(blob, node, "vfront-porch",
999 &dt->vfront_porch);
1000 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1001 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1002 ret |= decode_timing_property(blob, node, "clock-frequency",
1003 &dt->pixelclock);
1004
1005 dt->flags = 0;
1006 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1007 if (val != -1) {
1008 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1009 DISPLAY_FLAGS_VSYNC_LOW;
1010 }
1011 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1012 if (val != -1) {
1013 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1014 DISPLAY_FLAGS_HSYNC_LOW;
1015 }
1016 val = fdtdec_get_int(blob, node, "de-active", -1);
1017 if (val != -1) {
1018 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1019 DISPLAY_FLAGS_DE_LOW;
1020 }
1021 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1022 if (val != -1) {
1023 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1024 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1025 }
1026
1027 if (fdtdec_get_bool(blob, node, "interlaced"))
1028 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1029 if (fdtdec_get_bool(blob, node, "doublescan"))
1030 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1031 if (fdtdec_get_bool(blob, node, "doubleclk"))
1032 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1033
Simon Glass04b9dd12016-05-05 07:28:21 -06001034 return ret;
Simon Glass12e67112015-04-14 21:03:21 -06001035}
1036
Michal Simek50c7b722020-07-10 13:16:50 +02001037int fdtdec_setup_mem_size_base(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001038{
Michal Simekc2f09502020-07-10 13:34:44 +02001039 int ret;
1040 ofnode mem;
1041 struct resource res;
Nathan Rossi623f6012016-12-19 00:03:34 +10001042
Michal Simekc2f09502020-07-10 13:34:44 +02001043 mem = ofnode_path("/memory");
1044 if (!ofnode_valid(mem)) {
Nathan Rossi623f6012016-12-19 00:03:34 +10001045 debug("%s: Missing /memory node\n", __func__);
1046 return -EINVAL;
1047 }
1048
Michal Simekc2f09502020-07-10 13:34:44 +02001049 ret = ofnode_read_resource(mem, 0, &res);
Nathan Rossi623f6012016-12-19 00:03:34 +10001050 if (ret != 0) {
1051 debug("%s: Unable to decode first memory bank\n", __func__);
1052 return -EINVAL;
1053 }
1054
1055 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +05301056 gd->ram_base = (unsigned long)res.start;
Simon Glassc69380f2017-05-27 07:38:13 -06001057 debug("%s: Initial DRAM size %llx\n", __func__,
1058 (unsigned long long)gd->ram_size);
Nathan Rossi623f6012016-12-19 00:03:34 +10001059
1060 return 0;
1061}
1062
Michal Simekc2f09502020-07-10 13:34:44 +02001063ofnode get_next_memory_node(ofnode mem)
Jens Wiklander452bc122018-07-13 12:12:11 +02001064{
Jens Wiklander452bc122018-07-13 12:12:11 +02001065 do {
Michal Simekc2f09502020-07-10 13:34:44 +02001066 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
Simon Glass89090662022-09-06 20:27:17 -06001067 } while (!ofnode_is_enabled(mem));
Jens Wiklander452bc122018-07-13 12:12:11 +02001068
1069 return mem;
1070}
1071
Michal Simek62897c42020-07-10 13:16:49 +02001072int fdtdec_setup_memory_banksize(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001073{
Michal Simekc2f09502020-07-10 13:34:44 +02001074 int bank, ret, reg = 0;
1075 struct resource res;
1076 ofnode mem = ofnode_null();
Nathan Rossi623f6012016-12-19 00:03:34 +10001077
Michal Simekc2f09502020-07-10 13:34:44 +02001078 mem = get_next_memory_node(mem);
1079 if (!ofnode_valid(mem)) {
Michal Simek658954c2018-10-03 15:53:52 +02001080 debug("%s: Missing /memory node\n", __func__);
1081 return -EINVAL;
1082 }
Nathan Rossi623f6012016-12-19 00:03:34 +10001083
1084 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001085 ret = ofnode_read_resource(mem, reg++, &res);
1086 if (ret < 0) {
Marek Vasut942ee092017-11-27 05:32:42 +01001087 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001088 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001089 if (!ofnode_valid(mem))
Michal Simek658954c2018-10-03 15:53:52 +02001090 break;
1091
Michal Simekc2f09502020-07-10 13:34:44 +02001092 ret = ofnode_read_resource(mem, reg++, &res);
1093 if (ret < 0)
Michal Simek658954c2018-10-03 15:53:52 +02001094 break;
1095 }
Michal Simekc2f09502020-07-10 13:34:44 +02001096
1097 if (ret != 0)
Michal Simek658954c2018-10-03 15:53:52 +02001098 return -EINVAL;
Nathan Rossi623f6012016-12-19 00:03:34 +10001099
1100 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1101 gd->bd->bi_dram[bank].size =
1102 (phys_size_t)(res.end - res.start + 1);
1103
1104 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1105 __func__, bank,
1106 (unsigned long long)gd->bd->bi_dram[bank].start,
1107 (unsigned long long)gd->bd->bi_dram[bank].size);
1108 }
1109
1110 return 0;
1111}
Michal Simek7fce7392020-07-09 14:09:52 +02001112
1113int fdtdec_setup_mem_size_base_lowest(void)
1114{
Michal Simekc2f09502020-07-10 13:34:44 +02001115 int bank, ret, reg = 0;
1116 struct resource res;
Michal Simek7fce7392020-07-09 14:09:52 +02001117 unsigned long base;
1118 phys_size_t size;
Michal Simekc2f09502020-07-10 13:34:44 +02001119 ofnode mem = ofnode_null();
Michal Simek7fce7392020-07-09 14:09:52 +02001120
1121 gd->ram_base = (unsigned long)~0;
1122
Michal Simekc2f09502020-07-10 13:34:44 +02001123 mem = get_next_memory_node(mem);
1124 if (!ofnode_valid(mem)) {
Michal Simek7fce7392020-07-09 14:09:52 +02001125 debug("%s: Missing /memory node\n", __func__);
1126 return -EINVAL;
1127 }
1128
1129 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001130 ret = ofnode_read_resource(mem, reg++, &res);
1131 if (ret < 0) {
Michal Simek7fce7392020-07-09 14:09:52 +02001132 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001133 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001134 if (!ofnode_valid(mem))
Michal Simek7fce7392020-07-09 14:09:52 +02001135 break;
1136
Michal Simekc2f09502020-07-10 13:34:44 +02001137 ret = ofnode_read_resource(mem, reg++, &res);
1138 if (ret < 0)
Michal Simek7fce7392020-07-09 14:09:52 +02001139 break;
1140 }
Michal Simekc2f09502020-07-10 13:34:44 +02001141
Michal Simek7fce7392020-07-09 14:09:52 +02001142 if (ret != 0)
1143 return -EINVAL;
1144
1145 base = (unsigned long)res.start;
1146 size = (phys_size_t)(res.end - res.start + 1);
1147
1148 if (gd->ram_base > base && size) {
1149 gd->ram_base = base;
1150 gd->ram_size = size;
1151 debug("%s: Initial DRAM base %lx size %lx\n",
1152 __func__, base, (unsigned long)size);
1153 }
1154 }
1155
1156 return 0;
1157}
Nathan Rossi623f6012016-12-19 00:03:34 +10001158
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001159static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1160{
Simon Glassb4b6daf2021-12-16 20:59:25 -07001161#if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1162 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
Marek Vasut95f4bbd2019-03-08 16:06:55 +01001163 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut1fd30352019-03-13 21:11:22 +01001164 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001165 ulong sz_in = sz_src;
1166 void *dst;
1167 int rc;
1168
1169 if (CONFIG_IS_ENABLED(GZIP))
Marek Vasut1fd30352019-03-13 21:11:22 +01001170 if (gzip_parse_header(src, sz_in) >= 0)
1171 gzip = 1;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001172 if (CONFIG_IS_ENABLED(LZO))
Marek Vasut1fd30352019-03-13 21:11:22 +01001173 if (!gzip && lzop_is_valid_header(src))
1174 lzo = 1;
1175
1176 if (!gzip && !lzo)
1177 return -EBADMSG;
1178
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001179
1180 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1181 dst = malloc(sz_out);
1182 if (!dst) {
1183 puts("uncompress_blob: Unable to allocate memory\n");
1184 return -ENOMEM;
1185 }
1186 } else {
Simon Glassb4b6daf2021-12-16 20:59:25 -07001187# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001188 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
Simon Glassb4b6daf2021-12-16 20:59:25 -07001189# else
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001190 return -ENOTSUPP;
Simon Glassb4b6daf2021-12-16 20:59:25 -07001191# endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001192 }
1193
Marek Vasut1fd30352019-03-13 21:11:22 +01001194 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001195 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut1fd30352019-03-13 21:11:22 +01001196 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001197 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut1fd30352019-03-13 21:11:22 +01001198 else
1199 hang();
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001200
1201 if (rc < 0) {
1202 /* not a valid compressed blob */
1203 puts("uncompress_blob: Unable to uncompress\n");
1204 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1205 free(dst);
1206 return -EBADMSG;
1207 }
1208 *dstp = dst;
Simon Glassb4b6daf2021-12-16 20:59:25 -07001209#else
Marek Vasut410d9b62018-10-18 20:37:05 +02001210 *dstp = (void *)src;
Simon Glassb4b6daf2021-12-16 20:59:25 -07001211 *dstp = (void *)src;
1212#endif
Marek Vasut410d9b62018-10-18 20:37:05 +02001213 return 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001214}
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001215
Simon Glass98550342021-12-16 20:59:31 -07001216/**
1217 * fdt_find_separate() - Find a devicetree at the end of the image
1218 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001219 * Return: pointer to FDT blob
Rob Clark3b595da2018-01-10 11:34:37 +01001220 */
Simon Glass98550342021-12-16 20:59:31 -07001221static void *fdt_find_separate(void)
Rob Clark3b595da2018-01-10 11:34:37 +01001222{
1223 void *fdt_blob = NULL;
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001224
Simon Glass423cf0a2022-02-28 12:08:24 -07001225 if (IS_ENABLED(CONFIG_SANDBOX))
1226 return NULL;
1227
Rob Clark3b595da2018-01-10 11:34:37 +01001228#ifdef CONFIG_SPL_BUILD
1229 /* FDT is at end of BSS unless it is in a different memory region */
Andrew Abbott0de71bb2022-04-16 10:12:31 +10001230 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
Rob Clark3b595da2018-01-10 11:34:37 +01001231 fdt_blob = (ulong *)&_image_binary_end;
1232 else
1233 fdt_blob = (ulong *)&__bss_end;
1234#else
1235 /* FDT is at end of image */
1236 fdt_blob = (ulong *)&_end;
Simon Glass95575922022-12-21 16:08:21 -07001237
1238 if (_DEBUG && !fdtdec_prepare_fdt(fdt_blob)) {
1239 int stack_ptr;
1240 const void *top = fdt_blob + fdt_totalsize(fdt_blob);
1241
1242 /*
1243 * Perform a sanity check on the memory layout. If this fails,
1244 * it indicates that the device tree is positioned above the
1245 * global data pointer or the stack pointer. This should not
1246 * happen.
1247 *
1248 * If this fails, check that SYS_INIT_SP_ADDR has enough space
1249 * below it for SYS_MALLOC_F_LEN and global_data, as well as the
1250 * stack, without overwriting the device tree or U-Boot itself.
1251 * Since the device tree is sitting at _end (the start of the
1252 * BSS region), we need the top of the device tree to be below
1253 * any memory allocated by board_init_f_alloc_reserve().
1254 */
1255 if (top > (void *)gd || top > (void *)&stack_ptr) {
1256 printf("FDT %p gd %p\n", fdt_blob, gd);
1257 panic("FDT overlap");
1258 }
1259 }
Rob Clark3b595da2018-01-10 11:34:37 +01001260#endif
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001261
Rob Clark3b595da2018-01-10 11:34:37 +01001262 return fdt_blob;
1263}
Rob Clark3b595da2018-01-10 11:34:37 +01001264
Thierry Redingebf30e82019-04-15 11:32:13 +02001265int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1266{
1267 const char *path;
1268 int offset, err;
1269
1270 if (!is_valid_ethaddr(mac))
1271 return -EINVAL;
1272
1273 path = fdt_get_alias(fdt, "ethernet");
1274 if (!path)
1275 return 0;
1276
1277 debug("ethernet alias found: %s\n", path);
1278
1279 offset = fdt_path_offset(fdt, path);
1280 if (offset < 0) {
1281 debug("ethernet alias points to absent node %s\n", path);
1282 return -ENOENT;
1283 }
1284
1285 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1286 if (err < 0)
1287 return err;
1288
1289 debug("MAC address: %pM\n", mac);
1290
1291 return 0;
1292}
1293
Thierry Redingc9222a02019-03-21 19:10:02 +01001294static int fdtdec_init_reserved_memory(void *blob)
1295{
1296 int na, ns, node, err;
1297 fdt32_t value;
1298
1299 /* inherit #address-cells and #size-cells from the root node */
1300 na = fdt_address_cells(blob, 0);
1301 ns = fdt_size_cells(blob, 0);
1302
1303 node = fdt_add_subnode(blob, 0, "reserved-memory");
1304 if (node < 0)
1305 return node;
1306
1307 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1308 if (err < 0)
1309 return err;
1310
1311 value = cpu_to_fdt32(ns);
1312
1313 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1314 if (err < 0)
1315 return err;
1316
1317 value = cpu_to_fdt32(na);
1318
1319 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1320 if (err < 0)
1321 return err;
1322
1323 return node;
1324}
1325
1326int fdtdec_add_reserved_memory(void *blob, const char *basename,
1327 const struct fdt_memory *carveout,
Thierry Reding46cb0672021-09-03 15:16:19 +02001328 const char **compatibles, unsigned int count,
Thierry Redingb9aad372021-09-03 15:16:21 +02001329 uint32_t *phandlep, unsigned long flags)
Thierry Redingc9222a02019-03-21 19:10:02 +01001330{
1331 fdt32_t cells[4] = {}, *ptr = cells;
1332 uint32_t upper, lower, phandle;
1333 int parent, node, na, ns, err;
Thierry Reding3bf2f152019-04-15 10:08:21 +02001334 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001335 char name[64];
1336
1337 /* create an empty /reserved-memory node if one doesn't exist */
1338 parent = fdt_path_offset(blob, "/reserved-memory");
1339 if (parent < 0) {
1340 parent = fdtdec_init_reserved_memory(blob);
1341 if (parent < 0)
1342 return parent;
1343 }
1344
1345 /* only 1 or 2 #address-cells and #size-cells are supported */
1346 na = fdt_address_cells(blob, parent);
1347 if (na < 1 || na > 2)
1348 return -FDT_ERR_BADNCELLS;
1349
1350 ns = fdt_size_cells(blob, parent);
1351 if (ns < 1 || ns > 2)
1352 return -FDT_ERR_BADNCELLS;
1353
1354 /* find a matching node and return the phandle to that */
1355 fdt_for_each_subnode(node, blob, parent) {
1356 const char *name = fdt_get_name(blob, node, NULL);
Bin Menga9ad1132020-05-19 23:38:32 -07001357 fdt_addr_t addr;
1358 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001359
Bin Mengf6704c72020-05-19 23:38:33 -07001360 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1361 &size, false);
Thierry Redingc9222a02019-03-21 19:10:02 +01001362 if (addr == FDT_ADDR_T_NONE) {
1363 debug("failed to read address/size for %s\n", name);
1364 continue;
1365 }
1366
Atish Patraf6147532020-04-21 11:15:00 -07001367 if (addr == carveout->start && (addr + size - 1) ==
1368 carveout->end) {
Heiko Stuebner086336a2019-10-23 16:46:38 +02001369 if (phandlep)
1370 *phandlep = fdt_get_phandle(blob, node);
Thierry Redingc9222a02019-03-21 19:10:02 +01001371 return 0;
1372 }
1373 }
1374
1375 /*
1376 * Unpack the start address and generate the name of the new node
1377 * base on the basename and the unit-address.
1378 */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001379 upper = upper_32_bits(carveout->start);
1380 lower = lower_32_bits(carveout->start);
Thierry Redingc9222a02019-03-21 19:10:02 +01001381
1382 if (na > 1 && upper > 0)
1383 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1384 lower);
1385 else {
1386 if (upper > 0) {
1387 debug("address %08x:%08x exceeds addressable space\n",
1388 upper, lower);
1389 return -FDT_ERR_BADVALUE;
1390 }
1391
1392 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1393 }
1394
1395 node = fdt_add_subnode(blob, parent, name);
1396 if (node < 0)
1397 return node;
1398
Thierry Redingb9aad372021-09-03 15:16:21 +02001399 if (flags & FDTDEC_RESERVED_MEMORY_NO_MAP) {
1400 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1401 if (err < 0)
1402 return err;
1403 }
1404
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001405 if (phandlep) {
1406 err = fdt_generate_phandle(blob, &phandle);
1407 if (err < 0)
1408 return err;
Thierry Redingc9222a02019-03-21 19:10:02 +01001409
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001410 err = fdtdec_set_phandle(blob, node, phandle);
1411 if (err < 0)
1412 return err;
1413 }
Thierry Redingc9222a02019-03-21 19:10:02 +01001414
1415 /* store one or two address cells */
1416 if (na > 1)
1417 *ptr++ = cpu_to_fdt32(upper);
1418
1419 *ptr++ = cpu_to_fdt32(lower);
1420
1421 /* store one or two size cells */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001422 size = carveout->end - carveout->start + 1;
1423 upper = upper_32_bits(size);
1424 lower = lower_32_bits(size);
Thierry Redingc9222a02019-03-21 19:10:02 +01001425
1426 if (ns > 1)
1427 *ptr++ = cpu_to_fdt32(upper);
1428
1429 *ptr++ = cpu_to_fdt32(lower);
1430
1431 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1432 if (err < 0)
1433 return err;
1434
Thierry Reding46cb0672021-09-03 15:16:19 +02001435 if (compatibles && count > 0) {
1436 size_t length = 0, len = 0;
1437 unsigned int i;
1438 char *buffer;
1439
1440 for (i = 0; i < count; i++)
1441 length += strlen(compatibles[i]) + 1;
1442
1443 buffer = malloc(length);
1444 if (!buffer)
1445 return -FDT_ERR_INTERNAL;
1446
1447 for (i = 0; i < count; i++)
1448 len += strlcpy(buffer + len, compatibles[i],
1449 length - len) + 1;
1450
1451 err = fdt_setprop(blob, node, "compatible", buffer, length);
1452 free(buffer);
1453 if (err < 0)
1454 return err;
1455 }
1456
Thierry Redingc9222a02019-03-21 19:10:02 +01001457 /* return the phandle for the new node for the caller to use */
1458 if (phandlep)
1459 *phandlep = phandle;
1460
1461 return 0;
1462}
1463
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001464int fdtdec_get_carveout(const void *blob, const char *node,
1465 const char *prop_name, unsigned int index,
Thierry Reding46cb0672021-09-03 15:16:19 +02001466 struct fdt_memory *carveout, const char **name,
Thierry Redingb9aad372021-09-03 15:16:21 +02001467 const char ***compatiblesp, unsigned int *countp,
1468 unsigned long *flags)
Thierry Reding16523ac2019-03-21 19:10:03 +01001469{
1470 const fdt32_t *prop;
1471 uint32_t phandle;
1472 int offset, len;
1473 fdt_size_t size;
1474
1475 offset = fdt_path_offset(blob, node);
1476 if (offset < 0)
1477 return offset;
1478
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001479 prop = fdt_getprop(blob, offset, prop_name, &len);
Thierry Reding16523ac2019-03-21 19:10:03 +01001480 if (!prop) {
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001481 debug("failed to get %s for %s\n", prop_name, node);
Thierry Reding16523ac2019-03-21 19:10:03 +01001482 return -FDT_ERR_NOTFOUND;
1483 }
1484
1485 if ((len % sizeof(phandle)) != 0) {
1486 debug("invalid phandle property\n");
1487 return -FDT_ERR_BADPHANDLE;
1488 }
1489
1490 if (len < (sizeof(phandle) * (index + 1))) {
1491 debug("invalid phandle index\n");
Thierry Redingd5598cf2021-09-03 15:16:17 +02001492 return -FDT_ERR_NOTFOUND;
Thierry Reding16523ac2019-03-21 19:10:03 +01001493 }
1494
1495 phandle = fdt32_to_cpu(prop[index]);
1496
1497 offset = fdt_node_offset_by_phandle(blob, phandle);
1498 if (offset < 0) {
1499 debug("failed to find node for phandle %u\n", phandle);
1500 return offset;
1501 }
1502
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001503 if (name)
1504 *name = fdt_get_name(blob, offset, NULL);
1505
Thierry Reding46cb0672021-09-03 15:16:19 +02001506 if (compatiblesp) {
1507 const char **compatibles = NULL;
1508 const char *start, *end, *ptr;
1509 unsigned int count = 0;
1510
1511 prop = fdt_getprop(blob, offset, "compatible", &len);
1512 if (!prop)
1513 goto skip_compat;
1514
1515 start = ptr = (const char *)prop;
1516 end = start + len;
1517
1518 while (ptr < end) {
1519 ptr = strchrnul(ptr, '\0');
1520 count++;
1521 ptr++;
1522 }
1523
1524 compatibles = malloc(sizeof(ptr) * count);
1525 if (!compatibles)
1526 return -FDT_ERR_INTERNAL;
1527
1528 ptr = start;
1529 count = 0;
1530
1531 while (ptr < end) {
1532 compatibles[count] = ptr;
1533 ptr = strchrnul(ptr, '\0');
1534 count++;
1535 ptr++;
1536 }
1537
1538skip_compat:
1539 *compatiblesp = compatibles;
1540
1541 if (countp)
1542 *countp = count;
1543 }
1544
Thierry Reding16523ac2019-03-21 19:10:03 +01001545 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1546 "reg", 0, &size,
1547 true);
1548 if (carveout->start == FDT_ADDR_T_NONE) {
1549 debug("failed to read address/size from \"reg\" property\n");
1550 return -FDT_ERR_NOTFOUND;
1551 }
1552
1553 carveout->end = carveout->start + size - 1;
1554
Thierry Redingb9aad372021-09-03 15:16:21 +02001555 if (flags) {
1556 *flags = 0;
1557
1558 if (fdtdec_get_bool(blob, offset, "no-map"))
1559 *flags |= FDTDEC_RESERVED_MEMORY_NO_MAP;
1560 }
1561
Thierry Reding16523ac2019-03-21 19:10:03 +01001562 return 0;
1563}
1564
1565int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Reding90194872021-09-03 15:16:20 +02001566 unsigned int index, const struct fdt_memory *carveout,
1567 const char *name, const char **compatibles,
Thierry Redingb9aad372021-09-03 15:16:21 +02001568 unsigned int count, unsigned long flags)
Thierry Reding16523ac2019-03-21 19:10:03 +01001569{
1570 uint32_t phandle;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001571 int err, offset, len;
Thierry Reding16523ac2019-03-21 19:10:03 +01001572 fdt32_t value;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001573 void *prop;
Thierry Reding16523ac2019-03-21 19:10:03 +01001574
Thierry Reding46cb0672021-09-03 15:16:19 +02001575 err = fdtdec_add_reserved_memory(blob, name, carveout, compatibles,
Thierry Redingb9aad372021-09-03 15:16:21 +02001576 count, &phandle, flags);
Thierry Reding16523ac2019-03-21 19:10:03 +01001577 if (err < 0) {
1578 debug("failed to add reserved memory: %d\n", err);
1579 return err;
1580 }
1581
1582 offset = fdt_path_offset(blob, node);
1583 if (offset < 0) {
1584 debug("failed to find offset for node %s: %d\n", node, offset);
1585 return offset;
1586 }
1587
1588 value = cpu_to_fdt32(phandle);
1589
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001590 if (!fdt_getprop(blob, offset, prop_name, &len)) {
1591 if (len == -FDT_ERR_NOTFOUND)
1592 len = 0;
1593 else
1594 return len;
1595 }
1596
1597 if ((index + 1) * sizeof(value) > len) {
1598 err = fdt_setprop_placeholder(blob, offset, prop_name,
1599 (index + 1) * sizeof(value),
1600 &prop);
1601 if (err < 0) {
1602 debug("failed to resize reserved memory property: %s\n",
1603 fdt_strerror(err));
1604 return err;
1605 }
1606 }
1607
1608 err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1609 strlen(prop_name),
1610 index * sizeof(value),
1611 &value, sizeof(value));
Thierry Reding16523ac2019-03-21 19:10:03 +01001612 if (err < 0) {
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001613 debug("failed to update %s property for node %s: %s\n",
1614 prop_name, node, fdt_strerror(err));
Thierry Reding16523ac2019-03-21 19:10:03 +01001615 return err;
1616 }
1617
1618 return 0;
1619}
1620
Simon Glass275b4832021-12-16 20:59:35 -07001621/* TODO(sjg@chromium.org): This function should not be weak */
Marek Vasut0e2afc82020-04-11 21:18:59 +02001622__weak int fdtdec_board_setup(const void *fdt_blob)
1623{
1624 return 0;
1625}
1626
Simon Glass3f51f782021-12-16 20:59:24 -07001627/**
1628 * setup_multi_dtb_fit() - locate the correct dtb from a FIT
1629 *
1630 * This supports the CONFIG_MULTI_DTB_FIT feature, looking for the dtb in a
1631 * supplied FIT
1632 *
1633 * It accepts the current value of gd->fdt_blob, which points to the FIT, then
1634 * updates that gd->fdt_blob, to point to the chosen dtb so that U-Boot uses the
1635 * correct one
1636 */
1637static void setup_multi_dtb_fit(void)
1638{
Simon Glass3f51f782021-12-16 20:59:24 -07001639 void *blob;
1640
1641 /*
1642 * Try and uncompress the blob.
1643 * Unfortunately there is no way to know how big the input blob really
1644 * is. So let us set the maximum input size arbitrarily high. 16MB
1645 * ought to be more than enough for packed DTBs.
1646 */
1647 if (uncompress_blob(gd->fdt_blob, 0x1000000, &blob) == 0)
1648 gd->fdt_blob = blob;
1649
1650 /*
1651 * Check if blob is a FIT images containings DTBs.
1652 * If so, pick the most relevant
1653 */
1654 blob = locate_dtb_in_fit(gd->fdt_blob);
1655 if (blob) {
Simon Glassb4b6daf2021-12-16 20:59:25 -07001656 gd_set_multi_dtb_fit(gd->fdt_blob);
Simon Glass3f51f782021-12-16 20:59:24 -07001657 gd->fdt_blob = blob;
Simon Glass39605c62021-12-16 20:59:33 -07001658 gd->fdt_src = FDTSRC_FIT;
Simon Glass3f51f782021-12-16 20:59:24 -07001659 }
Simon Glass3f51f782021-12-16 20:59:24 -07001660}
1661
Simon Glass08793612015-02-27 22:06:35 -07001662int fdtdec_setup(void)
Simon Glassb45122f2015-02-27 22:06:34 -07001663{
Marek Vasut0e2afc82020-04-11 21:18:59 +02001664 int ret;
Simon Glassba83d852021-12-16 20:59:30 -07001665
1666 /* The devicetree is typically appended to U-Boot */
Simon Glass39605c62021-12-16 20:59:33 -07001667 if (IS_ENABLED(CONFIG_OF_SEPARATE)) {
Simon Glass98550342021-12-16 20:59:31 -07001668 gd->fdt_blob = fdt_find_separate();
Simon Glass39605c62021-12-16 20:59:33 -07001669 gd->fdt_src = FDTSRC_SEPARATE;
1670 } else { /* embed dtb in ELF file for testing / development */
Simon Glass98550342021-12-16 20:59:31 -07001671 gd->fdt_blob = dtb_dt_embedded();
Simon Glass39605c62021-12-16 20:59:33 -07001672 gd->fdt_src = FDTSRC_EMBED;
1673 }
Simon Glass98550342021-12-16 20:59:31 -07001674
1675 /* Allow the board to override the fdt address. */
1676 if (IS_ENABLED(CONFIG_OF_BOARD)) {
Simon Glassba83d852021-12-16 20:59:30 -07001677 gd->fdt_blob = board_fdt_blob_setup(&ret);
1678 if (ret)
1679 return ret;
Simon Glass39605c62021-12-16 20:59:33 -07001680 gd->fdt_src = FDTSRC_BOARD;
Simon Glassba83d852021-12-16 20:59:30 -07001681 }
1682
Simon Glass39605c62021-12-16 20:59:33 -07001683 /* Allow the early environment to override the fdt address */
Simon Glass931511d2021-12-16 20:59:28 -07001684 if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
Simon Glass39605c62021-12-16 20:59:33 -07001685 ulong addr;
1686
1687 addr = env_get_hex("fdtcontroladdr", 0);
1688 if (addr) {
1689 gd->fdt_blob = map_sysmem(addr, 0);
1690 gd->fdt_src = FDTSRC_ENV;
1691 }
Simon Glass931511d2021-12-16 20:59:28 -07001692 }
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001693
Simon Glass3f51f782021-12-16 20:59:24 -07001694 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
1695 setup_multi_dtb_fit();
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001696
Simon Glassec4f3272022-12-21 16:08:20 -07001697 ret = fdtdec_prepare_fdt(gd->fdt_blob);
Marek Vasut0e2afc82020-04-11 21:18:59 +02001698 if (!ret)
1699 ret = fdtdec_board_setup(gd->fdt_blob);
Simon Glassee88ba72022-09-06 20:27:19 -06001700 oftree_reset();
1701
Marek Vasut0e2afc82020-04-11 21:18:59 +02001702 return ret;
Simon Glassb45122f2015-02-27 22:06:34 -07001703}
1704
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001705int fdtdec_resetup(int *rescan)
1706{
1707 void *fdt_blob;
1708
1709 /*
1710 * If the current DTB is part of a compressed FIT image,
1711 * try to locate the best match from the uncompressed
1712 * FIT image stillpresent there. Save the time and space
1713 * required to uncompress it again.
1714 */
Simon Glassb4b6daf2021-12-16 20:59:25 -07001715 if (gd_multi_dtb_fit()) {
1716 fdt_blob = locate_dtb_in_fit(gd_multi_dtb_fit());
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001717
1718 if (fdt_blob == gd->fdt_blob) {
1719 /*
1720 * The best match did not change. no need to tear down
1721 * the DM and rescan the fdt.
1722 */
1723 *rescan = 0;
1724 return 0;
1725 }
1726
1727 *rescan = 1;
1728 gd->fdt_blob = fdt_blob;
Simon Glassec4f3272022-12-21 16:08:20 -07001729 return fdtdec_prepare_fdt(fdt_blob);
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001730 }
1731
1732 /*
1733 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1734 * not a FIT image containings DTB, but a single DTB. There is no need
1735 * to teard down DM and rescan the DT in this case.
1736 */
1737 *rescan = 0;
1738 return 0;
1739}
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001740
Michael Pratt90c08fa2018-06-11 13:07:09 -06001741int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001742 phys_addr_t *basep, phys_size_t *sizep,
1743 struct bd_info *bd)
Michael Pratt90c08fa2018-06-11 13:07:09 -06001744{
1745 int addr_cells, size_cells;
1746 const u32 *cell, *end;
1747 u64 total_size, size, addr;
1748 int node, child;
1749 bool auto_size;
1750 int bank;
1751 int len;
1752
1753 debug("%s: board_id=%d\n", __func__, board_id);
1754 if (!area)
1755 area = "/memory";
1756 node = fdt_path_offset(blob, area);
1757 if (node < 0) {
1758 debug("No %s node found\n", area);
1759 return -ENOENT;
1760 }
1761
1762 cell = fdt_getprop(blob, node, "reg", &len);
1763 if (!cell) {
1764 debug("No reg property found\n");
1765 return -ENOENT;
1766 }
1767
1768 addr_cells = fdt_address_cells(blob, node);
1769 size_cells = fdt_size_cells(blob, node);
1770
1771 /* Check the board id and mask */
1772 for (child = fdt_first_subnode(blob, node);
1773 child >= 0;
1774 child = fdt_next_subnode(blob, child)) {
1775 int match_mask, match_value;
1776
1777 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1778 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1779
1780 if (match_value >= 0 &&
1781 ((board_id & match_mask) == match_value)) {
1782 /* Found matching mask */
1783 debug("Found matching mask %d\n", match_mask);
1784 node = child;
1785 cell = fdt_getprop(blob, node, "reg", &len);
1786 if (!cell) {
1787 debug("No memory-banks property found\n");
1788 return -EINVAL;
1789 }
1790 break;
1791 }
1792 }
1793 /* Note: if no matching subnode was found we use the parent node */
1794
1795 if (bd) {
1796 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1797 CONFIG_NR_DRAM_BANKS);
1798 }
1799
1800 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1801
1802 total_size = 0;
1803 end = cell + len / 4 - addr_cells - size_cells;
1804 debug("cell at %p, end %p\n", cell, end);
1805 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1806 if (cell > end)
1807 break;
1808 addr = 0;
1809 if (addr_cells == 2)
1810 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1811 addr += fdt32_to_cpu(*cell++);
1812 if (bd)
1813 bd->bi_dram[bank].start = addr;
1814 if (basep && !bank)
1815 *basep = (phys_addr_t)addr;
1816
1817 size = 0;
1818 if (size_cells == 2)
1819 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1820 size += fdt32_to_cpu(*cell++);
1821
1822 if (auto_size) {
1823 u64 new_size;
1824
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001825 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001826 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1827 if (new_size == size) {
1828 debug("OK\n");
1829 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001830 debug("sized to %llx\n", new_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001831 size = new_size;
1832 }
1833 }
1834
1835 if (bd)
1836 bd->bi_dram[bank].size = size;
1837 total_size += size;
1838 }
1839
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001840 debug("Memory size %llu\n", total_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001841 if (sizep)
1842 *sizep = (phys_size_t)total_size;
1843
1844 return 0;
1845}
Michael Pratt90c08fa2018-06-11 13:07:09 -06001846
Simon Glassb45122f2015-02-27 22:06:34 -07001847#endif /* !USE_HOSTCC */