blob: e048f7777d62877a101a8a2ed34ead0e41ff0898 [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>
24#include <asm/sections.h>
Simon Glass5c33c9f2014-07-23 06:55:09 -060025#include <linux/ctype.h>
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +020026#include <linux/lzo.h>
Michal Simekc2f09502020-07-10 13:34:44 +020027#include <linux/ioport.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000028
29DECLARE_GLOBAL_DATA_PTR;
30
31/*
32 * Here are the type we know about. One day we might allow drivers to
33 * register. For now we just put them here. The COMPAT macro allows us to
34 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass01a227d2016-06-19 17:33:13 -060035 *
36 * NOTE: This list is basically a TODO list for things that need to be
37 * converted to driver model. So don't add new things here unless there is a
38 * good reason why driver-model conversion is infeasible. Examples include
39 * things which are used before driver model is available.
Simon Glassb5220bc2011-10-24 19:15:32 +000040 */
41#define COMPAT(id, name) name
42static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000043 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000044 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
45 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin312693c2012-07-29 20:53:29 +000046 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Reding79c7a902014-12-09 22:25:09 -070047 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warren7aaa5a62015-03-04 16:36:00 -070048 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Hatim RVcc9fe332012-12-11 00:52:46 +000049 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
50 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000051 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053052 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000053 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010054 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090055 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrong51e4e3e2019-02-10 10:16:21 +000056 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053057 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070058 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Mengc89ada02015-02-05 23:42:26 +080059 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasut6ab00db2015-07-25 19:33:56 +020060 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut129adf52015-07-25 10:48:14 +020061 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutef4b01b2015-12-05 19:28:44 +010062 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass39ea0ee2016-06-19 17:33:14 -060063 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
64 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
65 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Boris Brezillon4ccae812016-06-15 21:09:23 +020066 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
Ley Foon Tane11b5e82017-04-05 17:32:47 +080067 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
68 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
69 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
70 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
71 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
72 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
73 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
74 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +080075 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
76 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasut19c8fc72018-05-12 11:56:10 +020077 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glassb5220bc2011-10-24 19:15:32 +000078};
79
Simon Glassa53f4a22012-01-17 08:20:50 +000080const char *fdtdec_get_compatible(enum fdt_compat_id id)
81{
82 /* We allow reading of the 'unknown' ID for testing purposes */
83 assert(id >= 0 && id < COMPAT_COUNT);
84 return compat_names[id];
85}
86
Stephen Warren02464e32015-08-06 15:31:02 -060087fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +010088 const char *prop_name, int index, int na,
89 int ns, fdt_size_t *sizep,
90 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -060091{
92 const fdt32_t *prop, *prop_end;
93 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
94 int len;
95 fdt_addr_t addr;
96
97 debug("%s: %s: ", __func__, prop_name);
98
Stephen Warren02464e32015-08-06 15:31:02 -060099 prop = fdt_getprop(blob, node, prop_name, &len);
100 if (!prop) {
101 debug("(not found)\n");
102 return FDT_ADDR_T_NONE;
103 }
104 prop_end = prop + (len / sizeof(*prop));
105
106 prop_addr = prop + (index * (na + ns));
107 prop_size = prop_addr + na;
108 prop_after_size = prop_size + ns;
109 if (prop_after_size > prop_end) {
110 debug("(not enough data: expected >= %d cells, got %d cells)\n",
111 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
112 return FDT_ADDR_T_NONE;
113 }
114
Vignesh R5efa1bf2017-03-20 10:04:38 +0530115#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren6e06acb2016-08-05 09:47:51 -0600116 if (translate)
117 addr = fdt_translate_address(blob, node, prop_addr);
118 else
119#endif
120 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren02464e32015-08-06 15:31:02 -0600121
122 if (sizep) {
123 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glassfd30d2c2016-02-29 15:25:37 -0700124 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
125 (unsigned long long)*sizep);
Stephen Warren02464e32015-08-06 15:31:02 -0600126 } else {
Simon Glassfd30d2c2016-02-29 15:25:37 -0700127 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren02464e32015-08-06 15:31:02 -0600128 }
129
130 return addr;
131}
132
133fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Six2e386622018-01-15 11:07:35 +0100134 int node, const char *prop_name,
135 int index, fdt_size_t *sizep,
136 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600137{
138 int na, ns;
139
140 debug("%s: ", __func__);
141
142 na = fdt_address_cells(blob, parent);
143 if (na < 1) {
144 debug("(bad #address-cells)\n");
145 return FDT_ADDR_T_NONE;
146 }
147
148 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczakff0a6352015-09-30 13:14:50 +0200149 if (ns < 0) {
Stephen Warren02464e32015-08-06 15:31:02 -0600150 debug("(bad #size-cells)\n");
151 return FDT_ADDR_T_NONE;
152 }
153
154 debug("na=%d, ns=%d, ", na, ns);
155
156 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600157 ns, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600158}
159
160fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100161 const char *prop_name, int index,
162 fdt_size_t *sizep,
163 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600164{
165 int parent;
166
167 debug("%s: ", __func__);
168
169 parent = fdt_parent_offset(blob, node);
170 if (parent < 0) {
171 debug("(no parent found)\n");
172 return FDT_ADDR_T_NONE;
173 }
174
175 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600176 index, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600177}
178
Simon Glass4397a2a2013-03-19 04:58:51 +0000179fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100180 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +0000181{
Stephen Warrend93b9a02015-09-25 10:11:41 -0600182 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
183
Stephen Warren02464e32015-08-06 15:31:02 -0600184 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
185 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren6e06acb2016-08-05 09:47:51 -0600186 ns, sizep, false);
Simon Glassb5220bc2011-10-24 19:15:32 +0000187}
188
Mario Six2e386622018-01-15 11:07:35 +0100189fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glass4397a2a2013-03-19 04:58:51 +0000190{
191 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
192}
193
Sekhar Norid50d6812018-12-06 15:40:08 +0530194#if CONFIG_IS_ENABLED(PCI) && defined(CONFIG_DM_PCI)
Bin Menga62e84d2014-12-31 16:05:11 +0800195int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
196{
197 const char *list, *end;
198 int len;
199
200 list = fdt_getprop(blob, node, "compatible", &len);
201 if (!list)
202 return -ENOENT;
203
204 end = list + len;
205 while (list < end) {
Bin Menga62e84d2014-12-31 16:05:11 +0800206 len = strlen(list);
207 if (len >= strlen("pciVVVV,DDDD")) {
Mario Sixb79221a2018-01-15 11:07:36 +0100208 char *s = strstr(list, "pci");
Bin Menga62e84d2014-12-31 16:05:11 +0800209
210 /*
211 * check if the string is something like pciVVVV,DDDD.RR
212 * or just pciVVVV,DDDD
213 */
214 if (s && s[7] == ',' &&
215 (s[12] == '.' || s[12] == 0)) {
216 s += 3;
217 *vendor = simple_strtol(s, NULL, 16);
218
219 s += 5;
220 *device = simple_strtol(s, NULL, 16);
221
222 return 0;
223 }
Bin Menga62e84d2014-12-31 16:05:11 +0800224 }
Bin Mengbc6351e2015-08-20 06:40:25 -0700225 list += (len + 1);
Bin Menga62e84d2014-12-31 16:05:11 +0800226 }
227
228 return -ENOENT;
229}
230
Simon Glass194fca92020-01-27 08:49:38 -0700231int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassfcc0a872015-11-29 13:17:54 -0700232 u32 *bar)
Bin Menga62e84d2014-12-31 16:05:11 +0800233{
Bin Menga62e84d2014-12-31 16:05:11 +0800234 int barnum;
Bin Menga62e84d2014-12-31 16:05:11 +0800235
236 /* extract the bar number from fdt_pci_addr */
237 barnum = addr->phys_hi & 0xff;
Mario Sixb79221a2018-01-15 11:07:36 +0100238 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Menga62e84d2014-12-31 16:05:11 +0800239 return -EINVAL;
240
241 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassfcc0a872015-11-29 13:17:54 -0700242 *bar = dm_pci_read_bar32(dev, barnum);
Bin Menga62e84d2014-12-31 16:05:11 +0800243
244 return 0;
245}
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700246
247int fdtdec_get_pci_bus_range(const void *blob, int node,
248 struct fdt_resource *res)
249{
250 const u32 *values;
251 int len;
252
253 values = fdt_getprop(blob, node, "bus-range", &len);
254 if (!values || len < sizeof(*values) * 2)
255 return -EINVAL;
256
257 res->start = fdt32_to_cpu(*values++);
258 res->end = fdt32_to_cpu(*values);
259
260 return 0;
261}
Bin Menga62e84d2014-12-31 16:05:11 +0800262#endif
263
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000264uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100265 uint64_t default_val)
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000266{
Jean-Jacques Hiblotd60ae4c2019-10-22 10:05:22 +0200267 const unaligned_fdt64_t *cell64;
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000268 int length;
269
270 cell64 = fdt_getprop(blob, node, prop_name, &length);
271 if (!cell64 || length < sizeof(*cell64))
272 return default_val;
273
274 return fdt64_to_cpu(*cell64);
275}
276
Simon Glassf88fe2d2012-02-27 10:52:34 +0000277int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000278{
279 const char *cell;
280
Simon Glassf88fe2d2012-02-27 10:52:34 +0000281 /*
282 * It should say "okay", so only allow that. Some fdts use "ok" but
283 * this is a bug. Please fix your device tree source file. See here
284 * for discussion:
285 *
286 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
287 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000288 cell = fdt_getprop(blob, node, "status", NULL);
289 if (cell)
Mario Sixb79221a2018-01-15 11:07:36 +0100290 return strcmp(cell, "okay") == 0;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000291 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000292}
293
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500294enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000295{
296 enum fdt_compat_id id;
297
298 /* Search our drivers */
299 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Sixb79221a2018-01-15 11:07:36 +0100300 if (fdt_node_check_compatible(blob, node,
301 compat_names[id]) == 0)
Simon Glassb5220bc2011-10-24 19:15:32 +0000302 return id;
303 return COMPAT_UNKNOWN;
304}
305
Mario Six2e386622018-01-15 11:07:35 +0100306int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glassb5220bc2011-10-24 19:15:32 +0000307{
308 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
309}
310
Simon Glass3ddecfc2012-04-02 13:18:42 +0000311int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100312 enum fdt_compat_id id, int *depthp)
Simon Glass3ddecfc2012-04-02 13:18:42 +0000313{
314 do {
315 node = fdt_next_node(blob, node, depthp);
316 } while (*depthp > 1);
317
318 /* If this is a direct subnode, and compatible, return it */
319 if (*depthp == 1 && 0 == fdt_node_check_compatible(
320 blob, node, compat_names[id]))
321 return node;
322
323 return -FDT_ERR_NOTFOUND;
324}
325
Mario Six2e386622018-01-15 11:07:35 +0100326int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
327 int *upto)
Simon Glassb5220bc2011-10-24 19:15:32 +0000328{
329#define MAX_STR_LEN 20
330 char str[MAX_STR_LEN + 20];
331 int node, err;
332
333 /* snprintf() is not available */
334 assert(strlen(name) < MAX_STR_LEN);
335 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000336 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000337 if (node < 0)
338 return node;
339 err = fdt_node_check_compatible(blob, node, compat_names[id]);
340 if (err < 0)
341 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000342 if (err)
343 return -FDT_ERR_NOTFOUND;
344 (*upto)++;
345 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000346}
347
Simon Glassa53f4a22012-01-17 08:20:50 +0000348int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100349 enum fdt_compat_id id, int *node_list,
350 int maxcount)
Simon Glassa53f4a22012-01-17 08:20:50 +0000351{
Simon Glassc6782272012-02-03 15:13:53 +0000352 memset(node_list, '\0', sizeof(*node_list) * maxcount);
353
354 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
355}
356
357/* TODO: Can we tighten this code up a little? */
358int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100359 enum fdt_compat_id id, int *node_list,
360 int maxcount)
Simon Glassc6782272012-02-03 15:13:53 +0000361{
Simon Glassa53f4a22012-01-17 08:20:50 +0000362 int name_len = strlen(name);
363 int nodes[maxcount];
364 int num_found = 0;
365 int offset, node;
366 int alias_node;
367 int count;
368 int i, j;
369
370 /* find the alias node if present */
371 alias_node = fdt_path_offset(blob, "/aliases");
372
373 /*
374 * start with nothing, and we can assume that the root node can't
375 * match
376 */
377 memset(nodes, '\0', sizeof(nodes));
378
379 /* First find all the compatible nodes */
380 for (node = count = 0; node >= 0 && count < maxcount;) {
381 node = fdtdec_next_compatible(blob, node, id);
382 if (node >= 0)
383 nodes[count++] = node;
384 }
385 if (node >= 0)
386 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Six2e386622018-01-15 11:07:35 +0100387 __func__, name);
Simon Glassa53f4a22012-01-17 08:20:50 +0000388
389 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000390 for (offset = fdt_first_property_offset(blob, alias_node);
391 offset > 0;
392 offset = fdt_next_property_offset(blob, offset)) {
393 const struct fdt_property *prop;
394 const char *path;
395 int number;
396 int found;
397
398 node = 0;
399 prop = fdt_get_property_by_offset(blob, offset, NULL);
400 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
401 if (prop->len && 0 == strncmp(path, name, name_len))
402 node = fdt_path_offset(blob, prop->data);
403 if (node <= 0)
404 continue;
405
406 /* Get the alias number */
407 number = simple_strtoul(path + name_len, NULL, 10);
408 if (number < 0 || number >= maxcount) {
409 debug("%s: warning: alias '%s' is out of range\n",
Mario Six2e386622018-01-15 11:07:35 +0100410 __func__, path);
Simon Glassa53f4a22012-01-17 08:20:50 +0000411 continue;
412 }
413
414 /* Make sure the node we found is actually in our list! */
415 found = -1;
416 for (j = 0; j < count; j++)
417 if (nodes[j] == node) {
418 found = j;
419 break;
420 }
421
422 if (found == -1) {
423 debug("%s: warning: alias '%s' points to a node "
424 "'%s' that is missing or is not compatible "
425 " with '%s'\n", __func__, path,
426 fdt_get_name(blob, node, NULL),
427 compat_names[id]);
428 continue;
429 }
430
431 /*
432 * Add this node to our list in the right place, and mark
433 * it as done.
434 */
435 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000436 if (node_list[number]) {
437 debug("%s: warning: alias '%s' requires that "
438 "a node be placed in the list in a "
439 "position which is already filled by "
440 "node '%s'\n", __func__, path,
441 fdt_get_name(blob, node, NULL));
442 continue;
443 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000444 node_list[number] = node;
445 if (number >= num_found)
446 num_found = number + 1;
447 }
Simon Glassc6782272012-02-03 15:13:53 +0000448 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000449 }
450
451 /* Add any nodes not mentioned by an alias */
452 for (i = j = 0; i < maxcount; i++) {
453 if (!node_list[i]) {
454 for (; j < maxcount; j++)
455 if (nodes[j] &&
Mario Six2e386622018-01-15 11:07:35 +0100456 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassa53f4a22012-01-17 08:20:50 +0000457 break;
458
459 /* Have we run out of nodes to add? */
460 if (j == maxcount)
461 break;
462
463 assert(!node_list[i]);
464 node_list[i] = nodes[j++];
465 if (i >= num_found)
466 num_found = i + 1;
467 }
468 }
469
470 return num_found;
471}
472
Simon Glass5c33c9f2014-07-23 06:55:09 -0600473int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
474 int *seqp)
475{
476 int base_len = strlen(base);
477 const char *find_name;
478 int find_namelen;
479 int prop_offset;
480 int aliases;
481
482 find_name = fdt_get_name(blob, offset, &find_namelen);
483 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
484
485 aliases = fdt_path_offset(blob, "/aliases");
486 for (prop_offset = fdt_first_property_offset(blob, aliases);
487 prop_offset > 0;
488 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
489 const char *prop;
490 const char *name;
491 const char *slash;
Simon Glassc4af6732015-06-23 15:39:08 -0600492 int len, val;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600493
494 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
495 debug(" - %s, %s\n", name, prop);
496 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
497 strncmp(name, base, base_len))
498 continue;
499
500 slash = strrchr(prop, '/');
501 if (strcmp(slash + 1, find_name))
502 continue;
Aswath Govindrajuc5891322020-12-03 10:55:45 +0530503
504 /*
505 * Adding an extra check to distinguish DT nodes with
506 * same name
507 */
508 if (IS_ENABLED(CONFIG_PHANDLE_CHECK_SEQ)) {
509 if (fdt_get_phandle(blob, offset) !=
510 fdt_get_phandle(blob, fdt_path_offset(blob, prop)))
511 continue;
512 }
513
Simon Glassc4af6732015-06-23 15:39:08 -0600514 val = trailing_strtol(name);
515 if (val != -1) {
516 *seqp = val;
517 debug("Found seq %d\n", *seqp);
518 return 0;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600519 }
520 }
521
522 debug("Not found\n");
523 return -ENOENT;
524}
525
Michal Simek003c9dc2019-01-31 16:30:58 +0100526int fdtdec_get_alias_highest_id(const void *blob, const char *base)
527{
528 int base_len = strlen(base);
529 int prop_offset;
530 int aliases;
531 int max = -1;
532
533 debug("Looking for highest alias id for '%s'\n", base);
534
535 aliases = fdt_path_offset(blob, "/aliases");
536 for (prop_offset = fdt_first_property_offset(blob, aliases);
537 prop_offset > 0;
538 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
539 const char *prop;
540 const char *name;
541 int len, val;
542
543 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
544 debug(" - %s, %s\n", name, prop);
545 if (*prop != '/' || prop[len - 1] ||
546 strncmp(name, base, base_len))
547 continue;
548
549 val = trailing_strtol(name);
550 if (val > max) {
551 debug("Found seq %d\n", val);
552 max = val;
553 }
554 }
555
556 return max;
557}
558
Simon Glass3bc37a52015-10-17 19:41:14 -0600559const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
560{
561 int chosen_node;
562
563 if (!blob)
564 return NULL;
565 chosen_node = fdt_path_offset(blob, "/chosen");
566 return fdt_getprop(blob, chosen_node, name, NULL);
567}
568
Simon Glassaac07d42014-09-04 16:27:24 -0600569int fdtdec_get_chosen_node(const void *blob, const char *name)
570{
571 const char *prop;
Simon Glassaac07d42014-09-04 16:27:24 -0600572
Simon Glass3bc37a52015-10-17 19:41:14 -0600573 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glassaac07d42014-09-04 16:27:24 -0600574 if (!prop)
575 return -FDT_ERR_NOTFOUND;
576 return fdt_path_offset(blob, prop);
577}
578
Simon Glass9a263e52012-03-28 10:08:24 +0000579int fdtdec_check_fdt(void)
580{
581 /*
582 * We must have an FDT, but we cannot panic() yet since the console
583 * is not ready. So for now, just assert(). Boards which need an early
584 * FDT (prior to console ready) will need to make their own
585 * arrangements and do their own checks.
586 */
587 assert(!fdtdec_prepare_fdt());
588 return 0;
589}
590
Simon Glassb5220bc2011-10-24 19:15:32 +0000591/*
592 * This function is a little odd in that it accesses global data. At some
593 * point if the architecture board.c files merge this will make more sense.
594 * Even now, it is common code.
595 */
Simon Glass9a263e52012-03-28 10:08:24 +0000596int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000597{
Simon Glassc309c2d2013-04-20 08:42:46 +0000598 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
599 fdt_check_header(gd->fdt_blob)) {
Simon Glass66312372015-02-27 22:06:32 -0700600#ifdef CONFIG_SPL_BUILD
601 puts("Missing DTB\n");
602#else
Simon Glasse1d23f52021-01-13 20:29:48 -0700603 printf("No valid device tree binary found at %p\n",
604 gd->fdt_blob);
Simon Glasscb5f97f702015-06-23 15:39:09 -0600605# ifdef DEBUG
606 if (gd->fdt_blob) {
607 printf("fdt_blob=%p\n", gd->fdt_blob);
608 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
609 32, 0);
610 }
611# endif
Simon Glass66312372015-02-27 22:06:32 -0700612#endif
Simon Glass9a263e52012-03-28 10:08:24 +0000613 return -1;
614 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000615 return 0;
616}
Simon Glassd17da652012-02-27 10:52:35 +0000617
618int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
619{
620 const u32 *phandle;
621 int lookup;
622
Simon Glass1cb23232012-07-12 05:25:01 +0000623 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000624 phandle = fdt_getprop(blob, node, prop_name, NULL);
625 if (!phandle)
626 return -FDT_ERR_NOTFOUND;
627
628 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
629 return lookup;
630}
631
632/**
633 * Look up a property in a node and check that it has a minimum length.
634 *
635 * @param blob FDT blob
636 * @param node node to examine
637 * @param prop_name name of property to find
638 * @param min_len minimum property length in bytes
639 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
640 found, or -FDT_ERR_BADLAYOUT if not enough data
641 * @return pointer to cell, which is only valid if err == 0
642 */
643static const void *get_prop_check_min_len(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100644 const char *prop_name, int min_len,
645 int *err)
Simon Glassd17da652012-02-27 10:52:35 +0000646{
647 const void *cell;
648 int len;
649
650 debug("%s: %s\n", __func__, prop_name);
651 cell = fdt_getprop(blob, node, prop_name, &len);
652 if (!cell)
653 *err = -FDT_ERR_NOTFOUND;
654 else if (len < min_len)
655 *err = -FDT_ERR_BADLAYOUT;
656 else
657 *err = 0;
658 return cell;
659}
660
661int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100662 u32 *array, int count)
Simon Glassd17da652012-02-27 10:52:35 +0000663{
664 const u32 *cell;
Mario Sixb79221a2018-01-15 11:07:36 +0100665 int err = 0;
Simon Glassd17da652012-02-27 10:52:35 +0000666
667 debug("%s: %s\n", __func__, prop_name);
668 cell = get_prop_check_min_len(blob, node, prop_name,
669 sizeof(u32) * count, &err);
670 if (!err) {
Mario Sixb79221a2018-01-15 11:07:36 +0100671 int i;
672
Simon Glassd17da652012-02-27 10:52:35 +0000673 for (i = 0; i < count; i++)
674 array[i] = fdt32_to_cpu(cell[i]);
675 }
676 return err;
677}
678
Simon Glassa9f04d42014-11-10 18:00:19 -0700679int fdtdec_get_int_array_count(const void *blob, int node,
680 const char *prop_name, u32 *array, int count)
681{
682 const u32 *cell;
683 int len, elems;
684 int i;
685
686 debug("%s: %s\n", __func__, prop_name);
687 cell = fdt_getprop(blob, node, prop_name, &len);
688 if (!cell)
689 return -FDT_ERR_NOTFOUND;
690 elems = len / sizeof(u32);
691 if (count > elems)
692 count = elems;
693 for (i = 0; i < count; i++)
694 array[i] = fdt32_to_cpu(cell[i]);
695
696 return count;
697}
698
Simon Glass96875e72012-04-02 13:18:41 +0000699const u32 *fdtdec_locate_array(const void *blob, int node,
700 const char *prop_name, int count)
701{
702 const u32 *cell;
703 int err;
704
705 cell = get_prop_check_min_len(blob, node, prop_name,
706 sizeof(u32) * count, &err);
707 return err ? NULL : cell;
708}
709
Simon Glassd17da652012-02-27 10:52:35 +0000710int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
711{
712 const s32 *cell;
713 int len;
714
715 debug("%s: %s\n", __func__, prop_name);
716 cell = fdt_getprop(blob, node, prop_name, &len);
717 return cell != NULL;
718}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000719
Simon Glass57068a72015-01-05 20:05:26 -0700720int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
721 const char *list_name,
722 const char *cells_name,
723 int cell_count, int index,
724 struct fdtdec_phandle_args *out_args)
725{
726 const __be32 *list, *list_end;
727 int rc = 0, size, cur_index = 0;
728 uint32_t count = 0;
729 int node = -1;
730 int phandle;
731
732 /* Retrieve the phandle list property */
733 list = fdt_getprop(blob, src_node, list_name, &size);
734 if (!list)
735 return -ENOENT;
736 list_end = list + size / sizeof(*list);
737
738 /* Loop over the phandles until all the requested entry is found */
739 while (list < list_end) {
740 rc = -EINVAL;
741 count = 0;
742
743 /*
744 * If phandle is 0, then it is an empty entry with no
745 * arguments. Skip forward to the next entry.
746 */
747 phandle = be32_to_cpup(list++);
748 if (phandle) {
749 /*
750 * Find the provider node and parse the #*-cells
751 * property to determine the argument length.
752 *
753 * This is not needed if the cell count is hard-coded
754 * (i.e. cells_name not set, but cell_count is set),
755 * except when we're going to return the found node
756 * below.
757 */
758 if (cells_name || cur_index == index) {
759 node = fdt_node_offset_by_phandle(blob,
760 phandle);
Patrick Delaunaycba487c2020-09-25 09:41:15 +0200761 if (node < 0) {
Simon Glass57068a72015-01-05 20:05:26 -0700762 debug("%s: could not find phandle\n",
763 fdt_get_name(blob, src_node,
764 NULL));
765 goto err;
766 }
767 }
768
769 if (cells_name) {
770 count = fdtdec_get_int(blob, node, cells_name,
771 -1);
772 if (count == -1) {
773 debug("%s: could not get %s for %s\n",
774 fdt_get_name(blob, src_node,
775 NULL),
776 cells_name,
777 fdt_get_name(blob, node,
778 NULL));
779 goto err;
780 }
781 } else {
782 count = cell_count;
783 }
784
785 /*
786 * Make sure that the arguments actually fit in the
787 * remaining property data length
788 */
789 if (list + count > list_end) {
790 debug("%s: arguments longer than property\n",
791 fdt_get_name(blob, src_node, NULL));
792 goto err;
793 }
794 }
795
796 /*
797 * All of the error cases above bail out of the loop, so at
798 * this point, the parsing is successful. If the requested
799 * index matches, then fill the out_args structure and return,
800 * or return -ENOENT for an empty entry.
801 */
802 rc = -ENOENT;
803 if (cur_index == index) {
804 if (!phandle)
805 goto err;
806
807 if (out_args) {
808 int i;
809
810 if (count > MAX_PHANDLE_ARGS) {
811 debug("%s: too many arguments %d\n",
812 fdt_get_name(blob, src_node,
813 NULL), count);
814 count = MAX_PHANDLE_ARGS;
815 }
816 out_args->node = node;
817 out_args->args_count = count;
818 for (i = 0; i < count; i++) {
819 out_args->args[i] =
820 be32_to_cpup(list++);
821 }
822 }
823
824 /* Found it! return success */
825 return 0;
826 }
827
828 node = -1;
829 list += count;
830 cur_index++;
831 }
832
833 /*
834 * Result will be one of:
835 * -ENOENT : index is for empty phandle
836 * -EINVAL : parsing error on data
837 * [1..n] : Number of phandle (count mode; when index = -1)
838 */
839 rc = index < 0 ? cur_index : -ENOENT;
840 err:
841 return rc;
842}
843
Anton Staffbed4d892012-04-17 09:01:28 +0000844int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100845 u8 *array, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000846{
847 const u8 *cell;
848 int err;
849
850 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
851 if (!err)
852 memcpy(array, cell, count);
853 return err;
854}
855
856const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100857 const char *prop_name, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000858{
859 const u8 *cell;
860 int err;
861
862 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
863 if (err)
864 return NULL;
865 return cell;
866}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000867
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000868int fdtdec_get_config_int(const void *blob, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100869 int default_val)
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000870{
871 int config_node;
872
873 debug("%s: %s\n", __func__, prop_name);
874 config_node = fdt_path_offset(blob, "/config");
875 if (config_node < 0)
876 return default_val;
877 return fdtdec_get_int(blob, config_node, prop_name, default_val);
878}
Simon Glass332ab0d2012-10-25 16:30:59 +0000879
Gabe Black79289c02012-10-25 16:31:04 +0000880int fdtdec_get_config_bool(const void *blob, const char *prop_name)
881{
882 int config_node;
883 const void *prop;
884
885 debug("%s: %s\n", __func__, prop_name);
886 config_node = fdt_path_offset(blob, "/config");
887 if (config_node < 0)
888 return 0;
889 prop = fdt_get_property(blob, config_node, prop_name, NULL);
890
891 return prop != NULL;
892}
893
Simon Glass332ab0d2012-10-25 16:30:59 +0000894char *fdtdec_get_config_string(const void *blob, const char *prop_name)
895{
896 const char *nodep;
897 int nodeoffset;
898 int len;
899
900 debug("%s: %s\n", __func__, prop_name);
901 nodeoffset = fdt_path_offset(blob, "/config");
902 if (nodeoffset < 0)
903 return NULL;
904
905 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
906 if (!nodep)
907 return NULL;
908
909 return (char *)nodep;
910}
Simon Glassf20c4612012-10-25 16:31:00 +0000911
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700912u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Reding56f42242014-08-26 17:33:53 +0200913{
914 u64 number = 0;
915
916 while (cells--)
917 number = (number << 32) | fdt32_to_cpu(*ptr++);
918
919 return number;
920}
921
922int fdt_get_resource(const void *fdt, int node, const char *property,
923 unsigned int index, struct fdt_resource *res)
924{
925 const fdt32_t *ptr, *end;
926 int na, ns, len, parent;
927 unsigned int i = 0;
928
929 parent = fdt_parent_offset(fdt, node);
930 if (parent < 0)
931 return parent;
932
933 na = fdt_address_cells(fdt, parent);
934 ns = fdt_size_cells(fdt, parent);
935
936 ptr = fdt_getprop(fdt, node, property, &len);
937 if (!ptr)
938 return len;
939
940 end = ptr + len / sizeof(*ptr);
941
942 while (ptr + na + ns <= end) {
943 if (i == index) {
Mario Sixb79221a2018-01-15 11:07:36 +0100944 res->start = fdtdec_get_number(ptr, na);
945 res->end = res->start;
Thierry Reding56f42242014-08-26 17:33:53 +0200946 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
947 return 0;
948 }
949
950 ptr += na + ns;
951 i++;
952 }
953
954 return -FDT_ERR_NOTFOUND;
955}
956
957int fdt_get_named_resource(const void *fdt, int node, const char *property,
958 const char *prop_names, const char *name,
959 struct fdt_resource *res)
960{
961 int index;
962
Simon Glassb02e4042016-10-02 17:59:28 -0600963 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Reding56f42242014-08-26 17:33:53 +0200964 if (index < 0)
965 return index;
966
967 return fdt_get_resource(fdt, node, property, index, res);
968}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200969
Simon Glass12e67112015-04-14 21:03:21 -0600970static int decode_timing_property(const void *blob, int node, const char *name,
971 struct timing_entry *result)
972{
973 int length, ret = 0;
974 const u32 *prop;
975
976 prop = fdt_getprop(blob, node, name, &length);
977 if (!prop) {
978 debug("%s: could not find property %s\n",
979 fdt_get_name(blob, node, NULL), name);
980 return length;
981 }
982
983 if (length == sizeof(u32)) {
984 result->typ = fdtdec_get_int(blob, node, name, 0);
985 result->min = result->typ;
986 result->max = result->typ;
987 } else {
988 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
989 }
990
991 return ret;
992}
993
994int fdtdec_decode_display_timing(const void *blob, int parent, int index,
995 struct display_timing *dt)
996{
997 int i, node, timings_node;
998 u32 val = 0;
999 int ret = 0;
1000
1001 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1002 if (timings_node < 0)
1003 return timings_node;
1004
1005 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1006 node > 0 && i != index;
1007 node = fdt_next_subnode(blob, node))
1008 i++;
1009
1010 if (node < 0)
1011 return node;
1012
1013 memset(dt, 0, sizeof(*dt));
1014
1015 ret |= decode_timing_property(blob, node, "hback-porch",
1016 &dt->hback_porch);
1017 ret |= decode_timing_property(blob, node, "hfront-porch",
1018 &dt->hfront_porch);
1019 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1020 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1021 ret |= decode_timing_property(blob, node, "vback-porch",
1022 &dt->vback_porch);
1023 ret |= decode_timing_property(blob, node, "vfront-porch",
1024 &dt->vfront_porch);
1025 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1026 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1027 ret |= decode_timing_property(blob, node, "clock-frequency",
1028 &dt->pixelclock);
1029
1030 dt->flags = 0;
1031 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1032 if (val != -1) {
1033 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1034 DISPLAY_FLAGS_VSYNC_LOW;
1035 }
1036 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1037 if (val != -1) {
1038 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1039 DISPLAY_FLAGS_HSYNC_LOW;
1040 }
1041 val = fdtdec_get_int(blob, node, "de-active", -1);
1042 if (val != -1) {
1043 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1044 DISPLAY_FLAGS_DE_LOW;
1045 }
1046 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1047 if (val != -1) {
1048 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1049 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1050 }
1051
1052 if (fdtdec_get_bool(blob, node, "interlaced"))
1053 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1054 if (fdtdec_get_bool(blob, node, "doublescan"))
1055 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1056 if (fdtdec_get_bool(blob, node, "doubleclk"))
1057 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1058
Simon Glass04b9dd12016-05-05 07:28:21 -06001059 return ret;
Simon Glass12e67112015-04-14 21:03:21 -06001060}
1061
Michal Simek50c7b722020-07-10 13:16:50 +02001062int fdtdec_setup_mem_size_base(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001063{
Michal Simekc2f09502020-07-10 13:34:44 +02001064 int ret;
1065 ofnode mem;
1066 struct resource res;
Nathan Rossi623f6012016-12-19 00:03:34 +10001067
Michal Simekc2f09502020-07-10 13:34:44 +02001068 mem = ofnode_path("/memory");
1069 if (!ofnode_valid(mem)) {
Nathan Rossi623f6012016-12-19 00:03:34 +10001070 debug("%s: Missing /memory node\n", __func__);
1071 return -EINVAL;
1072 }
1073
Michal Simekc2f09502020-07-10 13:34:44 +02001074 ret = ofnode_read_resource(mem, 0, &res);
Nathan Rossi623f6012016-12-19 00:03:34 +10001075 if (ret != 0) {
1076 debug("%s: Unable to decode first memory bank\n", __func__);
1077 return -EINVAL;
1078 }
1079
1080 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +05301081 gd->ram_base = (unsigned long)res.start;
Simon Glassc69380f2017-05-27 07:38:13 -06001082 debug("%s: Initial DRAM size %llx\n", __func__,
1083 (unsigned long long)gd->ram_size);
Nathan Rossi623f6012016-12-19 00:03:34 +10001084
1085 return 0;
1086}
1087
Michal Simekc2f09502020-07-10 13:34:44 +02001088ofnode get_next_memory_node(ofnode mem)
Jens Wiklander452bc122018-07-13 12:12:11 +02001089{
Jens Wiklander452bc122018-07-13 12:12:11 +02001090 do {
Michal Simekc2f09502020-07-10 13:34:44 +02001091 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
1092 } while (!ofnode_is_available(mem));
Jens Wiklander452bc122018-07-13 12:12:11 +02001093
1094 return mem;
1095}
1096
Michal Simek62897c42020-07-10 13:16:49 +02001097int fdtdec_setup_memory_banksize(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001098{
Michal Simekc2f09502020-07-10 13:34:44 +02001099 int bank, ret, reg = 0;
1100 struct resource res;
1101 ofnode mem = ofnode_null();
Nathan Rossi623f6012016-12-19 00:03:34 +10001102
Michal Simekc2f09502020-07-10 13:34:44 +02001103 mem = get_next_memory_node(mem);
1104 if (!ofnode_valid(mem)) {
Michal Simek658954c2018-10-03 15:53:52 +02001105 debug("%s: Missing /memory node\n", __func__);
1106 return -EINVAL;
1107 }
Nathan Rossi623f6012016-12-19 00:03:34 +10001108
1109 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001110 ret = ofnode_read_resource(mem, reg++, &res);
1111 if (ret < 0) {
Marek Vasut942ee092017-11-27 05:32:42 +01001112 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001113 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001114 if (!ofnode_valid(mem))
Michal Simek658954c2018-10-03 15:53:52 +02001115 break;
1116
Michal Simekc2f09502020-07-10 13:34:44 +02001117 ret = ofnode_read_resource(mem, reg++, &res);
1118 if (ret < 0)
Michal Simek658954c2018-10-03 15:53:52 +02001119 break;
1120 }
Michal Simekc2f09502020-07-10 13:34:44 +02001121
1122 if (ret != 0)
Michal Simek658954c2018-10-03 15:53:52 +02001123 return -EINVAL;
Nathan Rossi623f6012016-12-19 00:03:34 +10001124
1125 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1126 gd->bd->bi_dram[bank].size =
1127 (phys_size_t)(res.end - res.start + 1);
1128
1129 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1130 __func__, bank,
1131 (unsigned long long)gd->bd->bi_dram[bank].start,
1132 (unsigned long long)gd->bd->bi_dram[bank].size);
1133 }
1134
1135 return 0;
1136}
Michal Simek7fce7392020-07-09 14:09:52 +02001137
1138int fdtdec_setup_mem_size_base_lowest(void)
1139{
Michal Simekc2f09502020-07-10 13:34:44 +02001140 int bank, ret, reg = 0;
1141 struct resource res;
Michal Simek7fce7392020-07-09 14:09:52 +02001142 unsigned long base;
1143 phys_size_t size;
Michal Simekc2f09502020-07-10 13:34:44 +02001144 ofnode mem = ofnode_null();
Michal Simek7fce7392020-07-09 14:09:52 +02001145
1146 gd->ram_base = (unsigned long)~0;
1147
Michal Simekc2f09502020-07-10 13:34:44 +02001148 mem = get_next_memory_node(mem);
1149 if (!ofnode_valid(mem)) {
Michal Simek7fce7392020-07-09 14:09:52 +02001150 debug("%s: Missing /memory node\n", __func__);
1151 return -EINVAL;
1152 }
1153
1154 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001155 ret = ofnode_read_resource(mem, reg++, &res);
1156 if (ret < 0) {
Michal Simek7fce7392020-07-09 14:09:52 +02001157 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001158 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001159 if (!ofnode_valid(mem))
Michal Simek7fce7392020-07-09 14:09:52 +02001160 break;
1161
Michal Simekc2f09502020-07-10 13:34:44 +02001162 ret = ofnode_read_resource(mem, reg++, &res);
1163 if (ret < 0)
Michal Simek7fce7392020-07-09 14:09:52 +02001164 break;
1165 }
Michal Simekc2f09502020-07-10 13:34:44 +02001166
Michal Simek7fce7392020-07-09 14:09:52 +02001167 if (ret != 0)
1168 return -EINVAL;
1169
1170 base = (unsigned long)res.start;
1171 size = (phys_size_t)(res.end - res.start + 1);
1172
1173 if (gd->ram_base > base && size) {
1174 gd->ram_base = base;
1175 gd->ram_size = size;
1176 debug("%s: Initial DRAM base %lx size %lx\n",
1177 __func__, base, (unsigned long)size);
1178 }
1179 }
1180
1181 return 0;
1182}
Nathan Rossi623f6012016-12-19 00:03:34 +10001183
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001184#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1185# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1186 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
1187static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1188{
Marek Vasut95f4bbd2019-03-08 16:06:55 +01001189 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut1fd30352019-03-13 21:11:22 +01001190 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001191 ulong sz_in = sz_src;
1192 void *dst;
1193 int rc;
1194
1195 if (CONFIG_IS_ENABLED(GZIP))
Marek Vasut1fd30352019-03-13 21:11:22 +01001196 if (gzip_parse_header(src, sz_in) >= 0)
1197 gzip = 1;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001198 if (CONFIG_IS_ENABLED(LZO))
Marek Vasut1fd30352019-03-13 21:11:22 +01001199 if (!gzip && lzop_is_valid_header(src))
1200 lzo = 1;
1201
1202 if (!gzip && !lzo)
1203 return -EBADMSG;
1204
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001205
1206 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1207 dst = malloc(sz_out);
1208 if (!dst) {
1209 puts("uncompress_blob: Unable to allocate memory\n");
1210 return -ENOMEM;
1211 }
1212 } else {
1213# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
1214 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
1215# else
1216 return -ENOTSUPP;
1217# endif
1218 }
1219
Marek Vasut1fd30352019-03-13 21:11:22 +01001220 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001221 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut1fd30352019-03-13 21:11:22 +01001222 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001223 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut1fd30352019-03-13 21:11:22 +01001224 else
1225 hang();
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001226
1227 if (rc < 0) {
1228 /* not a valid compressed blob */
1229 puts("uncompress_blob: Unable to uncompress\n");
1230 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1231 free(dst);
1232 return -EBADMSG;
1233 }
1234 *dstp = dst;
1235 return 0;
1236}
1237# else
1238static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1239{
Marek Vasut410d9b62018-10-18 20:37:05 +02001240 *dstp = (void *)src;
1241 return 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001242}
1243# endif
1244#endif
1245
Rob Clark3b595da2018-01-10 11:34:37 +01001246#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1247/*
1248 * For CONFIG_OF_SEPARATE, the board may optionally implement this to
1249 * provide and/or fixup the fdt.
1250 */
1251__weak void *board_fdt_blob_setup(void)
1252{
1253 void *fdt_blob = NULL;
1254#ifdef CONFIG_SPL_BUILD
1255 /* FDT is at end of BSS unless it is in a different memory region */
Simon Glass0a2aaab2021-01-13 20:29:49 -07001256 if (CONFIG_IS_ENABLED(SEPARATE_BSS))
Rob Clark3b595da2018-01-10 11:34:37 +01001257 fdt_blob = (ulong *)&_image_binary_end;
1258 else
1259 fdt_blob = (ulong *)&__bss_end;
1260#else
1261 /* FDT is at end of image */
1262 fdt_blob = (ulong *)&_end;
1263#endif
1264 return fdt_blob;
1265}
1266#endif
1267
Thierry Redingebf30e82019-04-15 11:32:13 +02001268int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1269{
1270 const char *path;
1271 int offset, err;
1272
1273 if (!is_valid_ethaddr(mac))
1274 return -EINVAL;
1275
1276 path = fdt_get_alias(fdt, "ethernet");
1277 if (!path)
1278 return 0;
1279
1280 debug("ethernet alias found: %s\n", path);
1281
1282 offset = fdt_path_offset(fdt, path);
1283 if (offset < 0) {
1284 debug("ethernet alias points to absent node %s\n", path);
1285 return -ENOENT;
1286 }
1287
1288 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1289 if (err < 0)
1290 return err;
1291
1292 debug("MAC address: %pM\n", mac);
1293
1294 return 0;
1295}
1296
Thierry Redingc9222a02019-03-21 19:10:02 +01001297static int fdtdec_init_reserved_memory(void *blob)
1298{
1299 int na, ns, node, err;
1300 fdt32_t value;
1301
1302 /* inherit #address-cells and #size-cells from the root node */
1303 na = fdt_address_cells(blob, 0);
1304 ns = fdt_size_cells(blob, 0);
1305
1306 node = fdt_add_subnode(blob, 0, "reserved-memory");
1307 if (node < 0)
1308 return node;
1309
1310 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1311 if (err < 0)
1312 return err;
1313
1314 value = cpu_to_fdt32(ns);
1315
1316 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1317 if (err < 0)
1318 return err;
1319
1320 value = cpu_to_fdt32(na);
1321
1322 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1323 if (err < 0)
1324 return err;
1325
1326 return node;
1327}
1328
1329int fdtdec_add_reserved_memory(void *blob, const char *basename,
1330 const struct fdt_memory *carveout,
Etienne Carriereccaa5742020-09-10 10:49:59 +02001331 uint32_t *phandlep, bool no_map)
Thierry Redingc9222a02019-03-21 19:10:02 +01001332{
1333 fdt32_t cells[4] = {}, *ptr = cells;
1334 uint32_t upper, lower, phandle;
1335 int parent, node, na, ns, err;
Thierry Reding3bf2f152019-04-15 10:08:21 +02001336 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001337 char name[64];
1338
1339 /* create an empty /reserved-memory node if one doesn't exist */
1340 parent = fdt_path_offset(blob, "/reserved-memory");
1341 if (parent < 0) {
1342 parent = fdtdec_init_reserved_memory(blob);
1343 if (parent < 0)
1344 return parent;
1345 }
1346
1347 /* only 1 or 2 #address-cells and #size-cells are supported */
1348 na = fdt_address_cells(blob, parent);
1349 if (na < 1 || na > 2)
1350 return -FDT_ERR_BADNCELLS;
1351
1352 ns = fdt_size_cells(blob, parent);
1353 if (ns < 1 || ns > 2)
1354 return -FDT_ERR_BADNCELLS;
1355
1356 /* find a matching node and return the phandle to that */
1357 fdt_for_each_subnode(node, blob, parent) {
1358 const char *name = fdt_get_name(blob, node, NULL);
Bin Menga9ad1132020-05-19 23:38:32 -07001359 fdt_addr_t addr;
1360 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001361
Bin Mengf6704c72020-05-19 23:38:33 -07001362 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1363 &size, false);
Thierry Redingc9222a02019-03-21 19:10:02 +01001364 if (addr == FDT_ADDR_T_NONE) {
1365 debug("failed to read address/size for %s\n", name);
1366 continue;
1367 }
1368
Atish Patraf6147532020-04-21 11:15:00 -07001369 if (addr == carveout->start && (addr + size - 1) ==
1370 carveout->end) {
Heiko Stuebner086336a2019-10-23 16:46:38 +02001371 if (phandlep)
1372 *phandlep = fdt_get_phandle(blob, node);
Thierry Redingc9222a02019-03-21 19:10:02 +01001373 return 0;
1374 }
1375 }
1376
1377 /*
1378 * Unpack the start address and generate the name of the new node
1379 * base on the basename and the unit-address.
1380 */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001381 upper = upper_32_bits(carveout->start);
1382 lower = lower_32_bits(carveout->start);
Thierry Redingc9222a02019-03-21 19:10:02 +01001383
1384 if (na > 1 && upper > 0)
1385 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1386 lower);
1387 else {
1388 if (upper > 0) {
1389 debug("address %08x:%08x exceeds addressable space\n",
1390 upper, lower);
1391 return -FDT_ERR_BADVALUE;
1392 }
1393
1394 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1395 }
1396
1397 node = fdt_add_subnode(blob, parent, name);
1398 if (node < 0)
1399 return node;
1400
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001401 if (phandlep) {
1402 err = fdt_generate_phandle(blob, &phandle);
1403 if (err < 0)
1404 return err;
Thierry Redingc9222a02019-03-21 19:10:02 +01001405
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001406 err = fdtdec_set_phandle(blob, node, phandle);
1407 if (err < 0)
1408 return err;
1409 }
Thierry Redingc9222a02019-03-21 19:10:02 +01001410
1411 /* store one or two address cells */
1412 if (na > 1)
1413 *ptr++ = cpu_to_fdt32(upper);
1414
1415 *ptr++ = cpu_to_fdt32(lower);
1416
1417 /* store one or two size cells */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001418 size = carveout->end - carveout->start + 1;
1419 upper = upper_32_bits(size);
1420 lower = lower_32_bits(size);
Thierry Redingc9222a02019-03-21 19:10:02 +01001421
1422 if (ns > 1)
1423 *ptr++ = cpu_to_fdt32(upper);
1424
1425 *ptr++ = cpu_to_fdt32(lower);
1426
1427 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1428 if (err < 0)
1429 return err;
1430
Etienne Carriereccaa5742020-09-10 10:49:59 +02001431 if (no_map) {
1432 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1433 if (err < 0)
1434 return err;
1435 }
1436
Thierry Redingc9222a02019-03-21 19:10:02 +01001437 /* return the phandle for the new node for the caller to use */
1438 if (phandlep)
1439 *phandlep = phandle;
1440
1441 return 0;
1442}
1443
Thierry Reding16523ac2019-03-21 19:10:03 +01001444int fdtdec_get_carveout(const void *blob, const char *node, const char *name,
1445 unsigned int index, struct fdt_memory *carveout)
1446{
1447 const fdt32_t *prop;
1448 uint32_t phandle;
1449 int offset, len;
1450 fdt_size_t size;
1451
1452 offset = fdt_path_offset(blob, node);
1453 if (offset < 0)
1454 return offset;
1455
1456 prop = fdt_getprop(blob, offset, name, &len);
1457 if (!prop) {
1458 debug("failed to get %s for %s\n", name, node);
1459 return -FDT_ERR_NOTFOUND;
1460 }
1461
1462 if ((len % sizeof(phandle)) != 0) {
1463 debug("invalid phandle property\n");
1464 return -FDT_ERR_BADPHANDLE;
1465 }
1466
1467 if (len < (sizeof(phandle) * (index + 1))) {
1468 debug("invalid phandle index\n");
1469 return -FDT_ERR_BADPHANDLE;
1470 }
1471
1472 phandle = fdt32_to_cpu(prop[index]);
1473
1474 offset = fdt_node_offset_by_phandle(blob, phandle);
1475 if (offset < 0) {
1476 debug("failed to find node for phandle %u\n", phandle);
1477 return offset;
1478 }
1479
1480 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1481 "reg", 0, &size,
1482 true);
1483 if (carveout->start == FDT_ADDR_T_NONE) {
1484 debug("failed to read address/size from \"reg\" property\n");
1485 return -FDT_ERR_NOTFOUND;
1486 }
1487
1488 carveout->end = carveout->start + size - 1;
1489
1490 return 0;
1491}
1492
1493int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
1494 unsigned int index, const char *name,
1495 const struct fdt_memory *carveout)
1496{
1497 uint32_t phandle;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001498 int err, offset, len;
Thierry Reding16523ac2019-03-21 19:10:03 +01001499 fdt32_t value;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001500 void *prop;
Thierry Reding16523ac2019-03-21 19:10:03 +01001501
Etienne Carriereccaa5742020-09-10 10:49:59 +02001502 err = fdtdec_add_reserved_memory(blob, name, carveout, &phandle, false);
Thierry Reding16523ac2019-03-21 19:10:03 +01001503 if (err < 0) {
1504 debug("failed to add reserved memory: %d\n", err);
1505 return err;
1506 }
1507
1508 offset = fdt_path_offset(blob, node);
1509 if (offset < 0) {
1510 debug("failed to find offset for node %s: %d\n", node, offset);
1511 return offset;
1512 }
1513
1514 value = cpu_to_fdt32(phandle);
1515
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001516 if (!fdt_getprop(blob, offset, prop_name, &len)) {
1517 if (len == -FDT_ERR_NOTFOUND)
1518 len = 0;
1519 else
1520 return len;
1521 }
1522
1523 if ((index + 1) * sizeof(value) > len) {
1524 err = fdt_setprop_placeholder(blob, offset, prop_name,
1525 (index + 1) * sizeof(value),
1526 &prop);
1527 if (err < 0) {
1528 debug("failed to resize reserved memory property: %s\n",
1529 fdt_strerror(err));
1530 return err;
1531 }
1532 }
1533
1534 err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1535 strlen(prop_name),
1536 index * sizeof(value),
1537 &value, sizeof(value));
Thierry Reding16523ac2019-03-21 19:10:03 +01001538 if (err < 0) {
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001539 debug("failed to update %s property for node %s: %s\n",
1540 prop_name, node, fdt_strerror(err));
Thierry Reding16523ac2019-03-21 19:10:03 +01001541 return err;
1542 }
1543
1544 return 0;
1545}
1546
Marek Vasut0e2afc82020-04-11 21:18:59 +02001547__weak int fdtdec_board_setup(const void *fdt_blob)
1548{
1549 return 0;
1550}
1551
Simon Glass08793612015-02-27 22:06:35 -07001552int fdtdec_setup(void)
Simon Glassb45122f2015-02-27 22:06:34 -07001553{
Marek Vasut0e2afc82020-04-11 21:18:59 +02001554 int ret;
Masahiro Yamada0f925822015-08-12 07:31:55 +09001555#if CONFIG_IS_ENABLED(OF_CONTROL)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001556# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1557 void *fdt_blob;
1558# endif
Simon Glassb45122f2015-02-27 22:06:34 -07001559# ifdef CONFIG_OF_EMBED
1560 /* Get a pointer to the FDT */
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +00001561# ifdef CONFIG_SPL_BUILD
1562 gd->fdt_blob = __dtb_dt_spl_begin;
1563# else
Simon Glassb45122f2015-02-27 22:06:34 -07001564 gd->fdt_blob = __dtb_dt_begin;
Goldschmidt Simon9bd76b82017-11-21 12:29:56 +00001565# endif
Rob Clark3b595da2018-01-10 11:34:37 +01001566# elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
Alex Deymo82f766d2017-04-02 01:25:20 -07001567 /* Allow the board to override the fdt address. */
1568 gd->fdt_blob = board_fdt_blob_setup();
Simon Glassb45122f2015-02-27 22:06:34 -07001569# elif defined(CONFIG_OF_HOSTFILE)
1570 if (sandbox_read_fdt_from_file()) {
1571 puts("Failed to read control FDT\n");
1572 return -1;
1573 }
Lukas Auerc4f603f2019-08-21 21:14:40 +02001574# elif defined(CONFIG_OF_PRIOR_STAGE)
Bin Mengd17e9d22021-01-31 20:36:03 +08001575 gd->fdt_blob = (void *)(uintptr_t)prior_stage_fdt_address;
Simon Glassb45122f2015-02-27 22:06:34 -07001576# endif
1577# ifndef CONFIG_SPL_BUILD
1578 /* Allow the early environment to override the fdt address */
Heinrich Schuchardtf980c992018-11-18 17:58:50 +01001579 gd->fdt_blob = map_sysmem
1580 (env_get_ulong("fdtcontroladdr", 16,
1581 (unsigned long)map_to_sysmem(gd->fdt_blob)), 0);
Simon Glassb45122f2015-02-27 22:06:34 -07001582# endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001583
1584# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1585 /*
1586 * Try and uncompress the blob.
1587 * Unfortunately there is no way to know how big the input blob really
1588 * is. So let us set the maximum input size arbitrarily high. 16MB
1589 * ought to be more than enough for packed DTBs.
1590 */
1591 if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0)
1592 gd->fdt_blob = fdt_blob;
1593
1594 /*
1595 * Check if blob is a FIT images containings DTBs.
1596 * If so, pick the most relevant
1597 */
1598 fdt_blob = locate_dtb_in_fit(gd->fdt_blob);
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001599 if (fdt_blob) {
1600 gd->multi_dtb_fit = gd->fdt_blob;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001601 gd->fdt_blob = fdt_blob;
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001602 }
1603
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001604# endif
Simon Glassb45122f2015-02-27 22:06:34 -07001605#endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001606
Marek Vasut0e2afc82020-04-11 21:18:59 +02001607 ret = fdtdec_prepare_fdt();
1608 if (!ret)
1609 ret = fdtdec_board_setup(gd->fdt_blob);
1610 return ret;
Simon Glassb45122f2015-02-27 22:06:34 -07001611}
1612
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001613#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1614int fdtdec_resetup(int *rescan)
1615{
1616 void *fdt_blob;
1617
1618 /*
1619 * If the current DTB is part of a compressed FIT image,
1620 * try to locate the best match from the uncompressed
1621 * FIT image stillpresent there. Save the time and space
1622 * required to uncompress it again.
1623 */
1624 if (gd->multi_dtb_fit) {
1625 fdt_blob = locate_dtb_in_fit(gd->multi_dtb_fit);
1626
1627 if (fdt_blob == gd->fdt_blob) {
1628 /*
1629 * The best match did not change. no need to tear down
1630 * the DM and rescan the fdt.
1631 */
1632 *rescan = 0;
1633 return 0;
1634 }
1635
1636 *rescan = 1;
1637 gd->fdt_blob = fdt_blob;
1638 return fdtdec_prepare_fdt();
1639 }
1640
1641 /*
1642 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1643 * not a FIT image containings DTB, but a single DTB. There is no need
1644 * to teard down DM and rescan the DT in this case.
1645 */
1646 *rescan = 0;
1647 return 0;
1648}
1649#endif
1650
Michael Pratt90c08fa2018-06-11 13:07:09 -06001651int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001652 phys_addr_t *basep, phys_size_t *sizep,
1653 struct bd_info *bd)
Michael Pratt90c08fa2018-06-11 13:07:09 -06001654{
1655 int addr_cells, size_cells;
1656 const u32 *cell, *end;
1657 u64 total_size, size, addr;
1658 int node, child;
1659 bool auto_size;
1660 int bank;
1661 int len;
1662
1663 debug("%s: board_id=%d\n", __func__, board_id);
1664 if (!area)
1665 area = "/memory";
1666 node = fdt_path_offset(blob, area);
1667 if (node < 0) {
1668 debug("No %s node found\n", area);
1669 return -ENOENT;
1670 }
1671
1672 cell = fdt_getprop(blob, node, "reg", &len);
1673 if (!cell) {
1674 debug("No reg property found\n");
1675 return -ENOENT;
1676 }
1677
1678 addr_cells = fdt_address_cells(blob, node);
1679 size_cells = fdt_size_cells(blob, node);
1680
1681 /* Check the board id and mask */
1682 for (child = fdt_first_subnode(blob, node);
1683 child >= 0;
1684 child = fdt_next_subnode(blob, child)) {
1685 int match_mask, match_value;
1686
1687 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1688 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1689
1690 if (match_value >= 0 &&
1691 ((board_id & match_mask) == match_value)) {
1692 /* Found matching mask */
1693 debug("Found matching mask %d\n", match_mask);
1694 node = child;
1695 cell = fdt_getprop(blob, node, "reg", &len);
1696 if (!cell) {
1697 debug("No memory-banks property found\n");
1698 return -EINVAL;
1699 }
1700 break;
1701 }
1702 }
1703 /* Note: if no matching subnode was found we use the parent node */
1704
1705 if (bd) {
1706 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1707 CONFIG_NR_DRAM_BANKS);
1708 }
1709
1710 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1711
1712 total_size = 0;
1713 end = cell + len / 4 - addr_cells - size_cells;
1714 debug("cell at %p, end %p\n", cell, end);
1715 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1716 if (cell > end)
1717 break;
1718 addr = 0;
1719 if (addr_cells == 2)
1720 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1721 addr += fdt32_to_cpu(*cell++);
1722 if (bd)
1723 bd->bi_dram[bank].start = addr;
1724 if (basep && !bank)
1725 *basep = (phys_addr_t)addr;
1726
1727 size = 0;
1728 if (size_cells == 2)
1729 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1730 size += fdt32_to_cpu(*cell++);
1731
1732 if (auto_size) {
1733 u64 new_size;
1734
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001735 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001736 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1737 if (new_size == size) {
1738 debug("OK\n");
1739 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001740 debug("sized to %llx\n", new_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001741 size = new_size;
1742 }
1743 }
1744
1745 if (bd)
1746 bd->bi_dram[bank].size = size;
1747 total_size += size;
1748 }
1749
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001750 debug("Memory size %llu\n", total_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001751 if (sizep)
1752 *sizep = (phys_size_t)total_size;
1753
1754 return 0;
1755}
Michael Pratt90c08fa2018-06-11 13:07:09 -06001756
Simon Glassb45122f2015-02-27 22:06:34 -07001757#endif /* !USE_HOSTCC */