blob: ffa78f97ca0ad93ea7f0a86c376a163f61a6560b [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"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000050 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053051 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000052 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010053 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090054 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrong51e4e3e2019-02-10 10:16:21 +000055 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053056 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070057 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Mengc89ada02015-02-05 23:42:26 +080058 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasut6ab00db2015-07-25 19:33:56 +020059 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut129adf52015-07-25 10:48:14 +020060 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutef4b01b2015-12-05 19:28:44 +010061 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass39ea0ee2016-06-19 17:33:14 -060062 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
63 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
64 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Boris Brezillon4ccae812016-06-15 21:09:23 +020065 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
Ley Foon Tane11b5e82017-04-05 17:32:47 +080066 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
67 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
68 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
69 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
70 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
71 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
72 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
73 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheeeb57c0b2017-09-25 16:40:03 +080074 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
75 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasut19c8fc72018-05-12 11:56:10 +020076 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glassb5220bc2011-10-24 19:15:32 +000077};
78
Simon Glassff66e7b2021-12-16 20:59:34 -070079static const char *const fdt_src_name[] = {
80 [FDTSRC_SEPARATE] = "separate",
81 [FDTSRC_FIT] = "fit",
82 [FDTSRC_BOARD] = "board",
83 [FDTSRC_EMBED] = "embed",
84 [FDTSRC_ENV] = "env",
85};
86
87const char *fdtdec_get_srcname(void)
88{
89 return fdt_src_name[gd->fdt_src];
90}
91
Simon Glassa53f4a22012-01-17 08:20:50 +000092const char *fdtdec_get_compatible(enum fdt_compat_id id)
93{
94 /* We allow reading of the 'unknown' ID for testing purposes */
95 assert(id >= 0 && id < COMPAT_COUNT);
96 return compat_names[id];
97}
98
Stephen Warren02464e32015-08-06 15:31:02 -060099fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100100 const char *prop_name, int index, int na,
101 int ns, fdt_size_t *sizep,
102 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600103{
104 const fdt32_t *prop, *prop_end;
105 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
106 int len;
107 fdt_addr_t addr;
108
109 debug("%s: %s: ", __func__, prop_name);
110
Stephen Warren02464e32015-08-06 15:31:02 -0600111 prop = fdt_getprop(blob, node, prop_name, &len);
112 if (!prop) {
113 debug("(not found)\n");
114 return FDT_ADDR_T_NONE;
115 }
116 prop_end = prop + (len / sizeof(*prop));
117
118 prop_addr = prop + (index * (na + ns));
119 prop_size = prop_addr + na;
120 prop_after_size = prop_size + ns;
121 if (prop_after_size > prop_end) {
122 debug("(not enough data: expected >= %d cells, got %d cells)\n",
123 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
124 return FDT_ADDR_T_NONE;
125 }
126
Vignesh R5efa1bf2017-03-20 10:04:38 +0530127#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren6e06acb2016-08-05 09:47:51 -0600128 if (translate)
129 addr = fdt_translate_address(blob, node, prop_addr);
130 else
131#endif
132 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren02464e32015-08-06 15:31:02 -0600133
134 if (sizep) {
135 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glassfd30d2c2016-02-29 15:25:37 -0700136 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
137 (unsigned long long)*sizep);
Stephen Warren02464e32015-08-06 15:31:02 -0600138 } else {
Simon Glassfd30d2c2016-02-29 15:25:37 -0700139 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren02464e32015-08-06 15:31:02 -0600140 }
141
142 return addr;
143}
144
145fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Six2e386622018-01-15 11:07:35 +0100146 int node, const char *prop_name,
147 int index, fdt_size_t *sizep,
148 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600149{
150 int na, ns;
151
152 debug("%s: ", __func__);
153
154 na = fdt_address_cells(blob, parent);
155 if (na < 1) {
156 debug("(bad #address-cells)\n");
157 return FDT_ADDR_T_NONE;
158 }
159
160 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczakff0a6352015-09-30 13:14:50 +0200161 if (ns < 0) {
Stephen Warren02464e32015-08-06 15:31:02 -0600162 debug("(bad #size-cells)\n");
163 return FDT_ADDR_T_NONE;
164 }
165
166 debug("na=%d, ns=%d, ", na, ns);
167
168 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600169 ns, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600170}
171
172fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100173 const char *prop_name, int index,
174 fdt_size_t *sizep,
175 bool translate)
Stephen Warren02464e32015-08-06 15:31:02 -0600176{
177 int parent;
178
179 debug("%s: ", __func__);
180
181 parent = fdt_parent_offset(blob, node);
182 if (parent < 0) {
183 debug("(no parent found)\n");
184 return FDT_ADDR_T_NONE;
185 }
186
187 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren6e06acb2016-08-05 09:47:51 -0600188 index, sizep, translate);
Stephen Warren02464e32015-08-06 15:31:02 -0600189}
190
Simon Glass4397a2a2013-03-19 04:58:51 +0000191fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100192 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +0000193{
Stephen Warrend93b9a02015-09-25 10:11:41 -0600194 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
195
Stephen Warren02464e32015-08-06 15:31:02 -0600196 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
197 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren6e06acb2016-08-05 09:47:51 -0600198 ns, sizep, false);
Simon Glassb5220bc2011-10-24 19:15:32 +0000199}
200
Mario Six2e386622018-01-15 11:07:35 +0100201fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glass4397a2a2013-03-19 04:58:51 +0000202{
203 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
204}
205
Bin Menga62e84d2014-12-31 16:05:11 +0800206int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
207{
208 const char *list, *end;
209 int len;
210
211 list = fdt_getprop(blob, node, "compatible", &len);
212 if (!list)
213 return -ENOENT;
214
215 end = list + len;
216 while (list < end) {
Bin Menga62e84d2014-12-31 16:05:11 +0800217 len = strlen(list);
218 if (len >= strlen("pciVVVV,DDDD")) {
Mario Sixb79221a2018-01-15 11:07:36 +0100219 char *s = strstr(list, "pci");
Bin Menga62e84d2014-12-31 16:05:11 +0800220
221 /*
222 * check if the string is something like pciVVVV,DDDD.RR
223 * or just pciVVVV,DDDD
224 */
225 if (s && s[7] == ',' &&
226 (s[12] == '.' || s[12] == 0)) {
227 s += 3;
228 *vendor = simple_strtol(s, NULL, 16);
229
230 s += 5;
231 *device = simple_strtol(s, NULL, 16);
232
233 return 0;
234 }
Bin Menga62e84d2014-12-31 16:05:11 +0800235 }
Bin Mengbc6351e2015-08-20 06:40:25 -0700236 list += (len + 1);
Bin Menga62e84d2014-12-31 16:05:11 +0800237 }
238
239 return -ENOENT;
240}
241
Simon Glass194fca92020-01-27 08:49:38 -0700242int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassfcc0a872015-11-29 13:17:54 -0700243 u32 *bar)
Bin Menga62e84d2014-12-31 16:05:11 +0800244{
Bin Menga62e84d2014-12-31 16:05:11 +0800245 int barnum;
Bin Menga62e84d2014-12-31 16:05:11 +0800246
247 /* extract the bar number from fdt_pci_addr */
248 barnum = addr->phys_hi & 0xff;
Mario Sixb79221a2018-01-15 11:07:36 +0100249 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Menga62e84d2014-12-31 16:05:11 +0800250 return -EINVAL;
251
252 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassb717f2f2021-08-01 18:54:18 -0600253
Simon Glassfcc0a872015-11-29 13:17:54 -0700254 *bar = dm_pci_read_bar32(dev, barnum);
Bin Menga62e84d2014-12-31 16:05:11 +0800255
256 return 0;
257}
Suneel Garapati1db7ee42019-10-19 15:19:35 -0700258
259int fdtdec_get_pci_bus_range(const void *blob, int node,
260 struct fdt_resource *res)
261{
262 const u32 *values;
263 int len;
264
265 values = fdt_getprop(blob, node, "bus-range", &len);
266 if (!values || len < sizeof(*values) * 2)
267 return -EINVAL;
268
269 res->start = fdt32_to_cpu(*values++);
270 res->end = fdt32_to_cpu(*values);
271
272 return 0;
273}
Bin Menga62e84d2014-12-31 16:05:11 +0800274
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000275uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100276 uint64_t default_val)
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000277{
Jean-Jacques Hiblotd60ae4c2019-10-22 10:05:22 +0200278 const unaligned_fdt64_t *cell64;
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000279 int length;
280
281 cell64 = fdt_getprop(blob, node, prop_name, &length);
282 if (!cell64 || length < sizeof(*cell64))
283 return default_val;
284
285 return fdt64_to_cpu(*cell64);
286}
287
Simon Glassf88fe2d2012-02-27 10:52:34 +0000288int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000289{
290 const char *cell;
291
Simon Glassf88fe2d2012-02-27 10:52:34 +0000292 /*
293 * It should say "okay", so only allow that. Some fdts use "ok" but
294 * this is a bug. Please fix your device tree source file. See here
295 * for discussion:
296 *
297 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
298 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000299 cell = fdt_getprop(blob, node, "status", NULL);
300 if (cell)
Mario Sixb79221a2018-01-15 11:07:36 +0100301 return strcmp(cell, "okay") == 0;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000302 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000303}
304
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500305enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000306{
307 enum fdt_compat_id id;
308
309 /* Search our drivers */
310 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Sixb79221a2018-01-15 11:07:36 +0100311 if (fdt_node_check_compatible(blob, node,
312 compat_names[id]) == 0)
Simon Glassb5220bc2011-10-24 19:15:32 +0000313 return id;
314 return COMPAT_UNKNOWN;
315}
316
Mario Six2e386622018-01-15 11:07:35 +0100317int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glassb5220bc2011-10-24 19:15:32 +0000318{
319 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
320}
321
Simon Glass3ddecfc2012-04-02 13:18:42 +0000322int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100323 enum fdt_compat_id id, int *depthp)
Simon Glass3ddecfc2012-04-02 13:18:42 +0000324{
325 do {
326 node = fdt_next_node(blob, node, depthp);
327 } while (*depthp > 1);
328
329 /* If this is a direct subnode, and compatible, return it */
330 if (*depthp == 1 && 0 == fdt_node_check_compatible(
331 blob, node, compat_names[id]))
332 return node;
333
334 return -FDT_ERR_NOTFOUND;
335}
336
Mario Six2e386622018-01-15 11:07:35 +0100337int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
338 int *upto)
Simon Glassb5220bc2011-10-24 19:15:32 +0000339{
340#define MAX_STR_LEN 20
341 char str[MAX_STR_LEN + 20];
342 int node, err;
343
344 /* snprintf() is not available */
345 assert(strlen(name) < MAX_STR_LEN);
346 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000347 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000348 if (node < 0)
349 return node;
350 err = fdt_node_check_compatible(blob, node, compat_names[id]);
351 if (err < 0)
352 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000353 if (err)
354 return -FDT_ERR_NOTFOUND;
355 (*upto)++;
356 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000357}
358
Simon Glassa53f4a22012-01-17 08:20:50 +0000359int fdtdec_find_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 Glassa53f4a22012-01-17 08:20:50 +0000362{
Simon Glassc6782272012-02-03 15:13:53 +0000363 memset(node_list, '\0', sizeof(*node_list) * maxcount);
364
365 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
366}
367
368/* TODO: Can we tighten this code up a little? */
369int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Six2e386622018-01-15 11:07:35 +0100370 enum fdt_compat_id id, int *node_list,
371 int maxcount)
Simon Glassc6782272012-02-03 15:13:53 +0000372{
Simon Glassa53f4a22012-01-17 08:20:50 +0000373 int name_len = strlen(name);
374 int nodes[maxcount];
375 int num_found = 0;
376 int offset, node;
377 int alias_node;
378 int count;
379 int i, j;
380
381 /* find the alias node if present */
382 alias_node = fdt_path_offset(blob, "/aliases");
383
384 /*
385 * start with nothing, and we can assume that the root node can't
386 * match
387 */
388 memset(nodes, '\0', sizeof(nodes));
389
390 /* First find all the compatible nodes */
391 for (node = count = 0; node >= 0 && count < maxcount;) {
392 node = fdtdec_next_compatible(blob, node, id);
393 if (node >= 0)
394 nodes[count++] = node;
395 }
396 if (node >= 0)
397 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Six2e386622018-01-15 11:07:35 +0100398 __func__, name);
Simon Glassa53f4a22012-01-17 08:20:50 +0000399
400 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000401 for (offset = fdt_first_property_offset(blob, alias_node);
402 offset > 0;
403 offset = fdt_next_property_offset(blob, offset)) {
404 const struct fdt_property *prop;
405 const char *path;
406 int number;
407 int found;
408
409 node = 0;
410 prop = fdt_get_property_by_offset(blob, offset, NULL);
411 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
412 if (prop->len && 0 == strncmp(path, name, name_len))
413 node = fdt_path_offset(blob, prop->data);
414 if (node <= 0)
415 continue;
416
417 /* Get the alias number */
Simon Glass0b1284e2021-07-24 09:03:30 -0600418 number = dectoul(path + name_len, NULL);
Simon Glassa53f4a22012-01-17 08:20:50 +0000419 if (number < 0 || number >= maxcount) {
420 debug("%s: warning: alias '%s' is out of range\n",
Mario Six2e386622018-01-15 11:07:35 +0100421 __func__, path);
Simon Glassa53f4a22012-01-17 08:20:50 +0000422 continue;
423 }
424
425 /* Make sure the node we found is actually in our list! */
426 found = -1;
427 for (j = 0; j < count; j++)
428 if (nodes[j] == node) {
429 found = j;
430 break;
431 }
432
433 if (found == -1) {
434 debug("%s: warning: alias '%s' points to a node "
435 "'%s' that is missing or is not compatible "
436 " with '%s'\n", __func__, path,
437 fdt_get_name(blob, node, NULL),
438 compat_names[id]);
439 continue;
440 }
441
442 /*
443 * Add this node to our list in the right place, and mark
444 * it as done.
445 */
446 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000447 if (node_list[number]) {
448 debug("%s: warning: alias '%s' requires that "
449 "a node be placed in the list in a "
450 "position which is already filled by "
451 "node '%s'\n", __func__, path,
452 fdt_get_name(blob, node, NULL));
453 continue;
454 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000455 node_list[number] = node;
456 if (number >= num_found)
457 num_found = number + 1;
458 }
Simon Glassc6782272012-02-03 15:13:53 +0000459 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000460 }
461
462 /* Add any nodes not mentioned by an alias */
463 for (i = j = 0; i < maxcount; i++) {
464 if (!node_list[i]) {
465 for (; j < maxcount; j++)
466 if (nodes[j] &&
Mario Six2e386622018-01-15 11:07:35 +0100467 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassa53f4a22012-01-17 08:20:50 +0000468 break;
469
470 /* Have we run out of nodes to add? */
471 if (j == maxcount)
472 break;
473
474 assert(!node_list[i]);
475 node_list[i] = nodes[j++];
476 if (i >= num_found)
477 num_found = i + 1;
478 }
479 }
480
481 return num_found;
482}
483
Simon Glass5c33c9f2014-07-23 06:55:09 -0600484int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
485 int *seqp)
486{
487 int base_len = strlen(base);
488 const char *find_name;
489 int find_namelen;
490 int prop_offset;
491 int aliases;
492
493 find_name = fdt_get_name(blob, offset, &find_namelen);
494 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
495
496 aliases = fdt_path_offset(blob, "/aliases");
497 for (prop_offset = fdt_first_property_offset(blob, aliases);
498 prop_offset > 0;
499 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
500 const char *prop;
501 const char *name;
502 const char *slash;
Simon Glassc4af6732015-06-23 15:39:08 -0600503 int len, val;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600504
505 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
506 debug(" - %s, %s\n", name, prop);
507 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
508 strncmp(name, base, base_len))
509 continue;
510
511 slash = strrchr(prop, '/');
512 if (strcmp(slash + 1, find_name))
513 continue;
Aswath Govindrajuc5891322020-12-03 10:55:45 +0530514
515 /*
516 * Adding an extra check to distinguish DT nodes with
517 * same name
518 */
Rasmus Villemoes26f981f2022-05-19 11:10:43 +0200519 if (offset != fdt_path_offset(blob, prop))
520 continue;
Aswath Govindrajuc5891322020-12-03 10:55:45 +0530521
Simon Glassc4af6732015-06-23 15:39:08 -0600522 val = trailing_strtol(name);
523 if (val != -1) {
524 *seqp = val;
525 debug("Found seq %d\n", *seqp);
526 return 0;
Simon Glass5c33c9f2014-07-23 06:55:09 -0600527 }
528 }
529
530 debug("Not found\n");
531 return -ENOENT;
532}
533
Michal Simek003c9dc2019-01-31 16:30:58 +0100534int fdtdec_get_alias_highest_id(const void *blob, const char *base)
535{
536 int base_len = strlen(base);
537 int prop_offset;
538 int aliases;
539 int max = -1;
540
541 debug("Looking for highest alias id for '%s'\n", base);
542
543 aliases = fdt_path_offset(blob, "/aliases");
544 for (prop_offset = fdt_first_property_offset(blob, aliases);
545 prop_offset > 0;
546 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
547 const char *prop;
548 const char *name;
549 int len, val;
550
551 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
552 debug(" - %s, %s\n", name, prop);
553 if (*prop != '/' || prop[len - 1] ||
554 strncmp(name, base, base_len))
555 continue;
556
557 val = trailing_strtol(name);
558 if (val > max) {
559 debug("Found seq %d\n", val);
560 max = val;
561 }
562 }
563
564 return max;
565}
566
Simon Glass3bc37a52015-10-17 19:41:14 -0600567const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
568{
569 int chosen_node;
570
571 if (!blob)
572 return NULL;
573 chosen_node = fdt_path_offset(blob, "/chosen");
574 return fdt_getprop(blob, chosen_node, name, NULL);
575}
576
Simon Glassaac07d42014-09-04 16:27:24 -0600577int fdtdec_get_chosen_node(const void *blob, const char *name)
578{
579 const char *prop;
Simon Glassaac07d42014-09-04 16:27:24 -0600580
Simon Glass3bc37a52015-10-17 19:41:14 -0600581 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glassaac07d42014-09-04 16:27:24 -0600582 if (!prop)
583 return -FDT_ERR_NOTFOUND;
584 return fdt_path_offset(blob, prop);
585}
586
Simon Glass9a263e52012-03-28 10:08:24 +0000587int fdtdec_check_fdt(void)
588{
589 /*
590 * We must have an FDT, but we cannot panic() yet since the console
591 * is not ready. So for now, just assert(). Boards which need an early
592 * FDT (prior to console ready) will need to make their own
593 * arrangements and do their own checks.
594 */
595 assert(!fdtdec_prepare_fdt());
596 return 0;
597}
598
Simon Glassb5220bc2011-10-24 19:15:32 +0000599/*
600 * This function is a little odd in that it accesses global data. At some
601 * point if the architecture board.c files merge this will make more sense.
602 * Even now, it is common code.
603 */
Simon Glass9a263e52012-03-28 10:08:24 +0000604int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000605{
Simon Glassc309c2d2013-04-20 08:42:46 +0000606 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
607 fdt_check_header(gd->fdt_blob)) {
Simon Glass66312372015-02-27 22:06:32 -0700608#ifdef CONFIG_SPL_BUILD
609 puts("Missing DTB\n");
610#else
Simon Glasse1d23f52021-01-13 20:29:48 -0700611 printf("No valid device tree binary found at %p\n",
612 gd->fdt_blob);
Simon Glasscb5f97f702015-06-23 15:39:09 -0600613# ifdef DEBUG
614 if (gd->fdt_blob) {
615 printf("fdt_blob=%p\n", gd->fdt_blob);
616 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
617 32, 0);
618 }
619# endif
Simon Glass66312372015-02-27 22:06:32 -0700620#endif
Simon Glass9a263e52012-03-28 10:08:24 +0000621 return -1;
622 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000623 return 0;
624}
Simon Glassd17da652012-02-27 10:52:35 +0000625
626int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
627{
628 const u32 *phandle;
629 int lookup;
630
Simon Glass1cb23232012-07-12 05:25:01 +0000631 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000632 phandle = fdt_getprop(blob, node, prop_name, NULL);
633 if (!phandle)
634 return -FDT_ERR_NOTFOUND;
635
636 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
637 return lookup;
638}
639
640/**
641 * Look up a property in a node and check that it has a minimum length.
642 *
643 * @param blob FDT blob
644 * @param node node to examine
645 * @param prop_name name of property to find
646 * @param min_len minimum property length in bytes
647 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
648 found, or -FDT_ERR_BADLAYOUT if not enough data
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100649 * Return: pointer to cell, which is only valid if err == 0
Simon Glassd17da652012-02-27 10:52:35 +0000650 */
651static const void *get_prop_check_min_len(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100652 const char *prop_name, int min_len,
653 int *err)
Simon Glassd17da652012-02-27 10:52:35 +0000654{
655 const void *cell;
656 int len;
657
658 debug("%s: %s\n", __func__, prop_name);
659 cell = fdt_getprop(blob, node, prop_name, &len);
660 if (!cell)
661 *err = -FDT_ERR_NOTFOUND;
662 else if (len < min_len)
663 *err = -FDT_ERR_BADLAYOUT;
664 else
665 *err = 0;
666 return cell;
667}
668
669int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100670 u32 *array, int count)
Simon Glassd17da652012-02-27 10:52:35 +0000671{
672 const u32 *cell;
Mario Sixb79221a2018-01-15 11:07:36 +0100673 int err = 0;
Simon Glassd17da652012-02-27 10:52:35 +0000674
675 debug("%s: %s\n", __func__, prop_name);
676 cell = get_prop_check_min_len(blob, node, prop_name,
677 sizeof(u32) * count, &err);
678 if (!err) {
Mario Sixb79221a2018-01-15 11:07:36 +0100679 int i;
680
Simon Glassd17da652012-02-27 10:52:35 +0000681 for (i = 0; i < count; i++)
682 array[i] = fdt32_to_cpu(cell[i]);
683 }
684 return err;
685}
686
Simon Glassa9f04d42014-11-10 18:00:19 -0700687int fdtdec_get_int_array_count(const void *blob, int node,
688 const char *prop_name, u32 *array, int count)
689{
690 const u32 *cell;
691 int len, elems;
692 int i;
693
694 debug("%s: %s\n", __func__, prop_name);
695 cell = fdt_getprop(blob, node, prop_name, &len);
696 if (!cell)
697 return -FDT_ERR_NOTFOUND;
698 elems = len / sizeof(u32);
699 if (count > elems)
700 count = elems;
701 for (i = 0; i < count; i++)
702 array[i] = fdt32_to_cpu(cell[i]);
703
704 return count;
705}
706
Simon Glass96875e72012-04-02 13:18:41 +0000707const u32 *fdtdec_locate_array(const void *blob, int node,
708 const char *prop_name, int count)
709{
710 const u32 *cell;
711 int err;
712
713 cell = get_prop_check_min_len(blob, node, prop_name,
714 sizeof(u32) * count, &err);
715 return err ? NULL : cell;
716}
717
Simon Glassd17da652012-02-27 10:52:35 +0000718int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
719{
720 const s32 *cell;
721 int len;
722
723 debug("%s: %s\n", __func__, prop_name);
724 cell = fdt_getprop(blob, node, prop_name, &len);
725 return cell != NULL;
726}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000727
Simon Glass57068a72015-01-05 20:05:26 -0700728int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
729 const char *list_name,
730 const char *cells_name,
731 int cell_count, int index,
732 struct fdtdec_phandle_args *out_args)
733{
734 const __be32 *list, *list_end;
735 int rc = 0, size, cur_index = 0;
736 uint32_t count = 0;
737 int node = -1;
738 int phandle;
739
740 /* Retrieve the phandle list property */
741 list = fdt_getprop(blob, src_node, list_name, &size);
742 if (!list)
743 return -ENOENT;
744 list_end = list + size / sizeof(*list);
745
746 /* Loop over the phandles until all the requested entry is found */
747 while (list < list_end) {
748 rc = -EINVAL;
749 count = 0;
750
751 /*
752 * If phandle is 0, then it is an empty entry with no
753 * arguments. Skip forward to the next entry.
754 */
755 phandle = be32_to_cpup(list++);
756 if (phandle) {
757 /*
758 * Find the provider node and parse the #*-cells
759 * property to determine the argument length.
760 *
761 * This is not needed if the cell count is hard-coded
762 * (i.e. cells_name not set, but cell_count is set),
763 * except when we're going to return the found node
764 * below.
765 */
766 if (cells_name || cur_index == index) {
767 node = fdt_node_offset_by_phandle(blob,
768 phandle);
Patrick Delaunaycba487c2020-09-25 09:41:15 +0200769 if (node < 0) {
Simon Glass57068a72015-01-05 20:05:26 -0700770 debug("%s: could not find phandle\n",
771 fdt_get_name(blob, src_node,
772 NULL));
773 goto err;
774 }
775 }
776
777 if (cells_name) {
778 count = fdtdec_get_int(blob, node, cells_name,
779 -1);
780 if (count == -1) {
781 debug("%s: could not get %s for %s\n",
782 fdt_get_name(blob, src_node,
783 NULL),
784 cells_name,
785 fdt_get_name(blob, node,
786 NULL));
787 goto err;
788 }
789 } else {
790 count = cell_count;
791 }
792
793 /*
794 * Make sure that the arguments actually fit in the
795 * remaining property data length
796 */
797 if (list + count > list_end) {
798 debug("%s: arguments longer than property\n",
799 fdt_get_name(blob, src_node, NULL));
800 goto err;
801 }
802 }
803
804 /*
805 * All of the error cases above bail out of the loop, so at
806 * this point, the parsing is successful. If the requested
807 * index matches, then fill the out_args structure and return,
808 * or return -ENOENT for an empty entry.
809 */
810 rc = -ENOENT;
811 if (cur_index == index) {
812 if (!phandle)
813 goto err;
814
815 if (out_args) {
816 int i;
817
818 if (count > MAX_PHANDLE_ARGS) {
819 debug("%s: too many arguments %d\n",
820 fdt_get_name(blob, src_node,
821 NULL), count);
822 count = MAX_PHANDLE_ARGS;
823 }
824 out_args->node = node;
825 out_args->args_count = count;
826 for (i = 0; i < count; i++) {
827 out_args->args[i] =
828 be32_to_cpup(list++);
829 }
830 }
831
832 /* Found it! return success */
833 return 0;
834 }
835
836 node = -1;
837 list += count;
838 cur_index++;
839 }
840
841 /*
842 * Result will be one of:
843 * -ENOENT : index is for empty phandle
844 * -EINVAL : parsing error on data
845 * [1..n] : Number of phandle (count mode; when index = -1)
846 */
847 rc = index < 0 ? cur_index : -ENOENT;
848 err:
849 return rc;
850}
851
Anton Staffbed4d892012-04-17 09:01:28 +0000852int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Six2e386622018-01-15 11:07:35 +0100853 u8 *array, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000854{
855 const u8 *cell;
856 int err;
857
858 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
859 if (!err)
860 memcpy(array, cell, count);
861 return err;
862}
863
864const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Six2e386622018-01-15 11:07:35 +0100865 const char *prop_name, int count)
Anton Staffbed4d892012-04-17 09:01:28 +0000866{
867 const u8 *cell;
868 int err;
869
870 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
871 if (err)
872 return NULL;
873 return cell;
874}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000875
Simon Glass5f7bfdd2015-03-05 12:25:14 -0700876u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Reding56f42242014-08-26 17:33:53 +0200877{
878 u64 number = 0;
879
880 while (cells--)
881 number = (number << 32) | fdt32_to_cpu(*ptr++);
882
883 return number;
884}
885
886int fdt_get_resource(const void *fdt, int node, const char *property,
887 unsigned int index, struct fdt_resource *res)
888{
889 const fdt32_t *ptr, *end;
890 int na, ns, len, parent;
891 unsigned int i = 0;
892
893 parent = fdt_parent_offset(fdt, node);
894 if (parent < 0)
895 return parent;
896
897 na = fdt_address_cells(fdt, parent);
898 ns = fdt_size_cells(fdt, parent);
899
900 ptr = fdt_getprop(fdt, node, property, &len);
901 if (!ptr)
902 return len;
903
904 end = ptr + len / sizeof(*ptr);
905
906 while (ptr + na + ns <= end) {
907 if (i == index) {
Patrick Delaunayfeb7ac42021-04-06 09:38:06 +0200908 if (CONFIG_IS_ENABLED(OF_TRANSLATE))
909 res->start = fdt_translate_address(fdt, node, ptr);
910 else
911 res->start = fdtdec_get_number(ptr, na);
912
Mario Sixb79221a2018-01-15 11:07:36 +0100913 res->end = res->start;
Thierry Reding56f42242014-08-26 17:33:53 +0200914 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
915 return 0;
916 }
917
918 ptr += na + ns;
919 i++;
920 }
921
922 return -FDT_ERR_NOTFOUND;
923}
924
925int fdt_get_named_resource(const void *fdt, int node, const char *property,
926 const char *prop_names, const char *name,
927 struct fdt_resource *res)
928{
929 int index;
930
Simon Glassb02e4042016-10-02 17:59:28 -0600931 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Reding56f42242014-08-26 17:33:53 +0200932 if (index < 0)
933 return index;
934
935 return fdt_get_resource(fdt, node, property, index, res);
936}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200937
Simon Glass12e67112015-04-14 21:03:21 -0600938static int decode_timing_property(const void *blob, int node, const char *name,
939 struct timing_entry *result)
940{
941 int length, ret = 0;
942 const u32 *prop;
943
944 prop = fdt_getprop(blob, node, name, &length);
945 if (!prop) {
946 debug("%s: could not find property %s\n",
947 fdt_get_name(blob, node, NULL), name);
948 return length;
949 }
950
951 if (length == sizeof(u32)) {
952 result->typ = fdtdec_get_int(blob, node, name, 0);
953 result->min = result->typ;
954 result->max = result->typ;
955 } else {
956 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
957 }
958
959 return ret;
960}
961
962int fdtdec_decode_display_timing(const void *blob, int parent, int index,
963 struct display_timing *dt)
964{
965 int i, node, timings_node;
966 u32 val = 0;
967 int ret = 0;
968
969 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
970 if (timings_node < 0)
971 return timings_node;
972
973 for (i = 0, node = fdt_first_subnode(blob, timings_node);
974 node > 0 && i != index;
975 node = fdt_next_subnode(blob, node))
976 i++;
977
978 if (node < 0)
979 return node;
980
981 memset(dt, 0, sizeof(*dt));
982
983 ret |= decode_timing_property(blob, node, "hback-porch",
984 &dt->hback_porch);
985 ret |= decode_timing_property(blob, node, "hfront-porch",
986 &dt->hfront_porch);
987 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
988 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
989 ret |= decode_timing_property(blob, node, "vback-porch",
990 &dt->vback_porch);
991 ret |= decode_timing_property(blob, node, "vfront-porch",
992 &dt->vfront_porch);
993 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
994 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
995 ret |= decode_timing_property(blob, node, "clock-frequency",
996 &dt->pixelclock);
997
998 dt->flags = 0;
999 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1000 if (val != -1) {
1001 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1002 DISPLAY_FLAGS_VSYNC_LOW;
1003 }
1004 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1005 if (val != -1) {
1006 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1007 DISPLAY_FLAGS_HSYNC_LOW;
1008 }
1009 val = fdtdec_get_int(blob, node, "de-active", -1);
1010 if (val != -1) {
1011 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1012 DISPLAY_FLAGS_DE_LOW;
1013 }
1014 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1015 if (val != -1) {
1016 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1017 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1018 }
1019
1020 if (fdtdec_get_bool(blob, node, "interlaced"))
1021 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1022 if (fdtdec_get_bool(blob, node, "doublescan"))
1023 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1024 if (fdtdec_get_bool(blob, node, "doubleclk"))
1025 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1026
Simon Glass04b9dd12016-05-05 07:28:21 -06001027 return ret;
Simon Glass12e67112015-04-14 21:03:21 -06001028}
1029
Michal Simek50c7b722020-07-10 13:16:50 +02001030int fdtdec_setup_mem_size_base(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001031{
Michal Simekc2f09502020-07-10 13:34:44 +02001032 int ret;
1033 ofnode mem;
1034 struct resource res;
Nathan Rossi623f6012016-12-19 00:03:34 +10001035
Michal Simekc2f09502020-07-10 13:34:44 +02001036 mem = ofnode_path("/memory");
1037 if (!ofnode_valid(mem)) {
Nathan Rossi623f6012016-12-19 00:03:34 +10001038 debug("%s: Missing /memory node\n", __func__);
1039 return -EINVAL;
1040 }
1041
Michal Simekc2f09502020-07-10 13:34:44 +02001042 ret = ofnode_read_resource(mem, 0, &res);
Nathan Rossi623f6012016-12-19 00:03:34 +10001043 if (ret != 0) {
1044 debug("%s: Unable to decode first memory bank\n", __func__);
1045 return -EINVAL;
1046 }
1047
1048 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu1473b122018-07-16 15:56:10 +05301049 gd->ram_base = (unsigned long)res.start;
Simon Glassc69380f2017-05-27 07:38:13 -06001050 debug("%s: Initial DRAM size %llx\n", __func__,
1051 (unsigned long long)gd->ram_size);
Nathan Rossi623f6012016-12-19 00:03:34 +10001052
1053 return 0;
1054}
1055
Michal Simekc2f09502020-07-10 13:34:44 +02001056ofnode get_next_memory_node(ofnode mem)
Jens Wiklander452bc122018-07-13 12:12:11 +02001057{
Jens Wiklander452bc122018-07-13 12:12:11 +02001058 do {
Michal Simekc2f09502020-07-10 13:34:44 +02001059 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
1060 } while (!ofnode_is_available(mem));
Jens Wiklander452bc122018-07-13 12:12:11 +02001061
1062 return mem;
1063}
1064
Michal Simek62897c42020-07-10 13:16:49 +02001065int fdtdec_setup_memory_banksize(void)
Nathan Rossi623f6012016-12-19 00:03:34 +10001066{
Michal Simekc2f09502020-07-10 13:34:44 +02001067 int bank, ret, reg = 0;
1068 struct resource res;
1069 ofnode mem = ofnode_null();
Nathan Rossi623f6012016-12-19 00:03:34 +10001070
Michal Simekc2f09502020-07-10 13:34:44 +02001071 mem = get_next_memory_node(mem);
1072 if (!ofnode_valid(mem)) {
Michal Simek658954c2018-10-03 15:53:52 +02001073 debug("%s: Missing /memory node\n", __func__);
1074 return -EINVAL;
1075 }
Nathan Rossi623f6012016-12-19 00:03:34 +10001076
1077 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001078 ret = ofnode_read_resource(mem, reg++, &res);
1079 if (ret < 0) {
Marek Vasut942ee092017-11-27 05:32:42 +01001080 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001081 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001082 if (!ofnode_valid(mem))
Michal Simek658954c2018-10-03 15:53:52 +02001083 break;
1084
Michal Simekc2f09502020-07-10 13:34:44 +02001085 ret = ofnode_read_resource(mem, reg++, &res);
1086 if (ret < 0)
Michal Simek658954c2018-10-03 15:53:52 +02001087 break;
1088 }
Michal Simekc2f09502020-07-10 13:34:44 +02001089
1090 if (ret != 0)
Michal Simek658954c2018-10-03 15:53:52 +02001091 return -EINVAL;
Nathan Rossi623f6012016-12-19 00:03:34 +10001092
1093 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1094 gd->bd->bi_dram[bank].size =
1095 (phys_size_t)(res.end - res.start + 1);
1096
1097 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1098 __func__, bank,
1099 (unsigned long long)gd->bd->bi_dram[bank].start,
1100 (unsigned long long)gd->bd->bi_dram[bank].size);
1101 }
1102
1103 return 0;
1104}
Michal Simek7fce7392020-07-09 14:09:52 +02001105
1106int fdtdec_setup_mem_size_base_lowest(void)
1107{
Michal Simekc2f09502020-07-10 13:34:44 +02001108 int bank, ret, reg = 0;
1109 struct resource res;
Michal Simek7fce7392020-07-09 14:09:52 +02001110 unsigned long base;
1111 phys_size_t size;
Michal Simekc2f09502020-07-10 13:34:44 +02001112 ofnode mem = ofnode_null();
Michal Simek7fce7392020-07-09 14:09:52 +02001113
1114 gd->ram_base = (unsigned long)~0;
1115
Michal Simekc2f09502020-07-10 13:34:44 +02001116 mem = get_next_memory_node(mem);
1117 if (!ofnode_valid(mem)) {
Michal Simek7fce7392020-07-09 14:09:52 +02001118 debug("%s: Missing /memory node\n", __func__);
1119 return -EINVAL;
1120 }
1121
1122 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simekc2f09502020-07-10 13:34:44 +02001123 ret = ofnode_read_resource(mem, reg++, &res);
1124 if (ret < 0) {
Michal Simek7fce7392020-07-09 14:09:52 +02001125 reg = 0;
Michal Simekc2f09502020-07-10 13:34:44 +02001126 mem = get_next_memory_node(mem);
Marek Vasut81d0cef2020-09-12 12:42:52 +02001127 if (!ofnode_valid(mem))
Michal Simek7fce7392020-07-09 14:09:52 +02001128 break;
1129
Michal Simekc2f09502020-07-10 13:34:44 +02001130 ret = ofnode_read_resource(mem, reg++, &res);
1131 if (ret < 0)
Michal Simek7fce7392020-07-09 14:09:52 +02001132 break;
1133 }
Michal Simekc2f09502020-07-10 13:34:44 +02001134
Michal Simek7fce7392020-07-09 14:09:52 +02001135 if (ret != 0)
1136 return -EINVAL;
1137
1138 base = (unsigned long)res.start;
1139 size = (phys_size_t)(res.end - res.start + 1);
1140
1141 if (gd->ram_base > base && size) {
1142 gd->ram_base = base;
1143 gd->ram_size = size;
1144 debug("%s: Initial DRAM base %lx size %lx\n",
1145 __func__, base, (unsigned long)size);
1146 }
1147 }
1148
1149 return 0;
1150}
Nathan Rossi623f6012016-12-19 00:03:34 +10001151
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001152static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1153{
Simon Glassb4b6daf2021-12-16 20:59:25 -07001154#if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1155 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
Marek Vasut95f4bbd2019-03-08 16:06:55 +01001156 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut1fd30352019-03-13 21:11:22 +01001157 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001158 ulong sz_in = sz_src;
1159 void *dst;
1160 int rc;
1161
1162 if (CONFIG_IS_ENABLED(GZIP))
Marek Vasut1fd30352019-03-13 21:11:22 +01001163 if (gzip_parse_header(src, sz_in) >= 0)
1164 gzip = 1;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001165 if (CONFIG_IS_ENABLED(LZO))
Marek Vasut1fd30352019-03-13 21:11:22 +01001166 if (!gzip && lzop_is_valid_header(src))
1167 lzo = 1;
1168
1169 if (!gzip && !lzo)
1170 return -EBADMSG;
1171
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001172
1173 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1174 dst = malloc(sz_out);
1175 if (!dst) {
1176 puts("uncompress_blob: Unable to allocate memory\n");
1177 return -ENOMEM;
1178 }
1179 } else {
Simon Glassb4b6daf2021-12-16 20:59:25 -07001180# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001181 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
Simon Glassb4b6daf2021-12-16 20:59:25 -07001182# else
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001183 return -ENOTSUPP;
Simon Glassb4b6daf2021-12-16 20:59:25 -07001184# endif
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001185 }
1186
Marek Vasut1fd30352019-03-13 21:11:22 +01001187 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001188 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut1fd30352019-03-13 21:11:22 +01001189 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001190 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut1fd30352019-03-13 21:11:22 +01001191 else
1192 hang();
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001193
1194 if (rc < 0) {
1195 /* not a valid compressed blob */
1196 puts("uncompress_blob: Unable to uncompress\n");
1197 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1198 free(dst);
1199 return -EBADMSG;
1200 }
1201 *dstp = dst;
Simon Glassb4b6daf2021-12-16 20:59:25 -07001202#else
Marek Vasut410d9b62018-10-18 20:37:05 +02001203 *dstp = (void *)src;
Simon Glassb4b6daf2021-12-16 20:59:25 -07001204 *dstp = (void *)src;
1205#endif
Marek Vasut410d9b62018-10-18 20:37:05 +02001206 return 0;
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001207}
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001208
Simon Glass98550342021-12-16 20:59:31 -07001209/**
1210 * fdt_find_separate() - Find a devicetree at the end of the image
1211 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001212 * Return: pointer to FDT blob
Rob Clark3b595da2018-01-10 11:34:37 +01001213 */
Simon Glass98550342021-12-16 20:59:31 -07001214static void *fdt_find_separate(void)
Rob Clark3b595da2018-01-10 11:34:37 +01001215{
1216 void *fdt_blob = NULL;
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001217
Simon Glass423cf0a2022-02-28 12:08:24 -07001218 if (IS_ENABLED(CONFIG_SANDBOX))
1219 return NULL;
1220
Rob Clark3b595da2018-01-10 11:34:37 +01001221#ifdef CONFIG_SPL_BUILD
1222 /* FDT is at end of BSS unless it is in a different memory region */
Andrew Abbott0de71bb2022-04-16 10:12:31 +10001223 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
Rob Clark3b595da2018-01-10 11:34:37 +01001224 fdt_blob = (ulong *)&_image_binary_end;
1225 else
1226 fdt_blob = (ulong *)&__bss_end;
1227#else
1228 /* FDT is at end of image */
1229 fdt_blob = (ulong *)&_end;
1230#endif
Ilias Apalodimase7fb7892021-10-26 09:12:33 +03001231
Rob Clark3b595da2018-01-10 11:34:37 +01001232 return fdt_blob;
1233}
Rob Clark3b595da2018-01-10 11:34:37 +01001234
Thierry Redingebf30e82019-04-15 11:32:13 +02001235int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1236{
1237 const char *path;
1238 int offset, err;
1239
1240 if (!is_valid_ethaddr(mac))
1241 return -EINVAL;
1242
1243 path = fdt_get_alias(fdt, "ethernet");
1244 if (!path)
1245 return 0;
1246
1247 debug("ethernet alias found: %s\n", path);
1248
1249 offset = fdt_path_offset(fdt, path);
1250 if (offset < 0) {
1251 debug("ethernet alias points to absent node %s\n", path);
1252 return -ENOENT;
1253 }
1254
1255 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1256 if (err < 0)
1257 return err;
1258
1259 debug("MAC address: %pM\n", mac);
1260
1261 return 0;
1262}
1263
Thierry Redingc9222a02019-03-21 19:10:02 +01001264static int fdtdec_init_reserved_memory(void *blob)
1265{
1266 int na, ns, node, err;
1267 fdt32_t value;
1268
1269 /* inherit #address-cells and #size-cells from the root node */
1270 na = fdt_address_cells(blob, 0);
1271 ns = fdt_size_cells(blob, 0);
1272
1273 node = fdt_add_subnode(blob, 0, "reserved-memory");
1274 if (node < 0)
1275 return node;
1276
1277 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1278 if (err < 0)
1279 return err;
1280
1281 value = cpu_to_fdt32(ns);
1282
1283 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1284 if (err < 0)
1285 return err;
1286
1287 value = cpu_to_fdt32(na);
1288
1289 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1290 if (err < 0)
1291 return err;
1292
1293 return node;
1294}
1295
1296int fdtdec_add_reserved_memory(void *blob, const char *basename,
1297 const struct fdt_memory *carveout,
Thierry Reding46cb0672021-09-03 15:16:19 +02001298 const char **compatibles, unsigned int count,
Thierry Redingb9aad372021-09-03 15:16:21 +02001299 uint32_t *phandlep, unsigned long flags)
Thierry Redingc9222a02019-03-21 19:10:02 +01001300{
1301 fdt32_t cells[4] = {}, *ptr = cells;
1302 uint32_t upper, lower, phandle;
1303 int parent, node, na, ns, err;
Thierry Reding3bf2f152019-04-15 10:08:21 +02001304 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001305 char name[64];
1306
1307 /* create an empty /reserved-memory node if one doesn't exist */
1308 parent = fdt_path_offset(blob, "/reserved-memory");
1309 if (parent < 0) {
1310 parent = fdtdec_init_reserved_memory(blob);
1311 if (parent < 0)
1312 return parent;
1313 }
1314
1315 /* only 1 or 2 #address-cells and #size-cells are supported */
1316 na = fdt_address_cells(blob, parent);
1317 if (na < 1 || na > 2)
1318 return -FDT_ERR_BADNCELLS;
1319
1320 ns = fdt_size_cells(blob, parent);
1321 if (ns < 1 || ns > 2)
1322 return -FDT_ERR_BADNCELLS;
1323
1324 /* find a matching node and return the phandle to that */
1325 fdt_for_each_subnode(node, blob, parent) {
1326 const char *name = fdt_get_name(blob, node, NULL);
Bin Menga9ad1132020-05-19 23:38:32 -07001327 fdt_addr_t addr;
1328 fdt_size_t size;
Thierry Redingc9222a02019-03-21 19:10:02 +01001329
Bin Mengf6704c72020-05-19 23:38:33 -07001330 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1331 &size, false);
Thierry Redingc9222a02019-03-21 19:10:02 +01001332 if (addr == FDT_ADDR_T_NONE) {
1333 debug("failed to read address/size for %s\n", name);
1334 continue;
1335 }
1336
Atish Patraf6147532020-04-21 11:15:00 -07001337 if (addr == carveout->start && (addr + size - 1) ==
1338 carveout->end) {
Heiko Stuebner086336a2019-10-23 16:46:38 +02001339 if (phandlep)
1340 *phandlep = fdt_get_phandle(blob, node);
Thierry Redingc9222a02019-03-21 19:10:02 +01001341 return 0;
1342 }
1343 }
1344
1345 /*
1346 * Unpack the start address and generate the name of the new node
1347 * base on the basename and the unit-address.
1348 */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001349 upper = upper_32_bits(carveout->start);
1350 lower = lower_32_bits(carveout->start);
Thierry Redingc9222a02019-03-21 19:10:02 +01001351
1352 if (na > 1 && upper > 0)
1353 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1354 lower);
1355 else {
1356 if (upper > 0) {
1357 debug("address %08x:%08x exceeds addressable space\n",
1358 upper, lower);
1359 return -FDT_ERR_BADVALUE;
1360 }
1361
1362 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1363 }
1364
1365 node = fdt_add_subnode(blob, parent, name);
1366 if (node < 0)
1367 return node;
1368
Thierry Redingb9aad372021-09-03 15:16:21 +02001369 if (flags & FDTDEC_RESERVED_MEMORY_NO_MAP) {
1370 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1371 if (err < 0)
1372 return err;
1373 }
1374
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001375 if (phandlep) {
1376 err = fdt_generate_phandle(blob, &phandle);
1377 if (err < 0)
1378 return err;
Thierry Redingc9222a02019-03-21 19:10:02 +01001379
Heiko Stuebner357d2ce2019-10-23 16:46:39 +02001380 err = fdtdec_set_phandle(blob, node, phandle);
1381 if (err < 0)
1382 return err;
1383 }
Thierry Redingc9222a02019-03-21 19:10:02 +01001384
1385 /* store one or two address cells */
1386 if (na > 1)
1387 *ptr++ = cpu_to_fdt32(upper);
1388
1389 *ptr++ = cpu_to_fdt32(lower);
1390
1391 /* store one or two size cells */
Thierry Reding3bf2f152019-04-15 10:08:21 +02001392 size = carveout->end - carveout->start + 1;
1393 upper = upper_32_bits(size);
1394 lower = lower_32_bits(size);
Thierry Redingc9222a02019-03-21 19:10:02 +01001395
1396 if (ns > 1)
1397 *ptr++ = cpu_to_fdt32(upper);
1398
1399 *ptr++ = cpu_to_fdt32(lower);
1400
1401 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1402 if (err < 0)
1403 return err;
1404
Thierry Reding46cb0672021-09-03 15:16:19 +02001405 if (compatibles && count > 0) {
1406 size_t length = 0, len = 0;
1407 unsigned int i;
1408 char *buffer;
1409
1410 for (i = 0; i < count; i++)
1411 length += strlen(compatibles[i]) + 1;
1412
1413 buffer = malloc(length);
1414 if (!buffer)
1415 return -FDT_ERR_INTERNAL;
1416
1417 for (i = 0; i < count; i++)
1418 len += strlcpy(buffer + len, compatibles[i],
1419 length - len) + 1;
1420
1421 err = fdt_setprop(blob, node, "compatible", buffer, length);
1422 free(buffer);
1423 if (err < 0)
1424 return err;
1425 }
1426
Thierry Redingc9222a02019-03-21 19:10:02 +01001427 /* return the phandle for the new node for the caller to use */
1428 if (phandlep)
1429 *phandlep = phandle;
1430
1431 return 0;
1432}
1433
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001434int fdtdec_get_carveout(const void *blob, const char *node,
1435 const char *prop_name, unsigned int index,
Thierry Reding46cb0672021-09-03 15:16:19 +02001436 struct fdt_memory *carveout, const char **name,
Thierry Redingb9aad372021-09-03 15:16:21 +02001437 const char ***compatiblesp, unsigned int *countp,
1438 unsigned long *flags)
Thierry Reding16523ac2019-03-21 19:10:03 +01001439{
1440 const fdt32_t *prop;
1441 uint32_t phandle;
1442 int offset, len;
1443 fdt_size_t size;
1444
1445 offset = fdt_path_offset(blob, node);
1446 if (offset < 0)
1447 return offset;
1448
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001449 prop = fdt_getprop(blob, offset, prop_name, &len);
Thierry Reding16523ac2019-03-21 19:10:03 +01001450 if (!prop) {
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001451 debug("failed to get %s for %s\n", prop_name, node);
Thierry Reding16523ac2019-03-21 19:10:03 +01001452 return -FDT_ERR_NOTFOUND;
1453 }
1454
1455 if ((len % sizeof(phandle)) != 0) {
1456 debug("invalid phandle property\n");
1457 return -FDT_ERR_BADPHANDLE;
1458 }
1459
1460 if (len < (sizeof(phandle) * (index + 1))) {
1461 debug("invalid phandle index\n");
Thierry Redingd5598cf2021-09-03 15:16:17 +02001462 return -FDT_ERR_NOTFOUND;
Thierry Reding16523ac2019-03-21 19:10:03 +01001463 }
1464
1465 phandle = fdt32_to_cpu(prop[index]);
1466
1467 offset = fdt_node_offset_by_phandle(blob, phandle);
1468 if (offset < 0) {
1469 debug("failed to find node for phandle %u\n", phandle);
1470 return offset;
1471 }
1472
Thierry Reding4bf88ba2021-09-03 15:16:18 +02001473 if (name)
1474 *name = fdt_get_name(blob, offset, NULL);
1475
Thierry Reding46cb0672021-09-03 15:16:19 +02001476 if (compatiblesp) {
1477 const char **compatibles = NULL;
1478 const char *start, *end, *ptr;
1479 unsigned int count = 0;
1480
1481 prop = fdt_getprop(blob, offset, "compatible", &len);
1482 if (!prop)
1483 goto skip_compat;
1484
1485 start = ptr = (const char *)prop;
1486 end = start + len;
1487
1488 while (ptr < end) {
1489 ptr = strchrnul(ptr, '\0');
1490 count++;
1491 ptr++;
1492 }
1493
1494 compatibles = malloc(sizeof(ptr) * count);
1495 if (!compatibles)
1496 return -FDT_ERR_INTERNAL;
1497
1498 ptr = start;
1499 count = 0;
1500
1501 while (ptr < end) {
1502 compatibles[count] = ptr;
1503 ptr = strchrnul(ptr, '\0');
1504 count++;
1505 ptr++;
1506 }
1507
1508skip_compat:
1509 *compatiblesp = compatibles;
1510
1511 if (countp)
1512 *countp = count;
1513 }
1514
Thierry Reding16523ac2019-03-21 19:10:03 +01001515 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1516 "reg", 0, &size,
1517 true);
1518 if (carveout->start == FDT_ADDR_T_NONE) {
1519 debug("failed to read address/size from \"reg\" property\n");
1520 return -FDT_ERR_NOTFOUND;
1521 }
1522
1523 carveout->end = carveout->start + size - 1;
1524
Thierry Redingb9aad372021-09-03 15:16:21 +02001525 if (flags) {
1526 *flags = 0;
1527
1528 if (fdtdec_get_bool(blob, offset, "no-map"))
1529 *flags |= FDTDEC_RESERVED_MEMORY_NO_MAP;
1530 }
1531
Thierry Reding16523ac2019-03-21 19:10:03 +01001532 return 0;
1533}
1534
1535int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Reding90194872021-09-03 15:16:20 +02001536 unsigned int index, const struct fdt_memory *carveout,
1537 const char *name, const char **compatibles,
Thierry Redingb9aad372021-09-03 15:16:21 +02001538 unsigned int count, unsigned long flags)
Thierry Reding16523ac2019-03-21 19:10:03 +01001539{
1540 uint32_t phandle;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001541 int err, offset, len;
Thierry Reding16523ac2019-03-21 19:10:03 +01001542 fdt32_t value;
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001543 void *prop;
Thierry Reding16523ac2019-03-21 19:10:03 +01001544
Thierry Reding46cb0672021-09-03 15:16:19 +02001545 err = fdtdec_add_reserved_memory(blob, name, carveout, compatibles,
Thierry Redingb9aad372021-09-03 15:16:21 +02001546 count, &phandle, flags);
Thierry Reding16523ac2019-03-21 19:10:03 +01001547 if (err < 0) {
1548 debug("failed to add reserved memory: %d\n", err);
1549 return err;
1550 }
1551
1552 offset = fdt_path_offset(blob, node);
1553 if (offset < 0) {
1554 debug("failed to find offset for node %s: %d\n", node, offset);
1555 return offset;
1556 }
1557
1558 value = cpu_to_fdt32(phandle);
1559
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001560 if (!fdt_getprop(blob, offset, prop_name, &len)) {
1561 if (len == -FDT_ERR_NOTFOUND)
1562 len = 0;
1563 else
1564 return len;
1565 }
1566
1567 if ((index + 1) * sizeof(value) > len) {
1568 err = fdt_setprop_placeholder(blob, offset, prop_name,
1569 (index + 1) * sizeof(value),
1570 &prop);
1571 if (err < 0) {
1572 debug("failed to resize reserved memory property: %s\n",
1573 fdt_strerror(err));
1574 return err;
1575 }
1576 }
1577
1578 err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1579 strlen(prop_name),
1580 index * sizeof(value),
1581 &value, sizeof(value));
Thierry Reding16523ac2019-03-21 19:10:03 +01001582 if (err < 0) {
Laurentiu Tudorb9200b12020-04-03 13:43:03 +03001583 debug("failed to update %s property for node %s: %s\n",
1584 prop_name, node, fdt_strerror(err));
Thierry Reding16523ac2019-03-21 19:10:03 +01001585 return err;
1586 }
1587
1588 return 0;
1589}
1590
Simon Glass275b4832021-12-16 20:59:35 -07001591/* TODO(sjg@chromium.org): This function should not be weak */
Marek Vasut0e2afc82020-04-11 21:18:59 +02001592__weak int fdtdec_board_setup(const void *fdt_blob)
1593{
1594 return 0;
1595}
1596
Simon Glass3f51f782021-12-16 20:59:24 -07001597/**
1598 * setup_multi_dtb_fit() - locate the correct dtb from a FIT
1599 *
1600 * This supports the CONFIG_MULTI_DTB_FIT feature, looking for the dtb in a
1601 * supplied FIT
1602 *
1603 * It accepts the current value of gd->fdt_blob, which points to the FIT, then
1604 * updates that gd->fdt_blob, to point to the chosen dtb so that U-Boot uses the
1605 * correct one
1606 */
1607static void setup_multi_dtb_fit(void)
1608{
Simon Glass3f51f782021-12-16 20:59:24 -07001609 void *blob;
1610
1611 /*
1612 * Try and uncompress the blob.
1613 * Unfortunately there is no way to know how big the input blob really
1614 * is. So let us set the maximum input size arbitrarily high. 16MB
1615 * ought to be more than enough for packed DTBs.
1616 */
1617 if (uncompress_blob(gd->fdt_blob, 0x1000000, &blob) == 0)
1618 gd->fdt_blob = blob;
1619
1620 /*
1621 * Check if blob is a FIT images containings DTBs.
1622 * If so, pick the most relevant
1623 */
1624 blob = locate_dtb_in_fit(gd->fdt_blob);
1625 if (blob) {
Simon Glassb4b6daf2021-12-16 20:59:25 -07001626 gd_set_multi_dtb_fit(gd->fdt_blob);
Simon Glass3f51f782021-12-16 20:59:24 -07001627 gd->fdt_blob = blob;
Simon Glass39605c62021-12-16 20:59:33 -07001628 gd->fdt_src = FDTSRC_FIT;
Simon Glass3f51f782021-12-16 20:59:24 -07001629 }
Simon Glass3f51f782021-12-16 20:59:24 -07001630}
1631
Simon Glass08793612015-02-27 22:06:35 -07001632int fdtdec_setup(void)
Simon Glassb45122f2015-02-27 22:06:34 -07001633{
Marek Vasut0e2afc82020-04-11 21:18:59 +02001634 int ret;
Simon Glassba83d852021-12-16 20:59:30 -07001635
1636 /* The devicetree is typically appended to U-Boot */
Simon Glass39605c62021-12-16 20:59:33 -07001637 if (IS_ENABLED(CONFIG_OF_SEPARATE)) {
Simon Glass98550342021-12-16 20:59:31 -07001638 gd->fdt_blob = fdt_find_separate();
Simon Glass39605c62021-12-16 20:59:33 -07001639 gd->fdt_src = FDTSRC_SEPARATE;
1640 } else { /* embed dtb in ELF file for testing / development */
Simon Glass98550342021-12-16 20:59:31 -07001641 gd->fdt_blob = dtb_dt_embedded();
Simon Glass39605c62021-12-16 20:59:33 -07001642 gd->fdt_src = FDTSRC_EMBED;
1643 }
Simon Glass98550342021-12-16 20:59:31 -07001644
1645 /* Allow the board to override the fdt address. */
1646 if (IS_ENABLED(CONFIG_OF_BOARD)) {
Simon Glassba83d852021-12-16 20:59:30 -07001647 gd->fdt_blob = board_fdt_blob_setup(&ret);
1648 if (ret)
1649 return ret;
Simon Glass39605c62021-12-16 20:59:33 -07001650 gd->fdt_src = FDTSRC_BOARD;
Simon Glassba83d852021-12-16 20:59:30 -07001651 }
1652
Simon Glass39605c62021-12-16 20:59:33 -07001653 /* Allow the early environment to override the fdt address */
Simon Glass931511d2021-12-16 20:59:28 -07001654 if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
Simon Glass39605c62021-12-16 20:59:33 -07001655 ulong addr;
1656
1657 addr = env_get_hex("fdtcontroladdr", 0);
1658 if (addr) {
1659 gd->fdt_blob = map_sysmem(addr, 0);
1660 gd->fdt_src = FDTSRC_ENV;
1661 }
Simon Glass931511d2021-12-16 20:59:28 -07001662 }
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001663
Simon Glass3f51f782021-12-16 20:59:24 -07001664 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
1665 setup_multi_dtb_fit();
Jean-Jacques Hiblot2f57c952017-09-15 12:57:32 +02001666
Marek Vasut0e2afc82020-04-11 21:18:59 +02001667 ret = fdtdec_prepare_fdt();
1668 if (!ret)
1669 ret = fdtdec_board_setup(gd->fdt_blob);
1670 return ret;
Simon Glassb45122f2015-02-27 22:06:34 -07001671}
1672
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001673int fdtdec_resetup(int *rescan)
1674{
1675 void *fdt_blob;
1676
1677 /*
1678 * If the current DTB is part of a compressed FIT image,
1679 * try to locate the best match from the uncompressed
1680 * FIT image stillpresent there. Save the time and space
1681 * required to uncompress it again.
1682 */
Simon Glassb4b6daf2021-12-16 20:59:25 -07001683 if (gd_multi_dtb_fit()) {
1684 fdt_blob = locate_dtb_in_fit(gd_multi_dtb_fit());
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001685
1686 if (fdt_blob == gd->fdt_blob) {
1687 /*
1688 * The best match did not change. no need to tear down
1689 * the DM and rescan the fdt.
1690 */
1691 *rescan = 0;
1692 return 0;
1693 }
1694
1695 *rescan = 1;
1696 gd->fdt_blob = fdt_blob;
1697 return fdtdec_prepare_fdt();
1698 }
1699
1700 /*
1701 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1702 * not a FIT image containings DTB, but a single DTB. There is no need
1703 * to teard down DM and rescan the DT in this case.
1704 */
1705 *rescan = 0;
1706 return 0;
1707}
Jean-Jacques Hiblotf1d2bc92018-12-07 14:50:52 +01001708
Michael Pratt90c08fa2018-06-11 13:07:09 -06001709int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001710 phys_addr_t *basep, phys_size_t *sizep,
1711 struct bd_info *bd)
Michael Pratt90c08fa2018-06-11 13:07:09 -06001712{
1713 int addr_cells, size_cells;
1714 const u32 *cell, *end;
1715 u64 total_size, size, addr;
1716 int node, child;
1717 bool auto_size;
1718 int bank;
1719 int len;
1720
1721 debug("%s: board_id=%d\n", __func__, board_id);
1722 if (!area)
1723 area = "/memory";
1724 node = fdt_path_offset(blob, area);
1725 if (node < 0) {
1726 debug("No %s node found\n", area);
1727 return -ENOENT;
1728 }
1729
1730 cell = fdt_getprop(blob, node, "reg", &len);
1731 if (!cell) {
1732 debug("No reg property found\n");
1733 return -ENOENT;
1734 }
1735
1736 addr_cells = fdt_address_cells(blob, node);
1737 size_cells = fdt_size_cells(blob, node);
1738
1739 /* Check the board id and mask */
1740 for (child = fdt_first_subnode(blob, node);
1741 child >= 0;
1742 child = fdt_next_subnode(blob, child)) {
1743 int match_mask, match_value;
1744
1745 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1746 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1747
1748 if (match_value >= 0 &&
1749 ((board_id & match_mask) == match_value)) {
1750 /* Found matching mask */
1751 debug("Found matching mask %d\n", match_mask);
1752 node = child;
1753 cell = fdt_getprop(blob, node, "reg", &len);
1754 if (!cell) {
1755 debug("No memory-banks property found\n");
1756 return -EINVAL;
1757 }
1758 break;
1759 }
1760 }
1761 /* Note: if no matching subnode was found we use the parent node */
1762
1763 if (bd) {
1764 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1765 CONFIG_NR_DRAM_BANKS);
1766 }
1767
1768 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1769
1770 total_size = 0;
1771 end = cell + len / 4 - addr_cells - size_cells;
1772 debug("cell at %p, end %p\n", cell, end);
1773 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1774 if (cell > end)
1775 break;
1776 addr = 0;
1777 if (addr_cells == 2)
1778 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1779 addr += fdt32_to_cpu(*cell++);
1780 if (bd)
1781 bd->bi_dram[bank].start = addr;
1782 if (basep && !bank)
1783 *basep = (phys_addr_t)addr;
1784
1785 size = 0;
1786 if (size_cells == 2)
1787 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1788 size += fdt32_to_cpu(*cell++);
1789
1790 if (auto_size) {
1791 u64 new_size;
1792
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001793 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001794 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1795 if (new_size == size) {
1796 debug("OK\n");
1797 } else {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001798 debug("sized to %llx\n", new_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001799 size = new_size;
1800 }
1801 }
1802
1803 if (bd)
1804 bd->bi_dram[bank].size = size;
1805 total_size += size;
1806 }
1807
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001808 debug("Memory size %llu\n", total_size);
Michael Pratt90c08fa2018-06-11 13:07:09 -06001809 if (sizep)
1810 *sizep = (phys_size_t)total_size;
1811
1812 return 0;
1813}
Michael Pratt90c08fa2018-06-11 13:07:09 -06001814
Simon Glassb45122f2015-02-27 22:06:34 -07001815#endif /* !USE_HOSTCC */