blob: 4b097fb588ed24ec78adc245fff6ee8cda2da368 [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 Glassfcc0a872015-11-29 13:17:54 -07009#include <dm.h>
Simon Glassdb41d652019-12-28 10:45:07 -070010#include <hang.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070011#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <malloc.h>
Simon Glass90526e92020-05-10 11:39:56 -060014#include <net.h>
Simon Glassb7e0d732017-05-18 20:09:02 -060015#include <dm/of_extra.h>
Simon Glass9eef56d2019-08-01 09:46:48 -060016#include <env.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020017#include <errno.h>
18#include <fdtdec.h>
19#include <fdt_support.h>
Simon Glass0c670fc2019-08-01 09:46:36 -060020#include <gzip.h>
Heinrich Schuchardtf980c992018-11-18 17:58:50 +010021#include <mapmem.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090022#include <linux/libfdt.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020023#include <serial.h>
Simon Glass401d1c42020-10-30 21:38:53 -060024#include <asm/global_data.h>
Jean-Jacques Hiblot035d6402017-09-15 12:57:31 +020025#include <asm/sections.h>
Simon Glass5c33c9f2014-07-23 06:55:09 -060026#include <linux/ctype.h>
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +020027#include <linux/lzo.h>
Michal Simekc2f09502020-07-10 13:34:44 +020028#include <linux/ioport.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000029
30DECLARE_GLOBAL_DATA_PTR;
31
32/*
33 * Here are the type we know about. One day we might allow drivers to
34 * register. For now we just put them here. The COMPAT macro allows us to
35 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass01a227d2016-06-19 17:33:13 -060036 *
37 * NOTE: This list is basically a TODO list for things that need to be
38 * converted to driver model. So don't add new things here unless there is a
39 * good reason why driver-model conversion is infeasible. Examples include
40 * things which are used before driver model is available.
Simon Glassb5220bc2011-10-24 19:15:32 +000041 */
42#define COMPAT(id, name) name
43static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000044 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000045 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
46 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin312693c2012-07-29 20:53:29 +000047 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Reding79c7a902014-12-09 22:25:09 -070048 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warren7aaa5a62015-03-04 16:36:00 -070049 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Hatim RVcc9fe332012-12-11 00:52:46 +000050 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
51 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000052 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053053 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000054 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010055 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090056 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrong51e4e3e2019-02-10 10:16:21 +000057 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053058 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070059 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Mengc89ada02015-02-05 23:42:26 +080060 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasut6ab00db2015-07-25 19:33:56 +020061 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut129adf52015-07-25 10:48:14 +020062 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutef4b01b2015-12-05 19:28:44 +010063 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass39ea0ee2016-06-19 17:33:14 -060064 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
65 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
66 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Boris Brezillon4ccae812016-06-15 21:09:23 +020067 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
Ley Foon Tane11b5e82017-04-05 17:32:47 +080068 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
69 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
70 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
71 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
72 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
73 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
74 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
75 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +080076 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
77 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasut19c8fc72018-05-12 11:56:10 +020078 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glassb5220bc2011-10-24 19:15:32 +000079};
80
Simon Glassa53f4a22012-01-17 08:20:50 +000081const char *fdtdec_get_compatible(enum fdt_compat_id id)
82{
83 /* We allow reading of the 'unknown' ID for testing purposes */
84 assert(id >= 0 && id < COMPAT_COUNT);
85 return compat_names[id];
86}
87
Stephen Warren02464e32015-08-06 15:31:02 -060088fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +010089 const char *prop_name, int index, int na,
90 int ns, fdt_size_t *sizep,
91 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -060092{
93 const fdt32_t *prop, *prop_end;
94 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
95 int len;
96 fdt_addr_t addr;
97
98 debug("%s: %s: ", __func__, prop_name);
99
Stephen Warren02464e32015-08-06 15:31:02 -0600100 prop = fdt_getprop(blob, node, prop_name, &len);
101 if (!prop) {
102 debug("(not found)\n");
103 return FDT_ADDR_T_NONE;
104 }
105 prop_end = prop + (len / sizeof(*prop));
106
107 prop_addr = prop + (index * (na + ns));
108 prop_size = prop_addr + na;
109 prop_after_size = prop_size + ns;
110 if (prop_after_size > prop_end) {
111 debug("(not enough data: expected >= %d cells, got %d cells)\n",
112 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
113 return FDT_ADDR_T_NONE;
114 }
115
Vignesh R5efa1bf2017-03-20 10:04:38 +0530116#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren6e06acb2016-08-05 09:47:51 -0600117 if (translate)
118 addr = fdt_translate_address(blob, node, prop_addr);
119 else
120#endif
121 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren02464e32015-08-06 15:31:02 -0600122
123 if (sizep) {
124 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glassfd30d2c2016-02-29 15:25:37 -0700125 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
126 (unsigned long long)*sizep);
Stephen Warren02464e32015-08-06 15:31:02 -0600127 } else {
Simon Glassfd30d2c2016-02-29 15:25:37 -0700128 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren02464e32015-08-06 15:31:02 -0600129 }
130
131 return addr;
132}
133
134fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Six2e386622018-01-15 11:07:35 +0100135 int node, const char *prop_name,
136 int index, fdt_size_t *sizep,
137 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600138{
139 int na, ns;
140
141 debug("%s: ", __func__);
142
143 na = fdt_address_cells(blob, parent);
144 if (na < 1) {
145 debug("(bad #address-cells)\n");
146 return FDT_ADDR_T_NONE;
147 }
148
149 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczakff0a6352015-09-30 13:14:50 +0200150 if (ns < 0) {
Stephen Warren02464e32015-08-06 15:31:02 -0600151 debug("(bad #size-cells)\n");
152 return FDT_ADDR_T_NONE;
153 }
154
155 debug("na=%d, ns=%d, ", na, ns);
156
157 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600158 ns, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600159}
160
161fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100162 const char *prop_name, int index,
163 fdt_size_t *sizep,
164 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600165{
166 int parent;
167
168 debug("%s: ", __func__);
169
170 parent = fdt_parent_offset(blob, node);
171 if (parent < 0) {
172 debug("(no parent found)\n");
173 return FDT_ADDR_T_NONE;
174 }
175
176 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600177 index, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600178}
179
Simon Glass4397a2a2013-03-19 04:58:51 +0000180fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100181 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +0000182{
Stephen Warrend93b9a02015-09-25 10:11:41 -0600183 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
184
Stephen Warren02464e32015-08-06 15:31:02 -0600185 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
186 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren6e06acb2016-08-05 09:47:51 -0600187 ns, sizep, false);
Simon Glassb5220bc2011-10-24 19:15:32 +0000188}
189
Mario Six2e386622018-01-15 11:07:35 +0100190fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glass4397a2a2013-03-19 04:58:51 +0000191{
192 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
193}
194
Sekhar Norid50d6812018-12-06 15:40:08 +0530195#if CONFIG_IS_ENABLED(PCI) && defined(CONFIG_DM_PCI)
Bin Menga62e84d2014-12-31 16:05:11 +0800196int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
197{
198 const char *list, *end;
199 int len;
200
201 list = fdt_getprop(blob, node, "compatible", &len);
202 if (!list)
203 return -ENOENT;
204
205 end = list + len;
206 while (list < end) {
Bin Menga62e84d2014-12-31 16:05:11 +0800207 len = strlen(list);
208 if (len >= strlen("pciVVVV,DDDD")) {
Mario Sixb79221a2018-01-15 11:07:36 +0100209 char *s = strstr(list, "pci");
Bin Menga62e84d2014-12-31 16:05:11 +0800210
211 /*
212 * check if the string is something like pciVVVV,DDDD.RR
213 * or just pciVVVV,DDDD
214 */
215 if (s && s[7] == ',' &&
216 (s[12] == '.' || s[12] == 0)) {
217 s += 3;
218 *vendor = simple_strtol(s, NULL, 16);
219
220 s += 5;
221 *device = simple_strtol(s, NULL, 16);
222
223 return 0;
224 }
Bin Menga62e84d2014-12-31 16:05:11 +0800225 }
Bin Mengbc6351e2015-08-20 06:40:25 -0700226 list += (len + 1);
Bin Menga62e84d2014-12-31 16:05:11 +0800227 }
228
229 return -ENOENT;
230}
231
Simon Glass194fca92020-01-27 08:49:38 -0700232int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassfcc0a872015-11-29 13:17:54 -0700233 u32 *bar)
Bin Menga62e84d2014-12-31 16:05:11 +0800234{
Bin Menga62e84d2014-12-31 16:05:11 +0800235 int barnum;
Bin Menga62e84d2014-12-31 16:05:11 +0800236
237 /* extract the bar number from fdt_pci_addr */
238 barnum = addr->phys_hi & 0xff;
Mario Sixb79221a2018-01-15 11:07:36 +0100239 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Menga62e84d2014-12-31 16:05:11 +0800240 return -EINVAL;
241
242 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassfcc0a872015-11-29 13:17:54 -0700243 *bar = dm_pci_read_bar32(dev, barnum);
Bin Menga62e84d2014-12-31 16:05:11 +0800244
245 return 0;
246}
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700247
248int fdtdec_get_pci_bus_range(const void *blob, int node,
249 struct fdt_resource *res)
250{
251 const u32 *values;
252 int len;
253
254 values = fdt_getprop(blob, node, "bus-range", &len);
255 if (!values || len < sizeof(*values) * 2)
256 return -EINVAL;
257
258 res->start = fdt32_to_cpu(*values++);
259 res->end = fdt32_to_cpu(*values);
260
261 return 0;
262}
Bin Menga62e84d2014-12-31 16:05:11 +0800263#endif
264
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000265uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100266 uint64_t default_val)
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000267{
Jean-Jacques Hiblotd60ae4c2019-10-22 10:05:22 +0200268 const unaligned_fdt64_t *cell64;
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000269 int length;
270
271 cell64 = fdt_getprop(blob, node, prop_name, &length);
272 if (!cell64 || length < sizeof(*cell64))
273 return default_val;
274
275 return fdt64_to_cpu(*cell64);
276}
277
Simon Glassf88fe2d2012-02-27 10:52:34 +0000278int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000279{
280 const char *cell;
281
Simon Glassf88fe2d2012-02-27 10:52:34 +0000282 /*
283 * It should say "okay", so only allow that. Some fdts use "ok" but
284 * this is a bug. Please fix your device tree source file. See here
285 * for discussion:
286 *
287 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
288 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000289 cell = fdt_getprop(blob, node, "status", NULL);
290 if (cell)
Mario Sixb79221a2018-01-15 11:07:36 +0100291 return strcmp(cell, "okay") == 0;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000292 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000293}
294
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500295enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000296{
297 enum fdt_compat_id id;
298
299 /* Search our drivers */
300 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Sixb79221a2018-01-15 11:07:36 +0100301 if (fdt_node_check_compatible(blob, node,
302 compat_names[id]) == 0)
Simon Glassb5220bc2011-10-24 19:15:32 +0000303 return id;
304 return COMPAT_UNKNOWN;
305}
306
Mario Six2e386622018-01-15 11:07:35 +0100307int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glassb5220bc2011-10-24 19:15:32 +0000308{
309 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
310}
311
Simon Glass3ddecfc2012-04-02 13:18:42 +0000312int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100313 enum fdt_compat_id id, int *depthp)
Simon Glass3ddecfc2012-04-02 13:18:42 +0000314{
315 do {
316 node = fdt_next_node(blob, node, depthp);
317 } while (*depthp > 1);
318
319 /* If this is a direct subnode, and compatible, return it */
320 if (*depthp == 1 && 0 == fdt_node_check_compatible(
321 blob, node, compat_names[id]))
322 return node;
323
324 return -FDT_ERR_NOTFOUND;
325}
326
Mario Six2e386622018-01-15 11:07:35 +0100327int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
328 int *upto)
Simon Glassb5220bc2011-10-24 19:15:32 +0000329{
330#define MAX_STR_LEN 20
331 char str[MAX_STR_LEN + 20];
332 int node, err;
333
334 /* snprintf() is not available */
335 assert(strlen(name) < MAX_STR_LEN);
336 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000337 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000338 if (node < 0)
339 return node;
340 err = fdt_node_check_compatible(blob, node, compat_names[id]);
341 if (err < 0)
342 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000343 if (err)
344 return -FDT_ERR_NOTFOUND;
345 (*upto)++;
346 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000347}
348
Simon Glassa53f4a22012-01-17 08:20:50 +0000349int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100350 enum fdt_compat_id id, int *node_list,
351 int maxcount)
Simon Glassa53f4a22012-01-17 08:20:50 +0000352{
Simon Glassc6782272012-02-03 15:13:53 +0000353 memset(node_list, '\0', sizeof(*node_list) * maxcount);
354
355 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
356}
357
358/* TODO: Can we tighten this code up a little? */
359int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100360 enum fdt_compat_id id, int *node_list,
361 int maxcount)
Simon Glassc6782272012-02-03 15:13:53 +0000362{
Simon Glassa53f4a22012-01-17 08:20:50 +0000363 int name_len = strlen(name);
364 int nodes[maxcount];
365 int num_found = 0;
366 int offset, node;
367 int alias_node;
368 int count;
369 int i, j;
370
371 /* find the alias node if present */
372 alias_node = fdt_path_offset(blob, "/aliases");
373
374 /*
375 * start with nothing, and we can assume that the root node can't
376 * match
377 */
378 memset(nodes, '\0', sizeof(nodes));
379
380 /* First find all the compatible nodes */
381 for (node = count = 0; node >= 0 && count < maxcount;) {
382 node = fdtdec_next_compatible(blob, node, id);
383 if (node >= 0)
384 nodes[count++] = node;
385 }
386 if (node >= 0)
387 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Six2e386622018-01-15 11:07:35 +0100388 __func__, name);
Simon Glassa53f4a22012-01-17 08:20:50 +0000389
390 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000391 for (offset = fdt_first_property_offset(blob, alias_node);
392 offset > 0;
393 offset = fdt_next_property_offset(blob, offset)) {
394 const struct fdt_property *prop;
395 const char *path;
396 int number;
397 int found;
398
399 node = 0;
400 prop = fdt_get_property_by_offset(blob, offset, NULL);
401 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
402 if (prop->len && 0 == strncmp(path, name, name_len))
403 node = fdt_path_offset(blob, prop->data);
404 if (node <= 0)
405 continue;
406
407 /* Get the alias number */
408 number = simple_strtoul(path + name_len, NULL, 10);
409 if (number < 0 || number >= maxcount) {
410 debug("%s: warning: alias '%s' is out of range\n",
Mario Six2e386622018-01-15 11:07:35 +0100411 __func__, path);
Simon Glassa53f4a22012-01-17 08:20:50 +0000412 continue;
413 }
414
415 /* Make sure the node we found is actually in our list! */
416 found = -1;
417 for (j = 0; j < count; j++)
418 if (nodes[j] == node) {
419 found = j;
420 break;
421 }
422
423 if (found == -1) {
424 debug("%s: warning: alias '%s' points to a node "
425 "'%s' that is missing or is not compatible "
426 " with '%s'\n", __func__, path,
427 fdt_get_name(blob, node, NULL),
428 compat_names[id]);
429 continue;
430 }
431
432 /*
433 * Add this node to our list in the right place, and mark
434 * it as done.
435 */
436 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000437 if (node_list[number]) {
438 debug("%s: warning: alias '%s' requires that "
439 "a node be placed in the list in a "
440 "position which is already filled by "
441 "node '%s'\n", __func__, path,
442 fdt_get_name(blob, node, NULL));
443 continue;
444 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000445 node_list[number] = node;
446 if (number >= num_found)
447 num_found = number + 1;
448 }
Simon Glassc6782272012-02-03 15:13:53 +0000449 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000450 }
451
452 /* Add any nodes not mentioned by an alias */
453 for (i = j = 0; i < maxcount; i++) {
454 if (!node_list[i]) {
455 for (; j < maxcount; j++)
456 if (nodes[j] &&
Mario Six2e386622018-01-15 11:07:35 +0100457 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassa53f4a22012-01-17 08:20:50 +0000458 break;
459
460 /* Have we run out of nodes to add? */
461 if (j == maxcount)
462 break;
463
464 assert(!node_list[i]);
465 node_list[i] = nodes[j++];
466 if (i >= num_found)
467 num_found = i + 1;
468 }
469 }
470
471 return num_found;
472}
473
Simon Glass5c33c9f2014-07-23 06:55:09 -0600474int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
475 int *seqp)
476{
477 int base_len = strlen(base);
478 const char *find_name;
479 int find_namelen;
480 int prop_offset;
481 int aliases;
482
483 find_name = fdt_get_name(blob, offset, &find_namelen);
484 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
485
486 aliases = fdt_path_offset(blob, "/aliases");
487 for (prop_offset = fdt_first_property_offset(blob, aliases);
488 prop_offset > 0;
489 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
490 const char *prop;
491 const char *name;
492 const char *slash;
Simon Glassc4af6732015-06-23 15:39:08 -0600493 int len, val;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600494
495 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
496 debug(" - %s, %s\n", name, prop);
497 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
498 strncmp(name, base, base_len))
499 continue;
500
501 slash = strrchr(prop, '/');
502 if (strcmp(slash + 1, find_name))
503 continue;
Aswath Govindrajuc5891322020-12-03 10:55:45 +0530504
505 /*
506 * Adding an extra check to distinguish DT nodes with
507 * same name
508 */
509 if (IS_ENABLED(CONFIG_PHANDLE_CHECK_SEQ)) {
510 if (fdt_get_phandle(blob, offset) !=
511 fdt_get_phandle(blob, fdt_path_offset(blob, prop)))
512 continue;
513 }
514
Simon Glassc4af6732015-06-23 15:39:08 -0600515 val = trailing_strtol(name);
516 if (val != -1) {
517 *seqp = val;
518 debug("Found seq %d\n", *seqp);
519 return 0;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600520 }
521 }
522
523 debug("Not found\n");
524 return -ENOENT;
525}
526
Michal Simek003c9dc2019-01-31 16:30:58 +0100527int fdtdec_get_alias_highest_id(const void *blob, const char *base)
528{
529 int base_len = strlen(base);
530 int prop_offset;
531 int aliases;
532 int max = -1;
533
534 debug("Looking for highest alias id for '%s'\n", base);
535
536 aliases = fdt_path_offset(blob, "/aliases");
537 for (prop_offset = fdt_first_property_offset(blob, aliases);
538 prop_offset > 0;
539 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
540 const char *prop;
541 const char *name;
542 int len, val;
543
544 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
545 debug(" - %s, %s\n", name, prop);
546 if (*prop != '/' || prop[len - 1] ||
547 strncmp(name, base, base_len))
548 continue;
549
550 val = trailing_strtol(name);
551 if (val > max) {
552 debug("Found seq %d\n", val);
553 max = val;
554 }
555 }
556
557 return max;
558}
559
Simon Glass3bc37a52015-10-17 19:41:14 -0600560const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
561{
562 int chosen_node;
563
564 if (!blob)
565 return NULL;
566 chosen_node = fdt_path_offset(blob, "/chosen");
567 return fdt_getprop(blob, chosen_node, name, NULL);
568}
569
Simon Glassaac07d42014-09-04 16:27:24 -0600570int fdtdec_get_chosen_node(const void *blob, const char *name)
571{
572 const char *prop;
Simon Glassaac07d42014-09-04 16:27:24 -0600573
Simon Glass3bc37a52015-10-17 19:41:14 -0600574 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glassaac07d42014-09-04 16:27:24 -0600575 if (!prop)
576 return -FDT_ERR_NOTFOUND;
577 return fdt_path_offset(blob, prop);
578}
579
Simon Glass9a263e52012-03-28 10:08:24 +0000580int fdtdec_check_fdt(void)
581{
582 /*
583 * We must have an FDT, but we cannot panic() yet since the console
584 * is not ready. So for now, just assert(). Boards which need an early
585 * FDT (prior to console ready) will need to make their own
586 * arrangements and do their own checks.
587 */
588 assert(!fdtdec_prepare_fdt());
589 return 0;
590}
591
Simon Glassb5220bc2011-10-24 19:15:32 +0000592/*
593 * This function is a little odd in that it accesses global data. At some
594 * point if the architecture board.c files merge this will make more sense.
595 * Even now, it is common code.
596 */
Simon Glass9a263e52012-03-28 10:08:24 +0000597int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000598{
Simon Glassc309c2d2013-04-20 08:42:46 +0000599 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
600 fdt_check_header(gd->fdt_blob)) {
Simon Glass66312372015-02-27 22:06:32 -0700601#ifdef CONFIG_SPL_BUILD
602 puts("Missing DTB\n");
603#else
Simon Glasse1d23f52021-01-13 20:29:48 -0700604 printf("No valid device tree binary found at %p\n",
605 gd->fdt_blob);
Simon Glasscb5f97f702015-06-23 15:39:09 -0600606# ifdef DEBUG
607 if (gd->fdt_blob) {
608 printf("fdt_blob=%p\n", gd->fdt_blob);
609 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
610 32, 0);
611 }
612# endif
Simon Glass66312372015-02-27 22:06:32 -0700613#endif
Simon Glass9a263e52012-03-28 10:08:24 +0000614 return -1;
615 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000616 return 0;
617}
Simon Glassd17da652012-02-27 10:52:35 +0000618
619int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
620{
621 const u32 *phandle;
622 int lookup;
623
Simon Glass1cb23232012-07-12 05:25:01 +0000624 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000625 phandle = fdt_getprop(blob, node, prop_name, NULL);
626 if (!phandle)
627 return -FDT_ERR_NOTFOUND;
628
629 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
630 return lookup;
631}
632
633/**
634 * Look up a property in a node and check that it has a minimum length.
635 *
636 * @param blob FDT blob
637 * @param node node to examine
638 * @param prop_name name of property to find
639 * @param min_len minimum property length in bytes
640 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
641 found, or -FDT_ERR_BADLAYOUT if not enough data
642 * @return pointer to cell, which is only valid if err == 0
643 */
644static const void *get_prop_check_min_len(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100645 const char *prop_name, int min_len,
646 int *err)
Simon Glassd17da652012-02-27 10:52:35 +0000647{
648 const void *cell;
649 int len;
650
651 debug("%s: %s\n", __func__, prop_name);
652 cell = fdt_getprop(blob, node, prop_name, &len);
653 if (!cell)
654 *err = -FDT_ERR_NOTFOUND;
655 else if (len < min_len)
656 *err = -FDT_ERR_BADLAYOUT;
657 else
658 *err = 0;
659 return cell;
660}
661
662int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100663 u32 *array, int count)
Simon Glassd17da652012-02-27 10:52:35 +0000664{
665 const u32 *cell;
Mario Sixb79221a2018-01-15 11:07:36 +0100666 int err = 0;
Simon Glassd17da652012-02-27 10:52:35 +0000667
668 debug("%s: %s\n", __func__, prop_name);
669 cell = get_prop_check_min_len(blob, node, prop_name,
670 sizeof(u32) * count, &err);
671 if (!err) {
Mario Sixb79221a2018-01-15 11:07:36 +0100672 int i;
673
Simon Glassd17da652012-02-27 10:52:35 +0000674 for (i = 0; i < count; i++)
675 array[i] = fdt32_to_cpu(cell[i]);
676 }
677 return err;
678}
679
Simon Glassa9f04d42014-11-10 18:00:19 -0700680int fdtdec_get_int_array_count(const void *blob, int node,
681 const char *prop_name, u32 *array, int count)
682{
683 const u32 *cell;
684 int len, elems;
685 int i;
686
687 debug("%s: %s\n", __func__, prop_name);
688 cell = fdt_getprop(blob, node, prop_name, &len);
689 if (!cell)
690 return -FDT_ERR_NOTFOUND;
691 elems = len / sizeof(u32);
692 if (count > elems)
693 count = elems;
694 for (i = 0; i < count; i++)
695 array[i] = fdt32_to_cpu(cell[i]);
696
697 return count;
698}
699
Simon Glass96875e72012-04-02 13:18:41 +0000700const u32 *fdtdec_locate_array(const void *blob, int node,
701 const char *prop_name, int count)
702{
703 const u32 *cell;
704 int err;
705
706 cell = get_prop_check_min_len(blob, node, prop_name,
707 sizeof(u32) * count, &err);
708 return err ? NULL : cell;
709}
710
Simon Glassd17da652012-02-27 10:52:35 +0000711int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
712{
713 const s32 *cell;
714 int len;
715
716 debug("%s: %s\n", __func__, prop_name);
717 cell = fdt_getprop(blob, node, prop_name, &len);
718 return cell != NULL;
719}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000720
Simon Glass57068a72015-01-05 20:05:26 -0700721int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
722 const char *list_name,
723 const char *cells_name,
724 int cell_count, int index,
725 struct fdtdec_phandle_args *out_args)
726{
727 const __be32 *list, *list_end;
728 int rc = 0, size, cur_index = 0;
729 uint32_t count = 0;
730 int node = -1;
731 int phandle;
732
733 /* Retrieve the phandle list property */
734 list = fdt_getprop(blob, src_node, list_name, &size);
735 if (!list)
736 return -ENOENT;
737 list_end = list + size / sizeof(*list);
738
739 /* Loop over the phandles until all the requested entry is found */
740 while (list < list_end) {
741 rc = -EINVAL;
742 count = 0;
743
744 /*
745 * If phandle is 0, then it is an empty entry with no
746 * arguments. Skip forward to the next entry.
747 */
748 phandle = be32_to_cpup(list++);
749 if (phandle) {
750 /*
751 * Find the provider node and parse the #*-cells
752 * property to determine the argument length.
753 *
754 * This is not needed if the cell count is hard-coded
755 * (i.e. cells_name not set, but cell_count is set),
756 * except when we're going to return the found node
757 * below.
758 */
759 if (cells_name || cur_index == index) {
760 node = fdt_node_offset_by_phandle(blob,
761 phandle);
Patrick Delaunaycba487c2020-09-25 09:41:15 +0200762 if (node < 0) {
Simon Glass57068a72015-01-05 20:05:26 -0700763 debug("%s: could not find phandle\n",
764 fdt_get_name(blob, src_node,
765 NULL));
766 goto err;
767 }
768 }
769
770 if (cells_name) {
771 count = fdtdec_get_int(blob, node, cells_name,
772 -1);
773 if (count == -1) {
774 debug("%s: could not get %s for %s\n",
775 fdt_get_name(blob, src_node,
776 NULL),
777 cells_name,
778 fdt_get_name(blob, node,
779 NULL));
780 goto err;
781 }
782 } else {
783 count = cell_count;
784 }
785
786 /*
787 * Make sure that the arguments actually fit in the
788 * remaining property data length
789 */
790 if (list + count > list_end) {
791 debug("%s: arguments longer than property\n",
792 fdt_get_name(blob, src_node, NULL));
793 goto err;
794 }
795 }
796
797 /*
798 * All of the error cases above bail out of the loop, so at
799 * this point, the parsing is successful. If the requested
800 * index matches, then fill the out_args structure and return,
801 * or return -ENOENT for an empty entry.
802 */
803 rc = -ENOENT;
804 if (cur_index == index) {
805 if (!phandle)
806 goto err;
807
808 if (out_args) {
809 int i;
810
811 if (count > MAX_PHANDLE_ARGS) {
812 debug("%s: too many arguments %d\n",
813 fdt_get_name(blob, src_node,
814 NULL), count);
815 count = MAX_PHANDLE_ARGS;
816 }
817 out_args->node = node;
818 out_args->args_count = count;
819 for (i = 0; i < count; i++) {
820 out_args->args[i] =
821 be32_to_cpup(list++);
822 }
823 }
824
825 /* Found it! return success */
826 return 0;
827 }
828
829 node = -1;
830 list += count;
831 cur_index++;
832 }
833
834 /*
835 * Result will be one of:
836 * -ENOENT : index is for empty phandle
837 * -EINVAL : parsing error on data
838 * [1..n] : Number of phandle (count mode; when index = -1)
839 */
840 rc = index < 0 ? cur_index : -ENOENT;
841 err:
842 return rc;
843}
844
Anton Staffbed4d892012-04-17 09:01:28 +0000845int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100846 u8 *array, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000847{
848 const u8 *cell;
849 int err;
850
851 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
852 if (!err)
853 memcpy(array, cell, count);
854 return err;
855}
856
857const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100858 const char *prop_name, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000859{
860 const u8 *cell;
861 int err;
862
863 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
864 if (err)
865 return NULL;
866 return cell;
867}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000868
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000869int fdtdec_get_config_int(const void *blob, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100870 int default_val)
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000871{
872 int config_node;
873
874 debug("%s: %s\n", __func__, prop_name);
875 config_node = fdt_path_offset(blob, "/config");
876 if (config_node < 0)
877 return default_val;
878 return fdtdec_get_int(blob, config_node, prop_name, default_val);
879}
Simon Glass332ab0d2012-10-25 16:30:59 +0000880
Gabe Black79289c02012-10-25 16:31:04 +0000881int fdtdec_get_config_bool(const void *blob, const char *prop_name)
882{
883 int config_node;
884 const void *prop;
885
886 debug("%s: %s\n", __func__, prop_name);
887 config_node = fdt_path_offset(blob, "/config");
888 if (config_node < 0)
889 return 0;
890 prop = fdt_get_property(blob, config_node, prop_name, NULL);
891
892 return prop != NULL;
893}
894
Simon Glass332ab0d2012-10-25 16:30:59 +0000895char *fdtdec_get_config_string(const void *blob, const char *prop_name)
896{
897 const char *nodep;
898 int nodeoffset;
899 int len;
900
901 debug("%s: %s\n", __func__, prop_name);
902 nodeoffset = fdt_path_offset(blob, "/config");
903 if (nodeoffset < 0)
904 return NULL;
905
906 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
907 if (!nodep)
908 return NULL;
909
910 return (char *)nodep;
911}
Simon Glassf20c4612012-10-25 16:31:00 +0000912
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700913u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Reding56f42242014-08-26 17:33:53 +0200914{
915 u64 number = 0;
916
917 while (cells--)
918 number = (number << 32) | fdt32_to_cpu(*ptr++);
919
920 return number;
921}
922
923int fdt_get_resource(const void *fdt, int node, const char *property,
924 unsigned int index, struct fdt_resource *res)
925{
926 const fdt32_t *ptr, *end;
927 int na, ns, len, parent;
928 unsigned int i = 0;
929
930 parent = fdt_parent_offset(fdt, node);
931 if (parent < 0)
932 return parent;
933
934 na = fdt_address_cells(fdt, parent);
935 ns = fdt_size_cells(fdt, parent);
936
937 ptr = fdt_getprop(fdt, node, property, &len);
938 if (!ptr)
939 return len;
940
941 end = ptr + len / sizeof(*ptr);
942
943 while (ptr + na + ns <= end) {
944 if (i == index) {
Patrick Delaunayfeb7ac42021-04-06 09:38:06 +0200945 if (CONFIG_IS_ENABLED(OF_TRANSLATE))
946 res->start = fdt_translate_address(fdt, node, ptr);
947 else
948 res->start = fdtdec_get_number(ptr, na);
949
Mario Sixb79221a2018-01-15 11:07:36 +0100950 res->end = res->start;
Thierry Reding56f42242014-08-26 17:33:53 +0200951 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
952 return 0;
953 }
954
955 ptr += na + ns;
956 i++;
957 }
958
959 return -FDT_ERR_NOTFOUND;
960}
961
962int fdt_get_named_resource(const void *fdt, int node, const char *property,
963 const char *prop_names, const char *name,
964 struct fdt_resource *res)
965{
966 int index;
967
Simon Glassb02e4042016-10-02 17:59:28 -0600968 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Reding56f42242014-08-26 17:33:53 +0200969 if (index < 0)
970 return index;
971
972 return fdt_get_resource(fdt, node, property, index, res);
973}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200974
Simon Glass12e67112015-04-14 21:03:21 -0600975static int decode_timing_property(const void *blob, int node, const char *name,
976 struct timing_entry *result)
977{
978 int length, ret = 0;
979 const u32 *prop;
980
981 prop = fdt_getprop(blob, node, name, &length);
982 if (!prop) {
983 debug("%s: could not find property %s\n",
984 fdt_get_name(blob, node, NULL), name);
985 return length;
986 }
987
988 if (length == sizeof(u32)) {
989 result->typ = fdtdec_get_int(blob, node, name, 0);
990 result->min = result->typ;
991 result->max = result->typ;
992 } else {
993 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
994 }
995
996 return ret;
997}
998
999int fdtdec_decode_display_timing(const void *blob, int parent, int index,
1000 struct display_timing *dt)
1001{
1002 int i, node, timings_node;
1003 u32 val = 0;
1004 int ret = 0;
1005
1006 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1007 if (timings_node < 0)
1008 return timings_node;
1009
1010 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1011 node > 0 && i != index;
1012 node = fdt_next_subnode(blob, node))
1013 i++;
1014
1015 if (node < 0)
1016 return node;
1017
1018 memset(dt, 0, sizeof(*dt));
1019
1020 ret |= decode_timing_property(blob, node, "hback-porch",
1021 &dt->hback_porch);
1022 ret |= decode_timing_property(blob, node, "hfront-porch",
1023 &dt->hfront_porch);
1024 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1025 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1026 ret |= decode_timing_property(blob, node, "vback-porch",
1027 &dt->vback_porch);
1028 ret |= decode_timing_property(blob, node, "vfront-porch",
1029 &dt->vfront_porch);
1030 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1031 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1032 ret |= decode_timing_property(blob, node, "clock-frequency",
1033 &dt->pixelclock);
1034
1035 dt->flags = 0;
1036 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1037 if (val != -1) {
1038 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1039 DISPLAY_FLAGS_VSYNC_LOW;
1040 }
1041 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1042 if (val != -1) {
1043 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1044 DISPLAY_FLAGS_HSYNC_LOW;
1045 }
1046 val = fdtdec_get_int(blob, node, "de-active", -1);
1047 if (val != -1) {
1048 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1049 DISPLAY_FLAGS_DE_LOW;
1050 }
1051 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1052 if (val != -1) {
1053 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1054 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1055 }
1056
1057 if (fdtdec_get_bool(blob, node, "interlaced"))
1058 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1059 if (fdtdec_get_bool(blob, node, "doublescan"))
1060 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1061 if (fdtdec_get_bool(blob, node, "doubleclk"))
1062 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1063
Simon Glass04b9dd12016-05-05 07:28:21 -06001064 return ret;
Simon Glass12e67112015-04-14 21:03:21 -06001065}
1066
Michal Simek50c7b722020-07-10 13:16:50 +02001067int fdtdec_setup_mem_size_base(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001068{
Michal Simekc2f09502020-07-10 13:34:44 +02001069 int ret;
1070 ofnode mem;
1071 struct resource res;
Nathan Rossi623f6012016-12-19 00:03:34 +10001072
Michal Simekc2f09502020-07-10 13:34:44 +02001073 mem = ofnode_path("/memory");
1074 if (!ofnode_valid(mem)) {
Nathan Rossi623f6012016-12-19 00:03:34 +10001075 debug("%s: Missing /memory node\n", __func__);
1076 return -EINVAL;
1077 }
1078
Michal Simekc2f09502020-07-10 13:34:44 +02001079 ret = ofnode_read_resource(mem, 0, &res);
Nathan Rossi623f6012016-12-19 00:03:34 +10001080 if (ret != 0) {
1081 debug("%s: Unable to decode first memory bank\n", __func__);
1082 return -EINVAL;
1083 }
1084
1085 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +05301086 gd->ram_base = (unsigned long)res.start;
Simon Glassc69380f2017-05-27 07:38:13 -06001087 debug("%s: Initial DRAM size %llx\n", __func__,
1088 (unsigned long long)gd->ram_size);
Nathan Rossi623f6012016-12-19 00:03:34 +10001089
1090 return 0;
1091}
1092
Michal Simekc2f09502020-07-10 13:34:44 +02001093ofnode get_next_memory_node(ofnode mem)
Jens Wiklander452bc122018-07-13 12:12:11 +02001094{
Jens Wiklander452bc122018-07-13 12:12:11 +02001095 do {
Michal Simekc2f09502020-07-10 13:34:44 +02001096 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
1097 } while (!ofnode_is_available(mem));
Jens Wiklander452bc122018-07-13 12:12:11 +02001098
1099 return mem;
1100}
1101
Michal Simek62897c42020-07-10 13:16:49 +02001102int fdtdec_setup_memory_banksize(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001103{
Michal Simekc2f09502020-07-10 13:34:44 +02001104 int bank, ret, reg = 0;
1105 struct resource res;
1106 ofnode mem = ofnode_null();
Nathan Rossi623f6012016-12-19 00:03:34 +10001107
Michal Simekc2f09502020-07-10 13:34:44 +02001108 mem = get_next_memory_node(mem);
1109 if (!ofnode_valid(mem)) {
Michal Simek658954c2018-10-03 15:53:52 +02001110 debug("%s: Missing /memory node\n", __func__);
1111 return -EINVAL;
1112 }
Nathan Rossi623f6012016-12-19 00:03:34 +10001113
1114 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001115 ret = ofnode_read_resource(mem, reg++, &res);
1116 if (ret < 0) {
Marek Vasut942ee092017-11-27 05:32:42 +01001117 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001118 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001119 if (!ofnode_valid(mem))
Michal Simek658954c2018-10-03 15:53:52 +02001120 break;
1121
Michal Simekc2f09502020-07-10 13:34:44 +02001122 ret = ofnode_read_resource(mem, reg++, &res);
1123 if (ret < 0)
Michal Simek658954c2018-10-03 15:53:52 +02001124 break;
1125 }
Michal Simekc2f09502020-07-10 13:34:44 +02001126
1127 if (ret != 0)
Michal Simek658954c2018-10-03 15:53:52 +02001128 return -EINVAL;
Nathan Rossi623f6012016-12-19 00:03:34 +10001129
1130 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1131 gd->bd->bi_dram[bank].size =
1132 (phys_size_t)(res.end - res.start + 1);
1133
1134 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1135 __func__, bank,
1136 (unsigned long long)gd->bd->bi_dram[bank].start,
1137 (unsigned long long)gd->bd->bi_dram[bank].size);
1138 }
1139
1140 return 0;
1141}
Michal Simek7fce7392020-07-09 14:09:52 +02001142
1143int fdtdec_setup_mem_size_base_lowest(void)
1144{
Michal Simekc2f09502020-07-10 13:34:44 +02001145 int bank, ret, reg = 0;
1146 struct resource res;
Michal Simek7fce7392020-07-09 14:09:52 +02001147 unsigned long base;
1148 phys_size_t size;
Michal Simekc2f09502020-07-10 13:34:44 +02001149 ofnode mem = ofnode_null();
Michal Simek7fce7392020-07-09 14:09:52 +02001150
1151 gd->ram_base = (unsigned long)~0;
1152
Michal Simekc2f09502020-07-10 13:34:44 +02001153 mem = get_next_memory_node(mem);
1154 if (!ofnode_valid(mem)) {
Michal Simek7fce7392020-07-09 14:09:52 +02001155 debug("%s: Missing /memory node\n", __func__);
1156 return -EINVAL;
1157 }
1158
1159 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001160 ret = ofnode_read_resource(mem, reg++, &res);
1161 if (ret < 0) {
Michal Simek7fce7392020-07-09 14:09:52 +02001162 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001163 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001164 if (!ofnode_valid(mem))
Michal Simek7fce7392020-07-09 14:09:52 +02001165 break;
1166
Michal Simekc2f09502020-07-10 13:34:44 +02001167 ret = ofnode_read_resource(mem, reg++, &res);
1168 if (ret < 0)
Michal Simek7fce7392020-07-09 14:09:52 +02001169 break;
1170 }
Michal Simekc2f09502020-07-10 13:34:44 +02001171
Michal Simek7fce7392020-07-09 14:09:52 +02001172 if (ret != 0)
1173 return -EINVAL;
1174
1175 base = (unsigned long)res.start;
1176 size = (phys_size_t)(res.end - res.start + 1);
1177
1178 if (gd->ram_base > base && size) {
1179 gd->ram_base = base;
1180 gd->ram_size = size;
1181 debug("%s: Initial DRAM base %lx size %lx\n",
1182 __func__, base, (unsigned long)size);
1183 }
1184 }
1185
1186 return 0;
1187}
Nathan Rossi623f6012016-12-19 00:03:34 +10001188
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001189#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1190# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1191 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
1192static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1193{
Marek Vasut95f4bbd2019-03-08 16:06:55 +01001194 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut1fd30352019-03-13 21:11:22 +01001195 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001196 ulong sz_in = sz_src;
1197 void *dst;
1198 int rc;
1199
1200 if (CONFIG_IS_ENABLED(GZIP))
Marek Vasut1fd30352019-03-13 21:11:22 +01001201 if (gzip_parse_header(src, sz_in) >= 0)
1202 gzip = 1;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001203 if (CONFIG_IS_ENABLED(LZO))
Marek Vasut1fd30352019-03-13 21:11:22 +01001204 if (!gzip && lzop_is_valid_header(src))
1205 lzo = 1;
1206
1207 if (!gzip && !lzo)
1208 return -EBADMSG;
1209
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001210
1211 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1212 dst = malloc(sz_out);
1213 if (!dst) {
1214 puts("uncompress_blob: Unable to allocate memory\n");
1215 return -ENOMEM;
1216 }
1217 } else {
1218# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
1219 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
1220# else
1221 return -ENOTSUPP;
1222# endif
1223 }
1224
Marek Vasut1fd30352019-03-13 21:11:22 +01001225 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001226 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut1fd30352019-03-13 21:11:22 +01001227 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001228 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut1fd30352019-03-13 21:11:22 +01001229 else
1230 hang();
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001231
1232 if (rc < 0) {
1233 /* not a valid compressed blob */
1234 puts("uncompress_blob: Unable to uncompress\n");
1235 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1236 free(dst);
1237 return -EBADMSG;
1238 }
1239 *dstp = dst;
1240 return 0;
1241}
1242# else
1243static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1244{
Marek Vasut410d9b62018-10-18 20:37:05 +02001245 *dstp = (void *)src;
1246 return 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001247}
1248# endif
1249#endif
1250
Rob Clark3b595da2018-01-10 11:34:37 +01001251#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1252/*
1253 * For CONFIG_OF_SEPARATE, the board may optionally implement this to
1254 * provide and/or fixup the fdt.
1255 */
1256__weak void *board_fdt_blob_setup(void)
1257{
1258 void *fdt_blob = NULL;
1259#ifdef CONFIG_SPL_BUILD
1260 /* FDT is at end of BSS unless it is in a different memory region */
Tom Rinie31350c2021-02-14 14:08:17 -05001261 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
Rob Clark3b595da2018-01-10 11:34:37 +01001262 fdt_blob = (ulong *)&_image_binary_end;
1263 else
1264 fdt_blob = (ulong *)&__bss_end;
1265#else
1266 /* FDT is at end of image */
1267 fdt_blob = (ulong *)&_end;
1268#endif
1269 return fdt_blob;
1270}
1271#endif
1272
Thierry Redingebf30e82019-04-15 11:32:13 +02001273int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1274{
1275 const char *path;
1276 int offset, err;
1277
1278 if (!is_valid_ethaddr(mac))
1279 return -EINVAL;
1280
1281 path = fdt_get_alias(fdt, "ethernet");
1282 if (!path)
1283 return 0;
1284
1285 debug("ethernet alias found: %s\n", path);
1286
1287 offset = fdt_path_offset(fdt, path);
1288 if (offset < 0) {
1289 debug("ethernet alias points to absent node %s\n", path);
1290 return -ENOENT;
1291 }
1292
1293 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1294 if (err < 0)
1295 return err;
1296
1297 debug("MAC address: %pM\n", mac);
1298
1299 return 0;
1300}
1301
Thierry Redingc9222a02019-03-21 19:10:02 +01001302static int fdtdec_init_reserved_memory(void *blob)
1303{
1304 int na, ns, node, err;
1305 fdt32_t value;
1306
1307 /* inherit #address-cells and #size-cells from the root node */
1308 na = fdt_address_cells(blob, 0);
1309 ns = fdt_size_cells(blob, 0);
1310
1311 node = fdt_add_subnode(blob, 0, "reserved-memory");
1312 if (node < 0)
1313 return node;
1314
1315 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1316 if (err < 0)
1317 return err;
1318
1319 value = cpu_to_fdt32(ns);
1320
1321 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1322 if (err < 0)
1323 return err;
1324
1325 value = cpu_to_fdt32(na);
1326
1327 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1328 if (err < 0)
1329 return err;
1330
1331 return node;
1332}
1333
1334int fdtdec_add_reserved_memory(void *blob, const char *basename,
1335 const struct fdt_memory *carveout,
Etienne Carriereccaa5742020-09-10 10:49:59 +02001336 uint32_t *phandlep, bool no_map)
Thierry Redingc9222a02019-03-21 19:10:02 +01001337{
1338 fdt32_t cells[4] = {}, *ptr = cells;
1339 uint32_t upper, lower, phandle;
1340 int parent, node, na, ns, err;
Thierry Reding3bf2f152019-04-15 10:08:21 +02001341 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001342 char name[64];
1343
1344 /* create an empty /reserved-memory node if one doesn't exist */
1345 parent = fdt_path_offset(blob, "/reserved-memory");
1346 if (parent < 0) {
1347 parent = fdtdec_init_reserved_memory(blob);
1348 if (parent < 0)
1349 return parent;
1350 }
1351
1352 /* only 1 or 2 #address-cells and #size-cells are supported */
1353 na = fdt_address_cells(blob, parent);
1354 if (na < 1 || na > 2)
1355 return -FDT_ERR_BADNCELLS;
1356
1357 ns = fdt_size_cells(blob, parent);
1358 if (ns < 1 || ns > 2)
1359 return -FDT_ERR_BADNCELLS;
1360
1361 /* find a matching node and return the phandle to that */
1362 fdt_for_each_subnode(node, blob, parent) {
1363 const char *name = fdt_get_name(blob, node, NULL);
Bin Menga9ad1132020-05-19 23:38:32 -07001364 fdt_addr_t addr;
1365 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001366
Bin Mengf6704c72020-05-19 23:38:33 -07001367 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1368 &size, false);
Thierry Redingc9222a02019-03-21 19:10:02 +01001369 if (addr == FDT_ADDR_T_NONE) {
1370 debug("failed to read address/size for %s\n", name);
1371 continue;
1372 }
1373
Atish Patraf6147532020-04-21 11:15:00 -07001374 if (addr == carveout->start && (addr + size - 1) ==
1375 carveout->end) {
Heiko Stuebner086336a2019-10-23 16:46:38 +02001376 if (phandlep)
1377 *phandlep = fdt_get_phandle(blob, node);
Thierry Redingc9222a02019-03-21 19:10:02 +01001378 return 0;
1379 }
1380 }
1381
1382 /*
1383 * Unpack the start address and generate the name of the new node
1384 * base on the basename and the unit-address.
1385 */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001386 upper = upper_32_bits(carveout->start);
1387 lower = lower_32_bits(carveout->start);
Thierry Redingc9222a02019-03-21 19:10:02 +01001388
1389 if (na > 1 && upper > 0)
1390 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1391 lower);
1392 else {
1393 if (upper > 0) {
1394 debug("address %08x:%08x exceeds addressable space\n",
1395 upper, lower);
1396 return -FDT_ERR_BADVALUE;
1397 }
1398
1399 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1400 }
1401
1402 node = fdt_add_subnode(blob, parent, name);
1403 if (node < 0)
1404 return node;
1405
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001406 if (phandlep) {
1407 err = fdt_generate_phandle(blob, &phandle);
1408 if (err < 0)
1409 return err;
Thierry Redingc9222a02019-03-21 19:10:02 +01001410
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001411 err = fdtdec_set_phandle(blob, node, phandle);
1412 if (err < 0)
1413 return err;
1414 }
Thierry Redingc9222a02019-03-21 19:10:02 +01001415
1416 /* store one or two address cells */
1417 if (na > 1)
1418 *ptr++ = cpu_to_fdt32(upper);
1419
1420 *ptr++ = cpu_to_fdt32(lower);
1421
1422 /* store one or two size cells */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001423 size = carveout->end - carveout->start + 1;
1424 upper = upper_32_bits(size);
1425 lower = lower_32_bits(size);
Thierry Redingc9222a02019-03-21 19:10:02 +01001426
1427 if (ns > 1)
1428 *ptr++ = cpu_to_fdt32(upper);
1429
1430 *ptr++ = cpu_to_fdt32(lower);
1431
1432 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1433 if (err < 0)
1434 return err;
1435
Etienne Carriereccaa5742020-09-10 10:49:59 +02001436 if (no_map) {
1437 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1438 if (err < 0)
1439 return err;
1440 }
1441
Thierry Redingc9222a02019-03-21 19:10:02 +01001442 /* return the phandle for the new node for the caller to use */
1443 if (phandlep)
1444 *phandlep = phandle;
1445
1446 return 0;
1447}
1448
Thierry Reding16523ac2019-03-21 19:10:03 +01001449int fdtdec_get_carveout(const void *blob, const char *node, const char *name,
1450 unsigned int index, struct fdt_memory *carveout)
1451{
1452 const fdt32_t *prop;
1453 uint32_t phandle;
1454 int offset, len;
1455 fdt_size_t size;
1456
1457 offset = fdt_path_offset(blob, node);
1458 if (offset < 0)
1459 return offset;
1460
1461 prop = fdt_getprop(blob, offset, name, &len);
1462 if (!prop) {
1463 debug("failed to get %s for %s\n", name, node);
1464 return -FDT_ERR_NOTFOUND;
1465 }
1466
1467 if ((len % sizeof(phandle)) != 0) {
1468 debug("invalid phandle property\n");
1469 return -FDT_ERR_BADPHANDLE;
1470 }
1471
1472 if (len < (sizeof(phandle) * (index + 1))) {
1473 debug("invalid phandle index\n");
1474 return -FDT_ERR_BADPHANDLE;
1475 }
1476
1477 phandle = fdt32_to_cpu(prop[index]);
1478
1479 offset = fdt_node_offset_by_phandle(blob, phandle);
1480 if (offset < 0) {
1481 debug("failed to find node for phandle %u\n", phandle);
1482 return offset;
1483 }
1484
1485 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1486 "reg", 0, &size,
1487 true);
1488 if (carveout->start == FDT_ADDR_T_NONE) {
1489 debug("failed to read address/size from \"reg\" property\n");
1490 return -FDT_ERR_NOTFOUND;
1491 }
1492
1493 carveout->end = carveout->start + size - 1;
1494
1495 return 0;
1496}
1497
1498int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
1499 unsigned int index, const char *name,
1500 const struct fdt_memory *carveout)
1501{
1502 uint32_t phandle;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001503 int err, offset, len;
Thierry Reding16523ac2019-03-21 19:10:03 +01001504 fdt32_t value;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001505 void *prop;
Thierry Reding16523ac2019-03-21 19:10:03 +01001506
Etienne Carriereccaa5742020-09-10 10:49:59 +02001507 err = fdtdec_add_reserved_memory(blob, name, carveout, &phandle, false);
Thierry Reding16523ac2019-03-21 19:10:03 +01001508 if (err < 0) {
1509 debug("failed to add reserved memory: %d\n", err);
1510 return err;
1511 }
1512
1513 offset = fdt_path_offset(blob, node);
1514 if (offset < 0) {
1515 debug("failed to find offset for node %s: %d\n", node, offset);
1516 return offset;
1517 }
1518
1519 value = cpu_to_fdt32(phandle);
1520
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001521 if (!fdt_getprop(blob, offset, prop_name, &len)) {
1522 if (len == -FDT_ERR_NOTFOUND)
1523 len = 0;
1524 else
1525 return len;
1526 }
1527
1528 if ((index + 1) * sizeof(value) > len) {
1529 err = fdt_setprop_placeholder(blob, offset, prop_name,
1530 (index + 1) * sizeof(value),
1531 &prop);
1532 if (err < 0) {
1533 debug("failed to resize reserved memory property: %s\n",
1534 fdt_strerror(err));
1535 return err;
1536 }
1537 }
1538
1539 err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1540 strlen(prop_name),
1541 index * sizeof(value),
1542 &value, sizeof(value));
Thierry Reding16523ac2019-03-21 19:10:03 +01001543 if (err < 0) {
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001544 debug("failed to update %s property for node %s: %s\n",
1545 prop_name, node, fdt_strerror(err));
Thierry Reding16523ac2019-03-21 19:10:03 +01001546 return err;
1547 }
1548
1549 return 0;
1550}
1551
Marek Vasut0e2afc82020-04-11 21:18:59 +02001552__weak int fdtdec_board_setup(const void *fdt_blob)
1553{
1554 return 0;
1555}
1556
Simon Glass08793612015-02-27 22:06:35 -07001557int fdtdec_setup(void)
Simon Glassb45122f2015-02-27 22:06:34 -07001558{
Marek Vasut0e2afc82020-04-11 21:18:59 +02001559 int ret;
Masahiro Yamada0f925822015-08-12 07:31:55 +09001560#if CONFIG_IS_ENABLED(OF_CONTROL)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001561# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1562 void *fdt_blob;
1563# endif
Simon Glassb45122f2015-02-27 22:06:34 -07001564# ifdef CONFIG_OF_EMBED
1565 /* Get a pointer to the FDT */
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +00001566# ifdef CONFIG_SPL_BUILD
1567 gd->fdt_blob = __dtb_dt_spl_begin;
1568# else
Simon Glassb45122f2015-02-27 22:06:34 -07001569 gd->fdt_blob = __dtb_dt_begin;
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +00001570# endif
Rob Clark3b595da2018-01-10 11:34:37 +01001571# elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
Alex Deymo82f766d2017-04-02 01:25:20 -07001572 /* Allow the board to override the fdt address. */
1573 gd->fdt_blob = board_fdt_blob_setup();
Simon Glassb45122f2015-02-27 22:06:34 -07001574# elif defined(CONFIG_OF_HOSTFILE)
1575 if (sandbox_read_fdt_from_file()) {
1576 puts("Failed to read control FDT\n");
1577 return -1;
1578 }
Lukas Auerc4f603f2019-08-21 21:14:40 +02001579# elif defined(CONFIG_OF_PRIOR_STAGE)
Bin Mengd17e9d22021-01-31 20:36:03 +08001580 gd->fdt_blob = (void *)(uintptr_t)prior_stage_fdt_address;
Simon Glassb45122f2015-02-27 22:06:34 -07001581# endif
1582# ifndef CONFIG_SPL_BUILD
1583 /* Allow the early environment to override the fdt address */
Heinrich Schuchardtf980c992018-11-18 17:58:50 +01001584 gd->fdt_blob = map_sysmem
1585 (env_get_ulong("fdtcontroladdr", 16,
1586 (unsigned long)map_to_sysmem(gd->fdt_blob)), 0);
Simon Glassb45122f2015-02-27 22:06:34 -07001587# endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001588
1589# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1590 /*
1591 * Try and uncompress the blob.
1592 * Unfortunately there is no way to know how big the input blob really
1593 * is. So let us set the maximum input size arbitrarily high. 16MB
1594 * ought to be more than enough for packed DTBs.
1595 */
1596 if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0)
1597 gd->fdt_blob = fdt_blob;
1598
1599 /*
1600 * Check if blob is a FIT images containings DTBs.
1601 * If so, pick the most relevant
1602 */
1603 fdt_blob = locate_dtb_in_fit(gd->fdt_blob);
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001604 if (fdt_blob) {
1605 gd->multi_dtb_fit = gd->fdt_blob;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001606 gd->fdt_blob = fdt_blob;
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001607 }
1608
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001609# endif
Simon Glassb45122f2015-02-27 22:06:34 -07001610#endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001611
Marek Vasut0e2afc82020-04-11 21:18:59 +02001612 ret = fdtdec_prepare_fdt();
1613 if (!ret)
1614 ret = fdtdec_board_setup(gd->fdt_blob);
1615 return ret;
Simon Glassb45122f2015-02-27 22:06:34 -07001616}
1617
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001618#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1619int fdtdec_resetup(int *rescan)
1620{
1621 void *fdt_blob;
1622
1623 /*
1624 * If the current DTB is part of a compressed FIT image,
1625 * try to locate the best match from the uncompressed
1626 * FIT image stillpresent there. Save the time and space
1627 * required to uncompress it again.
1628 */
1629 if (gd->multi_dtb_fit) {
1630 fdt_blob = locate_dtb_in_fit(gd->multi_dtb_fit);
1631
1632 if (fdt_blob == gd->fdt_blob) {
1633 /*
1634 * The best match did not change. no need to tear down
1635 * the DM and rescan the fdt.
1636 */
1637 *rescan = 0;
1638 return 0;
1639 }
1640
1641 *rescan = 1;
1642 gd->fdt_blob = fdt_blob;
1643 return fdtdec_prepare_fdt();
1644 }
1645
1646 /*
1647 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1648 * not a FIT image containings DTB, but a single DTB. There is no need
1649 * to teard down DM and rescan the DT in this case.
1650 */
1651 *rescan = 0;
1652 return 0;
1653}
1654#endif
1655
Michael Pratt90c08fa2018-06-11 13:07:09 -06001656int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001657 phys_addr_t *basep, phys_size_t *sizep,
1658 struct bd_info *bd)
Michael Pratt90c08fa2018-06-11 13:07:09 -06001659{
1660 int addr_cells, size_cells;
1661 const u32 *cell, *end;
1662 u64 total_size, size, addr;
1663 int node, child;
1664 bool auto_size;
1665 int bank;
1666 int len;
1667
1668 debug("%s: board_id=%d\n", __func__, board_id);
1669 if (!area)
1670 area = "/memory";
1671 node = fdt_path_offset(blob, area);
1672 if (node < 0) {
1673 debug("No %s node found\n", area);
1674 return -ENOENT;
1675 }
1676
1677 cell = fdt_getprop(blob, node, "reg", &len);
1678 if (!cell) {
1679 debug("No reg property found\n");
1680 return -ENOENT;
1681 }
1682
1683 addr_cells = fdt_address_cells(blob, node);
1684 size_cells = fdt_size_cells(blob, node);
1685
1686 /* Check the board id and mask */
1687 for (child = fdt_first_subnode(blob, node);
1688 child >= 0;
1689 child = fdt_next_subnode(blob, child)) {
1690 int match_mask, match_value;
1691
1692 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1693 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1694
1695 if (match_value >= 0 &&
1696 ((board_id & match_mask) == match_value)) {
1697 /* Found matching mask */
1698 debug("Found matching mask %d\n", match_mask);
1699 node = child;
1700 cell = fdt_getprop(blob, node, "reg", &len);
1701 if (!cell) {
1702 debug("No memory-banks property found\n");
1703 return -EINVAL;
1704 }
1705 break;
1706 }
1707 }
1708 /* Note: if no matching subnode was found we use the parent node */
1709
1710 if (bd) {
1711 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1712 CONFIG_NR_DRAM_BANKS);
1713 }
1714
1715 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1716
1717 total_size = 0;
1718 end = cell + len / 4 - addr_cells - size_cells;
1719 debug("cell at %p, end %p\n", cell, end);
1720 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1721 if (cell > end)
1722 break;
1723 addr = 0;
1724 if (addr_cells == 2)
1725 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1726 addr += fdt32_to_cpu(*cell++);
1727 if (bd)
1728 bd->bi_dram[bank].start = addr;
1729 if (basep && !bank)
1730 *basep = (phys_addr_t)addr;
1731
1732 size = 0;
1733 if (size_cells == 2)
1734 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1735 size += fdt32_to_cpu(*cell++);
1736
1737 if (auto_size) {
1738 u64 new_size;
1739
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001740 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001741 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1742 if (new_size == size) {
1743 debug("OK\n");
1744 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001745 debug("sized to %llx\n", new_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001746 size = new_size;
1747 }
1748 }
1749
1750 if (bd)
1751 bd->bi_dram[bank].size = size;
1752 total_size += size;
1753 }
1754
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001755 debug("Memory size %llu\n", total_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001756 if (sizep)
1757 *sizep = (phys_size_t)total_size;
1758
1759 return 0;
1760}
Michael Pratt90c08fa2018-06-11 13:07:09 -06001761
Simon Glassb45122f2015-02-27 22:06:34 -07001762#endif /* !USE_HOSTCC */