blob: 4016bf3c1130401dca574c7f99dd15144f4e51a7 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass2d2af852011-10-24 19:15:32 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass1fbd6142023-04-25 10:27:21 -06004 *
5 * NOTE: Please do not add new devicetree-reading functionality into this file.
6 * Add it to the ofnode API instead, since that is compatible with livetree.
Simon Glass2d2af852011-10-24 19:15:32 +00007 */
8
Heiko Schocherd7b42322014-03-03 12:19:30 +01009#ifndef USE_HOSTCC
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020010#include <boot_fit.h>
Simon Glass1ab16922022-07-31 12:28:48 -060011#include <display_options.h>
Simon Glassf1037ad2015-11-29 13:17:54 -070012#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070013#include <hang.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070014#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070016#include <malloc.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <net.h>
Simon Glass84137372022-12-21 16:08:19 -070018#include <spl.h>
Simon Glass6eaea252019-08-01 09:46:48 -060019#include <env.h>
Simon Glass9908ad42014-07-23 06:55:09 -060020#include <errno.h>
Simon Glass2d2af852011-10-24 19:15:32 +000021#include <fdtdec.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020022#include <fdt_support.h>
Simon Glass1a974af2019-08-01 09:46:36 -060023#include <gzip.h>
Heinrich Schuchardt370a1762018-11-18 17:58:50 +010024#include <mapmem.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090025#include <linux/libfdt.h>
Jean-Jacques Hiblot5d96cab2017-09-15 12:57:31 +020026#include <serial.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060027#include <asm/global_data.h>
Simon Glass26b78b22015-02-27 22:06:34 -070028#include <asm/sections.h>
Simon Glassba8457b2022-09-06 20:27:19 -060029#include <dm/ofnode.h>
30#include <dm/of_extra.h>
Simon Glass9908ad42014-07-23 06:55:09 -060031#include <linux/ctype.h>
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +020032#include <linux/lzo.h>
Michal Simek6dd9cfd2020-07-10 13:34:44 +020033#include <linux/ioport.h>
Simon Glass2d2af852011-10-24 19:15:32 +000034
35DECLARE_GLOBAL_DATA_PTR;
36
37/*
38 * Here are the type we know about. One day we might allow drivers to
39 * register. For now we just put them here. The COMPAT macro allows us to
40 * turn this into a sparse list later, and keeps the ID with the name.
Simon Glass7c380302016-06-19 17:33:13 -060041 *
42 * NOTE: This list is basically a TODO list for things that need to be
43 * converted to driver model. So don't add new things here unless there is a
44 * good reason why driver-model conversion is infeasible. Examples include
45 * things which are used before driver model is available.
Simon Glass2d2af852011-10-24 19:15:32 +000046 */
47#define COMPAT(id, name) name
48static const char * const compat_names[COMPAT_COUNT] = {
Simon Glass65444982012-02-27 10:52:34 +000049 COMPAT(UNKNOWN, "<none>"),
Jimmy Zhang5983ef82012-04-02 13:18:52 +000050 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
51 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Jim Lin5d309e62012-07-29 20:53:29 +000052 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Thierry Redingf202e022014-12-09 22:25:09 -070053 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
Tom Warrenab0cc6b2015-03-04 16:36:00 -070054 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +000055 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautamf8745232013-09-14 14:02:48 +053056 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswataa773182013-02-25 01:13:01 +000057 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Piotr Wilczek24e368a2014-03-07 14:59:39 +010058 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Jaehoon Chunge3fb6fa2014-05-16 13:59:51 +090059 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Neil Armstrongf6625b42019-02-10 10:16:21 +000060 COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
Ajay Kumare24c5022014-09-05 16:53:33 +053061 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Simon Glassf79d5382014-11-12 22:42:21 -070062 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Bin Meng2bfd2642015-02-05 23:42:26 +080063 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
Marek Vasutf3f8fe22015-07-25 19:33:56 +020064 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
Marek Vasut17497232015-07-25 10:48:14 +020065 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
Marek Vasutf26c1ae2015-12-05 19:28:44 +010066 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
Simon Glass6f70c112016-06-19 17:33:14 -060067 COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
68 COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
69 COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"),
Ley Foon Tanb25ae722017-04-05 17:32:47 +080070 COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"),
71 COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"),
72 COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"),
73 COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"),
74 COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"),
75 COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"),
76 COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"),
77 COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"),
Tien Fong Cheebbfa5eb2017-09-25 16:40:03 +080078 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
79 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
Marek Vasutee4e36b2018-05-12 11:56:10 +020080 COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
Simon Glass2d2af852011-10-24 19:15:32 +000081};
82
Simon Glass8f9ce7e2021-12-16 20:59:34 -070083static const char *const fdt_src_name[] = {
84 [FDTSRC_SEPARATE] = "separate",
85 [FDTSRC_FIT] = "fit",
86 [FDTSRC_BOARD] = "board",
87 [FDTSRC_EMBED] = "embed",
88 [FDTSRC_ENV] = "env",
89};
90
91const char *fdtdec_get_srcname(void)
92{
93 return fdt_src_name[gd->fdt_src];
94}
95
Simon Glassb022ead2012-01-17 08:20:50 +000096const char *fdtdec_get_compatible(enum fdt_compat_id id)
97{
98 /* We allow reading of the 'unknown' ID for testing purposes */
99 assert(id >= 0 && id < COMPAT_COUNT);
100 return compat_names[id];
101}
102
Stephen Warren6dfe6182015-08-06 15:31:02 -0600103fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100104 const char *prop_name, int index, int na,
105 int ns, fdt_size_t *sizep,
106 bool translate)
Simon Glass2d2af852011-10-24 19:15:32 +0000107{
Stephen Warren6dfe6182015-08-06 15:31:02 -0600108 const fdt32_t *prop, *prop_end;
109 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
Simon Glass04c50d12015-08-02 18:13:50 -0600110 int len;
Stephen Warren6dfe6182015-08-06 15:31:02 -0600111 fdt_addr_t addr;
Simon Glass2d2af852011-10-24 19:15:32 +0000112
Simon Glassc8c86dd2012-07-12 05:25:01 +0000113 debug("%s: %s: ", __func__, prop_name);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600114
Stephen Warren6dfe6182015-08-06 15:31:02 -0600115 prop = fdt_getprop(blob, node, prop_name, &len);
116 if (!prop) {
117 debug("(not found)\n");
118 return FDT_ADDR_T_NONE;
119 }
120 prop_end = prop + (len / sizeof(*prop));
Simon Glassc8c86dd2012-07-12 05:25:01 +0000121
Stephen Warren6dfe6182015-08-06 15:31:02 -0600122 prop_addr = prop + (index * (na + ns));
123 prop_size = prop_addr + na;
124 prop_after_size = prop_size + ns;
125 if (prop_after_size > prop_end) {
126 debug("(not enough data: expected >= %d cells, got %d cells)\n",
127 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
128 return FDT_ADDR_T_NONE;
Simon Glassc8c86dd2012-07-12 05:25:01 +0000129 }
Stephen Warren6dfe6182015-08-06 15:31:02 -0600130
Vignesh R621cc092017-03-20 10:04:38 +0530131#if CONFIG_IS_ENABLED(OF_TRANSLATE)
Stephen Warren7d30e102016-08-05 09:47:51 -0600132 if (translate)
133 addr = fdt_translate_address(blob, node, prop_addr);
134 else
135#endif
136 addr = fdtdec_get_number(prop_addr, na);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600137
138 if (sizep) {
139 *sizep = fdtdec_get_number(prop_size, ns);
Simon Glass0b14dc72016-02-29 15:25:37 -0700140 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
141 (unsigned long long)*sizep);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600142 } else {
Simon Glass0b14dc72016-02-29 15:25:37 -0700143 debug("addr=%08llx\n", (unsigned long long)addr);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600144 }
145
146 return addr;
147}
148
149fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100150 int node, const char *prop_name,
151 int index, fdt_size_t *sizep,
152 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600153{
154 int na, ns;
155
156 debug("%s: ", __func__);
157
158 na = fdt_address_cells(blob, parent);
159 if (na < 1) {
160 debug("(bad #address-cells)\n");
161 return FDT_ADDR_T_NONE;
162 }
163
164 ns = fdt_size_cells(blob, parent);
Przemyslaw Marczak7b42f4d2015-09-30 13:14:50 +0200165 if (ns < 0) {
Stephen Warren6dfe6182015-08-06 15:31:02 -0600166 debug("(bad #size-cells)\n");
167 return FDT_ADDR_T_NONE;
168 }
169
170 debug("na=%d, ns=%d, ", na, ns);
171
172 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
Stephen Warren7d30e102016-08-05 09:47:51 -0600173 ns, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600174}
175
176fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100177 const char *prop_name, int index,
178 fdt_size_t *sizep,
179 bool translate)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600180{
181 int parent;
182
183 debug("%s: ", __func__);
184
185 parent = fdt_parent_offset(blob, node);
186 if (parent < 0) {
187 debug("(no parent found)\n");
188 return FDT_ADDR_T_NONE;
189 }
190
191 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
Stephen Warren7d30e102016-08-05 09:47:51 -0600192 index, sizep, translate);
Stephen Warren6dfe6182015-08-06 15:31:02 -0600193}
194
195fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100196 const char *prop_name, fdt_size_t *sizep)
Stephen Warren6dfe6182015-08-06 15:31:02 -0600197{
Stephen Warrenfda59162015-09-25 10:11:41 -0600198 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
199
Stephen Warren6dfe6182015-08-06 15:31:02 -0600200 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
201 sizeof(fdt_addr_t) / sizeof(fdt32_t),
Stephen Warren7d30e102016-08-05 09:47:51 -0600202 ns, sizep, false);
Simon Glass2d2af852011-10-24 19:15:32 +0000203}
204
Mario Sixbb3e06c2018-01-15 11:07:35 +0100205fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
Simon Glassf4299552013-03-19 04:58:51 +0000206{
207 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
208}
209
Bin Meng779847e2014-12-31 16:05:11 +0800210int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
211{
212 const char *list, *end;
213 int len;
214
215 list = fdt_getprop(blob, node, "compatible", &len);
216 if (!list)
217 return -ENOENT;
218
219 end = list + len;
220 while (list < end) {
Bin Meng779847e2014-12-31 16:05:11 +0800221 len = strlen(list);
222 if (len >= strlen("pciVVVV,DDDD")) {
Mario Six6abfbc82018-01-15 11:07:36 +0100223 char *s = strstr(list, "pci");
Bin Meng779847e2014-12-31 16:05:11 +0800224
225 /*
226 * check if the string is something like pciVVVV,DDDD.RR
227 * or just pciVVVV,DDDD
228 */
229 if (s && s[7] == ',' &&
230 (s[12] == '.' || s[12] == 0)) {
231 s += 3;
232 *vendor = simple_strtol(s, NULL, 16);
233
234 s += 5;
235 *device = simple_strtol(s, NULL, 16);
236
237 return 0;
238 }
Bin Meng779847e2014-12-31 16:05:11 +0800239 }
Bin Menga2822b82015-08-20 06:40:25 -0700240 list += (len + 1);
Bin Meng779847e2014-12-31 16:05:11 +0800241 }
242
243 return -ENOENT;
244}
245
Simon Glassc92aac12020-01-27 08:49:38 -0700246int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
Simon Glassf1037ad2015-11-29 13:17:54 -0700247 u32 *bar)
Bin Meng779847e2014-12-31 16:05:11 +0800248{
Bin Meng779847e2014-12-31 16:05:11 +0800249 int barnum;
Bin Meng779847e2014-12-31 16:05:11 +0800250
251 /* extract the bar number from fdt_pci_addr */
252 barnum = addr->phys_hi & 0xff;
Mario Six6abfbc82018-01-15 11:07:36 +0100253 if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
Bin Meng779847e2014-12-31 16:05:11 +0800254 return -EINVAL;
255
256 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
Simon Glassfde8b762021-08-01 18:54:18 -0600257
Simon Glassf1037ad2015-11-29 13:17:54 -0700258 *bar = dm_pci_read_bar32(dev, barnum);
Bin Meng779847e2014-12-31 16:05:11 +0800259
260 return 0;
261}
Suneel Garapati78d0bea2019-10-19 15:19:35 -0700262
263int fdtdec_get_pci_bus_range(const void *blob, int node,
264 struct fdt_resource *res)
265{
266 const u32 *values;
267 int len;
268
269 values = fdt_getprop(blob, node, "bus-range", &len);
270 if (!values || len < sizeof(*values) * 2)
271 return -EINVAL;
272
273 res->start = fdt32_to_cpu(*values++);
274 res->end = fdt32_to_cpu(*values);
275
276 return 0;
277}
Bin Meng779847e2014-12-31 16:05:11 +0800278
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000279uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100280 uint64_t default_val)
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000281{
Jean-Jacques Hiblot487f9172019-10-22 10:05:22 +0200282 const unaligned_fdt64_t *cell64;
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000283 int length;
284
285 cell64 = fdt_getprop(blob, node, prop_name, &length);
286 if (!cell64 || length < sizeof(*cell64))
287 return default_val;
288
289 return fdt64_to_cpu(*cell64);
290}
291
Simon Glass65444982012-02-27 10:52:34 +0000292int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000293{
294 const char *cell;
295
Simon Glass65444982012-02-27 10:52:34 +0000296 /*
297 * It should say "okay", so only allow that. Some fdts use "ok" but
298 * this is a bug. Please fix your device tree source file. See here
299 * for discussion:
300 *
301 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
302 */
Simon Glass2d2af852011-10-24 19:15:32 +0000303 cell = fdt_getprop(blob, node, "status", NULL);
304 if (cell)
Mario Six6abfbc82018-01-15 11:07:36 +0100305 return strcmp(cell, "okay") == 0;
Simon Glass65444982012-02-27 10:52:34 +0000306 return 1;
Simon Glass2d2af852011-10-24 19:15:32 +0000307}
308
Gerald Van Barencdac3392012-11-12 23:13:54 -0500309enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000310{
311 enum fdt_compat_id id;
312
313 /* Search our drivers */
314 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
Mario Six6abfbc82018-01-15 11:07:36 +0100315 if (fdt_node_check_compatible(blob, node,
316 compat_names[id]) == 0)
Simon Glass2d2af852011-10-24 19:15:32 +0000317 return id;
318 return COMPAT_UNKNOWN;
319}
320
Mario Sixbb3e06c2018-01-15 11:07:35 +0100321int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
Simon Glass2d2af852011-10-24 19:15:32 +0000322{
323 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
324}
325
Simon Glass2e979b12012-04-02 13:18:42 +0000326int fdtdec_next_compatible_subnode(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100327 enum fdt_compat_id id, int *depthp)
Simon Glass2e979b12012-04-02 13:18:42 +0000328{
329 do {
330 node = fdt_next_node(blob, node, depthp);
331 } while (*depthp > 1);
332
333 /* If this is a direct subnode, and compatible, return it */
334 if (*depthp == 1 && 0 == fdt_node_check_compatible(
335 blob, node, compat_names[id]))
336 return node;
337
338 return -FDT_ERR_NOTFOUND;
339}
340
Mario Sixbb3e06c2018-01-15 11:07:35 +0100341int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
342 int *upto)
Simon Glass2d2af852011-10-24 19:15:32 +0000343{
344#define MAX_STR_LEN 20
345 char str[MAX_STR_LEN + 20];
346 int node, err;
347
348 /* snprintf() is not available */
349 assert(strlen(name) < MAX_STR_LEN);
350 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glasse1d15ca2012-10-31 14:02:42 +0000351 node = fdt_path_offset(blob, str);
Simon Glass2d2af852011-10-24 19:15:32 +0000352 if (node < 0)
353 return node;
354 err = fdt_node_check_compatible(blob, node, compat_names[id]);
355 if (err < 0)
356 return err;
Simon Glass65444982012-02-27 10:52:34 +0000357 if (err)
358 return -FDT_ERR_NOTFOUND;
359 (*upto)++;
360 return node;
Simon Glass2d2af852011-10-24 19:15:32 +0000361}
362
Simon Glassb022ead2012-01-17 08:20:50 +0000363int fdtdec_find_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100364 enum fdt_compat_id id, int *node_list,
365 int maxcount)
Simon Glassb022ead2012-01-17 08:20:50 +0000366{
Simon Glass1f772662012-02-03 15:13:53 +0000367 memset(node_list, '\0', sizeof(*node_list) * maxcount);
368
369 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
370}
371
372/* TODO: Can we tighten this code up a little? */
373int fdtdec_add_aliases_for_id(const void *blob, const char *name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100374 enum fdt_compat_id id, int *node_list,
375 int maxcount)
Simon Glass1f772662012-02-03 15:13:53 +0000376{
Simon Glassb022ead2012-01-17 08:20:50 +0000377 int name_len = strlen(name);
378 int nodes[maxcount];
379 int num_found = 0;
380 int offset, node;
381 int alias_node;
382 int count;
383 int i, j;
384
385 /* find the alias node if present */
386 alias_node = fdt_path_offset(blob, "/aliases");
387
388 /*
389 * start with nothing, and we can assume that the root node can't
390 * match
391 */
392 memset(nodes, '\0', sizeof(nodes));
393
394 /* First find all the compatible nodes */
395 for (node = count = 0; node >= 0 && count < maxcount;) {
396 node = fdtdec_next_compatible(blob, node, id);
397 if (node >= 0)
398 nodes[count++] = node;
399 }
400 if (node >= 0)
401 debug("%s: warning: maxcount exceeded with alias '%s'\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100402 __func__, name);
Simon Glassb022ead2012-01-17 08:20:50 +0000403
404 /* Now find all the aliases */
Simon Glassb022ead2012-01-17 08:20:50 +0000405 for (offset = fdt_first_property_offset(blob, alias_node);
406 offset > 0;
407 offset = fdt_next_property_offset(blob, offset)) {
408 const struct fdt_property *prop;
409 const char *path;
410 int number;
411 int found;
412
413 node = 0;
414 prop = fdt_get_property_by_offset(blob, offset, NULL);
415 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
416 if (prop->len && 0 == strncmp(path, name, name_len))
417 node = fdt_path_offset(blob, prop->data);
418 if (node <= 0)
419 continue;
420
421 /* Get the alias number */
Simon Glassff9b9032021-07-24 09:03:30 -0600422 number = dectoul(path + name_len, NULL);
Simon Glassb022ead2012-01-17 08:20:50 +0000423 if (number < 0 || number >= maxcount) {
424 debug("%s: warning: alias '%s' is out of range\n",
Mario Sixbb3e06c2018-01-15 11:07:35 +0100425 __func__, path);
Simon Glassb022ead2012-01-17 08:20:50 +0000426 continue;
427 }
428
429 /* Make sure the node we found is actually in our list! */
430 found = -1;
431 for (j = 0; j < count; j++)
432 if (nodes[j] == node) {
433 found = j;
434 break;
435 }
436
437 if (found == -1) {
438 debug("%s: warning: alias '%s' points to a node "
439 "'%s' that is missing or is not compatible "
440 " with '%s'\n", __func__, path,
441 fdt_get_name(blob, node, NULL),
442 compat_names[id]);
443 continue;
444 }
445
446 /*
447 * Add this node to our list in the right place, and mark
448 * it as done.
449 */
450 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glass1f772662012-02-03 15:13:53 +0000451 if (node_list[number]) {
452 debug("%s: warning: alias '%s' requires that "
453 "a node be placed in the list in a "
454 "position which is already filled by "
455 "node '%s'\n", __func__, path,
456 fdt_get_name(blob, node, NULL));
457 continue;
458 }
Simon Glassb022ead2012-01-17 08:20:50 +0000459 node_list[number] = node;
460 if (number >= num_found)
461 num_found = number + 1;
462 }
Simon Glass1f772662012-02-03 15:13:53 +0000463 nodes[found] = 0;
Simon Glassb022ead2012-01-17 08:20:50 +0000464 }
465
466 /* Add any nodes not mentioned by an alias */
467 for (i = j = 0; i < maxcount; i++) {
468 if (!node_list[i]) {
469 for (; j < maxcount; j++)
470 if (nodes[j] &&
Mario Sixbb3e06c2018-01-15 11:07:35 +0100471 fdtdec_get_is_enabled(blob, nodes[j]))
Simon Glassb022ead2012-01-17 08:20:50 +0000472 break;
473
474 /* Have we run out of nodes to add? */
475 if (j == maxcount)
476 break;
477
478 assert(!node_list[i]);
479 node_list[i] = nodes[j++];
480 if (i >= num_found)
481 num_found = i + 1;
482 }
483 }
484
485 return num_found;
486}
487
Simon Glass9908ad42014-07-23 06:55:09 -0600488int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
489 int *seqp)
490{
491 int base_len = strlen(base);
492 const char *find_name;
493 int find_namelen;
494 int prop_offset;
495 int aliases;
496
497 find_name = fdt_get_name(blob, offset, &find_namelen);
498 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
499
500 aliases = fdt_path_offset(blob, "/aliases");
501 for (prop_offset = fdt_first_property_offset(blob, aliases);
502 prop_offset > 0;
503 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
504 const char *prop;
505 const char *name;
506 const char *slash;
Simon Glass4aaa4602015-06-23 15:39:08 -0600507 int len, val;
Simon Glass9908ad42014-07-23 06:55:09 -0600508
509 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
510 debug(" - %s, %s\n", name, prop);
511 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
512 strncmp(name, base, base_len))
513 continue;
514
515 slash = strrchr(prop, '/');
516 if (strcmp(slash + 1, find_name))
517 continue;
Aswath Govindraju3dd81252020-12-03 10:55:45 +0530518
519 /*
520 * Adding an extra check to distinguish DT nodes with
521 * same name
522 */
Simon Glass42d97e52022-12-21 16:08:28 -0700523 if (IS_ENABLED(CONFIG_PHANDLE_CHECK_SEQ)) {
524 if (fdt_get_phandle(blob, offset) !=
525 fdt_get_phandle(blob, fdt_path_offset(blob, prop)))
526 continue;
527 }
Aswath Govindraju3dd81252020-12-03 10:55:45 +0530528
Simon Glass4aaa4602015-06-23 15:39:08 -0600529 val = trailing_strtol(name);
530 if (val != -1) {
531 *seqp = val;
532 debug("Found seq %d\n", *seqp);
533 return 0;
Simon Glass9908ad42014-07-23 06:55:09 -0600534 }
535 }
536
537 debug("Not found\n");
538 return -ENOENT;
539}
540
Michal Simek4b586672019-01-31 16:30:58 +0100541int fdtdec_get_alias_highest_id(const void *blob, const char *base)
542{
543 int base_len = strlen(base);
544 int prop_offset;
545 int aliases;
546 int max = -1;
547
548 debug("Looking for highest alias id for '%s'\n", base);
549
550 aliases = fdt_path_offset(blob, "/aliases");
551 for (prop_offset = fdt_first_property_offset(blob, aliases);
552 prop_offset > 0;
553 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
554 const char *prop;
555 const char *name;
556 int len, val;
557
558 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
559 debug(" - %s, %s\n", name, prop);
560 if (*prop != '/' || prop[len - 1] ||
561 strncmp(name, base, base_len))
562 continue;
563
564 val = trailing_strtol(name);
565 if (val > max) {
566 debug("Found seq %d\n", val);
567 max = val;
568 }
569 }
570
571 return max;
572}
573
Simon Glass088dccb2015-10-17 19:41:14 -0600574const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
Simon Glass1e374fb2014-09-04 16:27:24 -0600575{
Simon Glass1e374fb2014-09-04 16:27:24 -0600576 int chosen_node;
Simon Glass1e374fb2014-09-04 16:27:24 -0600577
578 if (!blob)
Simon Glass088dccb2015-10-17 19:41:14 -0600579 return NULL;
Simon Glass1e374fb2014-09-04 16:27:24 -0600580 chosen_node = fdt_path_offset(blob, "/chosen");
Simon Glass088dccb2015-10-17 19:41:14 -0600581 return fdt_getprop(blob, chosen_node, name, NULL);
582}
583
584int fdtdec_get_chosen_node(const void *blob, const char *name)
585{
586 const char *prop;
587
588 prop = fdtdec_get_chosen_prop(blob, name);
Simon Glass1e374fb2014-09-04 16:27:24 -0600589 if (!prop)
590 return -FDT_ERR_NOTFOUND;
591 return fdt_path_offset(blob, prop);
592}
593
Simon Glass84137372022-12-21 16:08:19 -0700594/**
595 * fdtdec_prepare_fdt() - Check we have a valid fdt available to control U-Boot
596 *
Simon Glass2c62a942022-12-21 16:08:20 -0700597 * @blob: Blob to check
598 *
Simon Glass84137372022-12-21 16:08:19 -0700599 * If not, a message is printed to the console if the console is ready.
600 *
601 * Return: 0 if all ok, -ENOENT if not
Simon Glass2d2af852011-10-24 19:15:32 +0000602 */
Simon Glass2c62a942022-12-21 16:08:20 -0700603static int fdtdec_prepare_fdt(const void *blob)
Simon Glass2d2af852011-10-24 19:15:32 +0000604{
Simon Glass2c62a942022-12-21 16:08:20 -0700605 if (!blob || ((uintptr_t)blob & 3) || fdt_check_header(blob)) {
Simon Glass84137372022-12-21 16:08:19 -0700606 if (spl_phase() <= PHASE_SPL) {
607 puts("Missing DTB\n");
608 } else {
609 printf("No valid device tree binary found at %p\n",
Simon Glass2c62a942022-12-21 16:08:20 -0700610 blob);
611 if (_DEBUG && blob) {
612 printf("fdt_blob=%p\n", blob);
613 print_buffer((ulong)blob, blob, 4, 32, 0);
Simon Glass84137372022-12-21 16:08:19 -0700614 }
Simon Glass63884ec2015-06-23 15:39:09 -0600615 }
Simon Glass84137372022-12-21 16:08:19 -0700616 return -ENOENT;
Simon Glass1691f692012-03-28 10:08:24 +0000617 }
Simon Glass84137372022-12-21 16:08:19 -0700618
Simon Glass2d2af852011-10-24 19:15:32 +0000619 return 0;
620}
Simon Glassc4697362012-02-27 10:52:35 +0000621
Simon Glassfa3f52d2022-12-21 16:08:18 -0700622int fdtdec_check_fdt(void)
623{
624 /*
625 * We must have an FDT, but we cannot panic() yet since the console
626 * is not ready. So for now, just assert(). Boards which need an early
627 * FDT (prior to console ready) will need to make their own
628 * arrangements and do their own checks.
629 */
Simon Glass2c62a942022-12-21 16:08:20 -0700630 assert(!fdtdec_prepare_fdt(gd->fdt_blob));
Simon Glassfa3f52d2022-12-21 16:08:18 -0700631 return 0;
632}
633
Simon Glassc4697362012-02-27 10:52:35 +0000634int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
635{
636 const u32 *phandle;
637 int lookup;
638
Simon Glassc8c86dd2012-07-12 05:25:01 +0000639 debug("%s: %s\n", __func__, prop_name);
Simon Glassc4697362012-02-27 10:52:35 +0000640 phandle = fdt_getprop(blob, node, prop_name, NULL);
641 if (!phandle)
642 return -FDT_ERR_NOTFOUND;
643
644 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
645 return lookup;
646}
647
648/**
649 * Look up a property in a node and check that it has a minimum length.
650 *
651 * @param blob FDT blob
652 * @param node node to examine
653 * @param prop_name name of property to find
654 * @param min_len minimum property length in bytes
655 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
656 found, or -FDT_ERR_BADLAYOUT if not enough data
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100657 * Return: pointer to cell, which is only valid if err == 0
Simon Glassc4697362012-02-27 10:52:35 +0000658 */
659static const void *get_prop_check_min_len(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100660 const char *prop_name, int min_len,
661 int *err)
Simon Glassc4697362012-02-27 10:52:35 +0000662{
663 const void *cell;
664 int len;
665
666 debug("%s: %s\n", __func__, prop_name);
667 cell = fdt_getprop(blob, node, prop_name, &len);
668 if (!cell)
669 *err = -FDT_ERR_NOTFOUND;
670 else if (len < min_len)
671 *err = -FDT_ERR_BADLAYOUT;
672 else
673 *err = 0;
674 return cell;
675}
676
677int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100678 u32 *array, int count)
Simon Glassc4697362012-02-27 10:52:35 +0000679{
680 const u32 *cell;
Mario Six6abfbc82018-01-15 11:07:36 +0100681 int err = 0;
Simon Glassc4697362012-02-27 10:52:35 +0000682
683 debug("%s: %s\n", __func__, prop_name);
684 cell = get_prop_check_min_len(blob, node, prop_name,
685 sizeof(u32) * count, &err);
686 if (!err) {
Mario Six6abfbc82018-01-15 11:07:36 +0100687 int i;
688
Simon Glassc4697362012-02-27 10:52:35 +0000689 for (i = 0; i < count; i++)
690 array[i] = fdt32_to_cpu(cell[i]);
691 }
692 return err;
693}
694
Simon Glasseda0c3f2014-11-10 18:00:19 -0700695int fdtdec_get_int_array_count(const void *blob, int node,
696 const char *prop_name, u32 *array, int count)
697{
698 const u32 *cell;
699 int len, elems;
700 int i;
701
702 debug("%s: %s\n", __func__, prop_name);
703 cell = fdt_getprop(blob, node, prop_name, &len);
704 if (!cell)
705 return -FDT_ERR_NOTFOUND;
706 elems = len / sizeof(u32);
707 if (count > elems)
708 count = elems;
709 for (i = 0; i < count; i++)
710 array[i] = fdt32_to_cpu(cell[i]);
711
712 return count;
713}
714
Simon Glass744ec232012-04-02 13:18:41 +0000715const u32 *fdtdec_locate_array(const void *blob, int node,
716 const char *prop_name, int count)
717{
718 const u32 *cell;
719 int err;
720
721 cell = get_prop_check_min_len(blob, node, prop_name,
722 sizeof(u32) * count, &err);
723 return err ? NULL : cell;
724}
725
Simon Glassc4697362012-02-27 10:52:35 +0000726int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
727{
728 const s32 *cell;
729 int len;
730
731 debug("%s: %s\n", __func__, prop_name);
732 cell = fdt_getprop(blob, node, prop_name, &len);
733 return cell != NULL;
734}
Simon Glass0d83c4d2012-02-27 10:52:36 +0000735
Simon Glassb491e9c2015-01-05 20:05:26 -0700736int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
737 const char *list_name,
738 const char *cells_name,
739 int cell_count, int index,
740 struct fdtdec_phandle_args *out_args)
741{
742 const __be32 *list, *list_end;
743 int rc = 0, size, cur_index = 0;
744 uint32_t count = 0;
745 int node = -1;
746 int phandle;
747
748 /* Retrieve the phandle list property */
749 list = fdt_getprop(blob, src_node, list_name, &size);
750 if (!list)
751 return -ENOENT;
752 list_end = list + size / sizeof(*list);
753
754 /* Loop over the phandles until all the requested entry is found */
755 while (list < list_end) {
756 rc = -EINVAL;
757 count = 0;
758
759 /*
760 * If phandle is 0, then it is an empty entry with no
761 * arguments. Skip forward to the next entry.
762 */
763 phandle = be32_to_cpup(list++);
764 if (phandle) {
765 /*
766 * Find the provider node and parse the #*-cells
767 * property to determine the argument length.
768 *
769 * This is not needed if the cell count is hard-coded
770 * (i.e. cells_name not set, but cell_count is set),
771 * except when we're going to return the found node
772 * below.
773 */
774 if (cells_name || cur_index == index) {
775 node = fdt_node_offset_by_phandle(blob,
776 phandle);
Patrick Delaunayf9cbd1a2020-09-25 09:41:15 +0200777 if (node < 0) {
Simon Glassb491e9c2015-01-05 20:05:26 -0700778 debug("%s: could not find phandle\n",
779 fdt_get_name(blob, src_node,
780 NULL));
781 goto err;
782 }
783 }
784
785 if (cells_name) {
786 count = fdtdec_get_int(blob, node, cells_name,
787 -1);
788 if (count == -1) {
789 debug("%s: could not get %s for %s\n",
790 fdt_get_name(blob, src_node,
791 NULL),
792 cells_name,
793 fdt_get_name(blob, node,
794 NULL));
795 goto err;
796 }
797 } else {
798 count = cell_count;
799 }
800
801 /*
802 * Make sure that the arguments actually fit in the
803 * remaining property data length
804 */
805 if (list + count > list_end) {
806 debug("%s: arguments longer than property\n",
807 fdt_get_name(blob, src_node, NULL));
808 goto err;
809 }
810 }
811
812 /*
813 * All of the error cases above bail out of the loop, so at
814 * this point, the parsing is successful. If the requested
815 * index matches, then fill the out_args structure and return,
816 * or return -ENOENT for an empty entry.
817 */
818 rc = -ENOENT;
819 if (cur_index == index) {
820 if (!phandle)
821 goto err;
822
823 if (out_args) {
824 int i;
825
826 if (count > MAX_PHANDLE_ARGS) {
827 debug("%s: too many arguments %d\n",
828 fdt_get_name(blob, src_node,
829 NULL), count);
830 count = MAX_PHANDLE_ARGS;
831 }
832 out_args->node = node;
833 out_args->args_count = count;
834 for (i = 0; i < count; i++) {
835 out_args->args[i] =
836 be32_to_cpup(list++);
837 }
838 }
839
840 /* Found it! return success */
841 return 0;
842 }
843
844 node = -1;
845 list += count;
846 cur_index++;
847 }
848
849 /*
850 * Result will be one of:
851 * -ENOENT : index is for empty phandle
852 * -EINVAL : parsing error on data
853 * [1..n] : Number of phandle (count mode; when index = -1)
854 */
855 rc = index < 0 ? cur_index : -ENOENT;
856 err:
857 return rc;
858}
859
Anton Stafff2305ec2012-04-17 09:01:28 +0000860int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100861 u8 *array, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000862{
863 const u8 *cell;
864 int err;
865
866 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
867 if (!err)
868 memcpy(array, cell, count);
869 return err;
870}
871
872const u8 *fdtdec_locate_byte_array(const void *blob, int node,
Mario Sixbb3e06c2018-01-15 11:07:35 +0100873 const char *prop_name, int count)
Anton Stafff2305ec2012-04-17 09:01:28 +0000874{
875 const u8 *cell;
876 int err;
877
878 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
879 if (err)
880 return NULL;
881 return cell;
882}
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000883
Simon Glass9ffbe332015-03-05 12:25:14 -0700884u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
Thierry Redinga937b802014-08-26 17:33:53 +0200885{
886 u64 number = 0;
887
888 while (cells--)
889 number = (number << 32) | fdt32_to_cpu(*ptr++);
890
891 return number;
892}
893
894int fdt_get_resource(const void *fdt, int node, const char *property,
895 unsigned int index, struct fdt_resource *res)
896{
897 const fdt32_t *ptr, *end;
898 int na, ns, len, parent;
899 unsigned int i = 0;
900
901 parent = fdt_parent_offset(fdt, node);
902 if (parent < 0)
903 return parent;
904
905 na = fdt_address_cells(fdt, parent);
906 ns = fdt_size_cells(fdt, parent);
907
908 ptr = fdt_getprop(fdt, node, property, &len);
909 if (!ptr)
910 return len;
911
912 end = ptr + len / sizeof(*ptr);
913
914 while (ptr + na + ns <= end) {
915 if (i == index) {
Patrick Delaunay2a28c6e2021-04-06 09:38:06 +0200916 if (CONFIG_IS_ENABLED(OF_TRANSLATE))
917 res->start = fdt_translate_address(fdt, node, ptr);
918 else
919 res->start = fdtdec_get_number(ptr, na);
920
Mario Six6abfbc82018-01-15 11:07:36 +0100921 res->end = res->start;
Thierry Redinga937b802014-08-26 17:33:53 +0200922 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
923 return 0;
924 }
925
926 ptr += na + ns;
927 i++;
928 }
929
930 return -FDT_ERR_NOTFOUND;
931}
932
933int fdt_get_named_resource(const void *fdt, int node, const char *property,
934 const char *prop_names, const char *name,
935 struct fdt_resource *res)
936{
937 int index;
938
Simon Glassb0ea7402016-10-02 17:59:28 -0600939 index = fdt_stringlist_search(fdt, node, prop_names, name);
Thierry Redinga937b802014-08-26 17:33:53 +0200940 if (index < 0)
941 return index;
942
943 return fdt_get_resource(fdt, node, property, index, res);
944}
Thierry Reding24856312014-08-26 17:33:54 +0200945
Simon Glassb24e8642015-04-14 21:03:21 -0600946static int decode_timing_property(const void *blob, int node, const char *name,
947 struct timing_entry *result)
948{
949 int length, ret = 0;
950 const u32 *prop;
951
952 prop = fdt_getprop(blob, node, name, &length);
953 if (!prop) {
954 debug("%s: could not find property %s\n",
955 fdt_get_name(blob, node, NULL), name);
956 return length;
957 }
958
959 if (length == sizeof(u32)) {
960 result->typ = fdtdec_get_int(blob, node, name, 0);
961 result->min = result->typ;
962 result->max = result->typ;
963 } else {
964 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
965 }
966
967 return ret;
968}
969
970int fdtdec_decode_display_timing(const void *blob, int parent, int index,
971 struct display_timing *dt)
972{
973 int i, node, timings_node;
974 u32 val = 0;
975 int ret = 0;
976
977 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
978 if (timings_node < 0)
979 return timings_node;
980
981 for (i = 0, node = fdt_first_subnode(blob, timings_node);
982 node > 0 && i != index;
983 node = fdt_next_subnode(blob, node))
984 i++;
985
986 if (node < 0)
987 return node;
988
989 memset(dt, 0, sizeof(*dt));
990
991 ret |= decode_timing_property(blob, node, "hback-porch",
992 &dt->hback_porch);
993 ret |= decode_timing_property(blob, node, "hfront-porch",
994 &dt->hfront_porch);
995 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
996 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
997 ret |= decode_timing_property(blob, node, "vback-porch",
998 &dt->vback_porch);
999 ret |= decode_timing_property(blob, node, "vfront-porch",
1000 &dt->vfront_porch);
1001 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1002 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1003 ret |= decode_timing_property(blob, node, "clock-frequency",
1004 &dt->pixelclock);
1005
1006 dt->flags = 0;
1007 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1008 if (val != -1) {
1009 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1010 DISPLAY_FLAGS_VSYNC_LOW;
1011 }
1012 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1013 if (val != -1) {
1014 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1015 DISPLAY_FLAGS_HSYNC_LOW;
1016 }
1017 val = fdtdec_get_int(blob, node, "de-active", -1);
1018 if (val != -1) {
1019 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1020 DISPLAY_FLAGS_DE_LOW;
1021 }
1022 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1023 if (val != -1) {
1024 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1025 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1026 }
1027
1028 if (fdtdec_get_bool(blob, node, "interlaced"))
1029 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1030 if (fdtdec_get_bool(blob, node, "doublescan"))
1031 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1032 if (fdtdec_get_bool(blob, node, "doubleclk"))
1033 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1034
Simon Glass6eb90e12016-05-05 07:28:21 -06001035 return ret;
Simon Glassb24e8642015-04-14 21:03:21 -06001036}
1037
Michal Simek43ba85b2020-07-10 13:16:50 +02001038int fdtdec_setup_mem_size_base(void)
Nathan Rossiba97b722016-12-19 00:03:34 +10001039{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001040 int ret;
1041 ofnode mem;
1042 struct resource res;
Nathan Rossiba97b722016-12-19 00:03:34 +10001043
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001044 mem = ofnode_path("/memory");
1045 if (!ofnode_valid(mem)) {
Nathan Rossiba97b722016-12-19 00:03:34 +10001046 debug("%s: Missing /memory node\n", __func__);
1047 return -EINVAL;
1048 }
1049
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001050 ret = ofnode_read_resource(mem, 0, &res);
Nathan Rossiba97b722016-12-19 00:03:34 +10001051 if (ret != 0) {
1052 debug("%s: Unable to decode first memory bank\n", __func__);
1053 return -EINVAL;
1054 }
1055
1056 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
Siva Durga Prasad Paladugu94a1d522018-07-16 15:56:10 +05301057 gd->ram_base = (unsigned long)res.start;
Simon Glass640b78f2017-05-27 07:38:13 -06001058 debug("%s: Initial DRAM size %llx\n", __func__,
1059 (unsigned long long)gd->ram_size);
Nathan Rossiba97b722016-12-19 00:03:34 +10001060
1061 return 0;
1062}
1063
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001064ofnode get_next_memory_node(ofnode mem)
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001065{
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001066 do {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001067 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
Simon Glass2e4938b2022-09-06 20:27:17 -06001068 } while (!ofnode_is_enabled(mem));
Jens Wiklandere2da4c92018-07-13 12:12:11 +02001069
1070 return mem;
1071}
1072
Michal Simekf7833292020-07-10 13:16:49 +02001073int fdtdec_setup_memory_banksize(void)
Nathan Rossiba97b722016-12-19 00:03:34 +10001074{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001075 int bank, ret, reg = 0;
1076 struct resource res;
1077 ofnode mem = ofnode_null();
Nathan Rossiba97b722016-12-19 00:03:34 +10001078
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001079 mem = get_next_memory_node(mem);
1080 if (!ofnode_valid(mem)) {
Michal Simek0bd065c2018-10-03 15:53:52 +02001081 debug("%s: Missing /memory node\n", __func__);
1082 return -EINVAL;
1083 }
Nathan Rossiba97b722016-12-19 00:03:34 +10001084
1085 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001086 ret = ofnode_read_resource(mem, reg++, &res);
1087 if (ret < 0) {
Marek Vasut7f0293a2017-11-27 05:32:42 +01001088 reg = 0;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001089 mem = get_next_memory_node(mem);
Marek Vasut253c1a42020-09-12 12:42:52 +02001090 if (!ofnode_valid(mem))
Michal Simek0bd065c2018-10-03 15:53:52 +02001091 break;
1092
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001093 ret = ofnode_read_resource(mem, reg++, &res);
1094 if (ret < 0)
Michal Simek0bd065c2018-10-03 15:53:52 +02001095 break;
1096 }
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001097
1098 if (ret != 0)
Michal Simek0bd065c2018-10-03 15:53:52 +02001099 return -EINVAL;
Nathan Rossiba97b722016-12-19 00:03:34 +10001100
1101 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1102 gd->bd->bi_dram[bank].size =
1103 (phys_size_t)(res.end - res.start + 1);
1104
1105 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1106 __func__, bank,
1107 (unsigned long long)gd->bd->bi_dram[bank].start,
1108 (unsigned long long)gd->bd->bi_dram[bank].size);
1109 }
1110
1111 return 0;
1112}
Michal Simek9d2cf072020-07-09 14:09:52 +02001113
1114int fdtdec_setup_mem_size_base_lowest(void)
1115{
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001116 int bank, ret, reg = 0;
1117 struct resource res;
Michal Simek9d2cf072020-07-09 14:09:52 +02001118 unsigned long base;
1119 phys_size_t size;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001120 ofnode mem = ofnode_null();
Michal Simek9d2cf072020-07-09 14:09:52 +02001121
1122 gd->ram_base = (unsigned long)~0;
1123
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001124 mem = get_next_memory_node(mem);
1125 if (!ofnode_valid(mem)) {
Michal Simek9d2cf072020-07-09 14:09:52 +02001126 debug("%s: Missing /memory node\n", __func__);
1127 return -EINVAL;
1128 }
1129
1130 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001131 ret = ofnode_read_resource(mem, reg++, &res);
1132 if (ret < 0) {
Michal Simek9d2cf072020-07-09 14:09:52 +02001133 reg = 0;
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001134 mem = get_next_memory_node(mem);
Marek Vasut253c1a42020-09-12 12:42:52 +02001135 if (!ofnode_valid(mem))
Michal Simek9d2cf072020-07-09 14:09:52 +02001136 break;
1137
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001138 ret = ofnode_read_resource(mem, reg++, &res);
1139 if (ret < 0)
Michal Simek9d2cf072020-07-09 14:09:52 +02001140 break;
1141 }
Michal Simek6dd9cfd2020-07-10 13:34:44 +02001142
Michal Simek9d2cf072020-07-09 14:09:52 +02001143 if (ret != 0)
1144 return -EINVAL;
1145
1146 base = (unsigned long)res.start;
1147 size = (phys_size_t)(res.end - res.start + 1);
1148
1149 if (gd->ram_base > base && size) {
1150 gd->ram_base = base;
1151 gd->ram_size = size;
1152 debug("%s: Initial DRAM base %lx size %lx\n",
1153 __func__, base, (unsigned long)size);
1154 }
1155 }
1156
1157 return 0;
1158}
Nathan Rossiba97b722016-12-19 00:03:34 +10001159
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001160static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1161{
Simon Glass69daf5a2021-12-16 20:59:25 -07001162#if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1163 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
Marek Vasutaeaa29d2019-03-08 16:06:55 +01001164 size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
Marek Vasut42e5c032019-03-13 21:11:22 +01001165 bool gzip = 0, lzo = 0;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001166 ulong sz_in = sz_src;
1167 void *dst;
1168 int rc;
1169
1170 if (CONFIG_IS_ENABLED(GZIP))
Marek Vasut42e5c032019-03-13 21:11:22 +01001171 if (gzip_parse_header(src, sz_in) >= 0)
1172 gzip = 1;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001173 if (CONFIG_IS_ENABLED(LZO))
Marek Vasut42e5c032019-03-13 21:11:22 +01001174 if (!gzip && lzop_is_valid_header(src))
1175 lzo = 1;
1176
1177 if (!gzip && !lzo)
1178 return -EBADMSG;
1179
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001180
1181 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1182 dst = malloc(sz_out);
1183 if (!dst) {
1184 puts("uncompress_blob: Unable to allocate memory\n");
1185 return -ENOMEM;
1186 }
1187 } else {
Simon Glass69daf5a2021-12-16 20:59:25 -07001188# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001189 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
Simon Glass69daf5a2021-12-16 20:59:25 -07001190# else
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001191 return -ENOTSUPP;
Simon Glass69daf5a2021-12-16 20:59:25 -07001192# endif
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001193 }
1194
Marek Vasut42e5c032019-03-13 21:11:22 +01001195 if (CONFIG_IS_ENABLED(GZIP) && gzip)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001196 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
Marek Vasut42e5c032019-03-13 21:11:22 +01001197 else if (CONFIG_IS_ENABLED(LZO) && lzo)
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001198 rc = lzop_decompress(src, sz_in, dst, &sz_out);
Marek Vasut42e5c032019-03-13 21:11:22 +01001199 else
1200 hang();
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001201
1202 if (rc < 0) {
1203 /* not a valid compressed blob */
1204 puts("uncompress_blob: Unable to uncompress\n");
1205 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1206 free(dst);
1207 return -EBADMSG;
1208 }
1209 *dstp = dst;
Simon Glass69daf5a2021-12-16 20:59:25 -07001210#else
1211 *dstp = (void *)src;
Marek Vasut5bd49fb2018-10-18 20:37:05 +02001212 *dstp = (void *)src;
Simon Glass69daf5a2021-12-16 20:59:25 -07001213#endif
Marek Vasut5bd49fb2018-10-18 20:37:05 +02001214 return 0;
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001215}
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001216
Simon Glass28b76512021-12-16 20:59:31 -07001217/**
1218 * fdt_find_separate() - Find a devicetree at the end of the image
1219 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001220 * Return: pointer to FDT blob
Rob Clark974dcac2018-01-10 11:34:37 +01001221 */
Simon Glass28b76512021-12-16 20:59:31 -07001222static void *fdt_find_separate(void)
Rob Clark974dcac2018-01-10 11:34:37 +01001223{
1224 void *fdt_blob = NULL;
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001225
Simon Glassdf5f4382022-02-28 12:08:24 -07001226 if (IS_ENABLED(CONFIG_SANDBOX))
1227 return NULL;
1228
Rob Clark974dcac2018-01-10 11:34:37 +01001229#ifdef CONFIG_SPL_BUILD
1230 /* FDT is at end of BSS unless it is in a different memory region */
Andrew Abbottb449fed2022-04-16 10:12:31 +10001231 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
Shiji Yangeff11fa2023-08-03 09:47:17 +08001232 fdt_blob = (ulong *)_image_binary_end;
Rob Clark974dcac2018-01-10 11:34:37 +01001233 else
Shiji Yangeff11fa2023-08-03 09:47:17 +08001234 fdt_blob = (ulong *)__bss_end;
Rob Clark974dcac2018-01-10 11:34:37 +01001235#else
1236 /* FDT is at end of image */
Shiji Yangeff11fa2023-08-03 09:47:17 +08001237 fdt_blob = (ulong *)_end;
Simon Glass7e87afb2022-12-21 16:08:21 -07001238
1239 if (_DEBUG && !fdtdec_prepare_fdt(fdt_blob)) {
1240 int stack_ptr;
1241 const void *top = fdt_blob + fdt_totalsize(fdt_blob);
1242
1243 /*
1244 * Perform a sanity check on the memory layout. If this fails,
1245 * it indicates that the device tree is positioned above the
1246 * global data pointer or the stack pointer. This should not
1247 * happen.
1248 *
1249 * If this fails, check that SYS_INIT_SP_ADDR has enough space
1250 * below it for SYS_MALLOC_F_LEN and global_data, as well as the
1251 * stack, without overwriting the device tree or U-Boot itself.
1252 * Since the device tree is sitting at _end (the start of the
1253 * BSS region), we need the top of the device tree to be below
1254 * any memory allocated by board_init_f_alloc_reserve().
1255 */
1256 if (top > (void *)gd || top > (void *)&stack_ptr) {
1257 printf("FDT %p gd %p\n", fdt_blob, gd);
1258 panic("FDT overlap");
1259 }
1260 }
Rob Clark974dcac2018-01-10 11:34:37 +01001261#endif
Ilias Apalodimasab5348a2021-10-26 09:12:33 +03001262
Rob Clark974dcac2018-01-10 11:34:37 +01001263 return fdt_blob;
1264}
Rob Clark974dcac2018-01-10 11:34:37 +01001265
Thierry Reding1bb59a92019-04-15 11:32:13 +02001266int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1267{
1268 const char *path;
1269 int offset, err;
1270
1271 if (!is_valid_ethaddr(mac))
1272 return -EINVAL;
1273
1274 path = fdt_get_alias(fdt, "ethernet");
1275 if (!path)
1276 return 0;
1277
1278 debug("ethernet alias found: %s\n", path);
1279
1280 offset = fdt_path_offset(fdt, path);
1281 if (offset < 0) {
1282 debug("ethernet alias points to absent node %s\n", path);
1283 return -ENOENT;
1284 }
1285
1286 err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1287 if (err < 0)
1288 return err;
1289
1290 debug("MAC address: %pM\n", mac);
1291
1292 return 0;
1293}
1294
Thierry Redinge8dfad42019-03-21 19:10:02 +01001295static int fdtdec_init_reserved_memory(void *blob)
1296{
1297 int na, ns, node, err;
1298 fdt32_t value;
1299
1300 /* inherit #address-cells and #size-cells from the root node */
1301 na = fdt_address_cells(blob, 0);
1302 ns = fdt_size_cells(blob, 0);
1303
1304 node = fdt_add_subnode(blob, 0, "reserved-memory");
1305 if (node < 0)
1306 return node;
1307
1308 err = fdt_setprop(blob, node, "ranges", NULL, 0);
1309 if (err < 0)
1310 return err;
1311
1312 value = cpu_to_fdt32(ns);
1313
1314 err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1315 if (err < 0)
1316 return err;
1317
1318 value = cpu_to_fdt32(na);
1319
1320 err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1321 if (err < 0)
1322 return err;
1323
1324 return node;
1325}
1326
1327int fdtdec_add_reserved_memory(void *blob, const char *basename,
1328 const struct fdt_memory *carveout,
Thierry Reding5e336912021-09-03 15:16:19 +02001329 const char **compatibles, unsigned int count,
Thierry Redingbedc4392021-09-03 15:16:21 +02001330 uint32_t *phandlep, unsigned long flags)
Thierry Redinge8dfad42019-03-21 19:10:02 +01001331{
1332 fdt32_t cells[4] = {}, *ptr = cells;
1333 uint32_t upper, lower, phandle;
1334 int parent, node, na, ns, err;
Thierry Reding26130012019-04-15 10:08:21 +02001335 fdt_size_t size;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001336 char name[64];
1337
1338 /* create an empty /reserved-memory node if one doesn't exist */
1339 parent = fdt_path_offset(blob, "/reserved-memory");
1340 if (parent < 0) {
1341 parent = fdtdec_init_reserved_memory(blob);
1342 if (parent < 0)
1343 return parent;
1344 }
1345
1346 /* only 1 or 2 #address-cells and #size-cells are supported */
1347 na = fdt_address_cells(blob, parent);
1348 if (na < 1 || na > 2)
1349 return -FDT_ERR_BADNCELLS;
1350
1351 ns = fdt_size_cells(blob, parent);
1352 if (ns < 1 || ns > 2)
1353 return -FDT_ERR_BADNCELLS;
1354
1355 /* find a matching node and return the phandle to that */
1356 fdt_for_each_subnode(node, blob, parent) {
1357 const char *name = fdt_get_name(blob, node, NULL);
Bin Menga26ad7a2020-05-19 23:38:32 -07001358 fdt_addr_t addr;
1359 fdt_size_t size;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001360
Bin Meng32d294b2020-05-19 23:38:33 -07001361 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1362 &size, false);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001363 if (addr == FDT_ADDR_T_NONE) {
1364 debug("failed to read address/size for %s\n", name);
1365 continue;
1366 }
1367
Atish Patrab57af062020-04-21 11:15:00 -07001368 if (addr == carveout->start && (addr + size - 1) ==
1369 carveout->end) {
Heiko Stuebner49723ac2019-10-23 16:46:38 +02001370 if (phandlep)
1371 *phandlep = fdt_get_phandle(blob, node);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001372 return 0;
1373 }
1374 }
1375
1376 /*
1377 * Unpack the start address and generate the name of the new node
1378 * base on the basename and the unit-address.
1379 */
Thierry Reding26130012019-04-15 10:08:21 +02001380 upper = upper_32_bits(carveout->start);
1381 lower = lower_32_bits(carveout->start);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001382
1383 if (na > 1 && upper > 0)
1384 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1385 lower);
1386 else {
1387 if (upper > 0) {
1388 debug("address %08x:%08x exceeds addressable space\n",
1389 upper, lower);
1390 return -FDT_ERR_BADVALUE;
1391 }
1392
1393 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1394 }
1395
1396 node = fdt_add_subnode(blob, parent, name);
1397 if (node < 0)
1398 return node;
1399
Thierry Redingbedc4392021-09-03 15:16:21 +02001400 if (flags & FDTDEC_RESERVED_MEMORY_NO_MAP) {
1401 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1402 if (err < 0)
1403 return err;
1404 }
1405
Heiko Stuebner754302f2019-10-23 16:46:39 +02001406 if (phandlep) {
1407 err = fdt_generate_phandle(blob, &phandle);
1408 if (err < 0)
1409 return err;
Thierry Redinge8dfad42019-03-21 19:10:02 +01001410
Heiko Stuebner754302f2019-10-23 16:46:39 +02001411 err = fdtdec_set_phandle(blob, node, phandle);
1412 if (err < 0)
1413 return err;
1414 }
Thierry Redinge8dfad42019-03-21 19:10:02 +01001415
1416 /* store one or two address cells */
1417 if (na > 1)
1418 *ptr++ = cpu_to_fdt32(upper);
1419
1420 *ptr++ = cpu_to_fdt32(lower);
1421
1422 /* store one or two size cells */
Thierry Reding26130012019-04-15 10:08:21 +02001423 size = carveout->end - carveout->start + 1;
1424 upper = upper_32_bits(size);
1425 lower = lower_32_bits(size);
Thierry Redinge8dfad42019-03-21 19:10:02 +01001426
1427 if (ns > 1)
1428 *ptr++ = cpu_to_fdt32(upper);
1429
1430 *ptr++ = cpu_to_fdt32(lower);
1431
1432 err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1433 if (err < 0)
1434 return err;
1435
Thierry Reding5e336912021-09-03 15:16:19 +02001436 if (compatibles && count > 0) {
1437 size_t length = 0, len = 0;
1438 unsigned int i;
1439 char *buffer;
1440
1441 for (i = 0; i < count; i++)
1442 length += strlen(compatibles[i]) + 1;
1443
1444 buffer = malloc(length);
1445 if (!buffer)
1446 return -FDT_ERR_INTERNAL;
1447
1448 for (i = 0; i < count; i++)
1449 len += strlcpy(buffer + len, compatibles[i],
1450 length - len) + 1;
1451
1452 err = fdt_setprop(blob, node, "compatible", buffer, length);
1453 free(buffer);
1454 if (err < 0)
1455 return err;
1456 }
1457
Thierry Redinge8dfad42019-03-21 19:10:02 +01001458 /* return the phandle for the new node for the caller to use */
1459 if (phandlep)
1460 *phandlep = phandle;
1461
1462 return 0;
1463}
1464
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001465int fdtdec_get_carveout(const void *blob, const char *node,
1466 const char *prop_name, unsigned int index,
Thierry Reding5e336912021-09-03 15:16:19 +02001467 struct fdt_memory *carveout, const char **name,
Thierry Redingbedc4392021-09-03 15:16:21 +02001468 const char ***compatiblesp, unsigned int *countp,
1469 unsigned long *flags)
Thierry Redinge629b0d2019-03-21 19:10:03 +01001470{
1471 const fdt32_t *prop;
1472 uint32_t phandle;
1473 int offset, len;
1474 fdt_size_t size;
1475
1476 offset = fdt_path_offset(blob, node);
1477 if (offset < 0)
1478 return offset;
1479
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001480 prop = fdt_getprop(blob, offset, prop_name, &len);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001481 if (!prop) {
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001482 debug("failed to get %s for %s\n", prop_name, node);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001483 return -FDT_ERR_NOTFOUND;
1484 }
1485
1486 if ((len % sizeof(phandle)) != 0) {
1487 debug("invalid phandle property\n");
1488 return -FDT_ERR_BADPHANDLE;
1489 }
1490
1491 if (len < (sizeof(phandle) * (index + 1))) {
1492 debug("invalid phandle index\n");
Thierry Reding3dcc4cf2021-09-03 15:16:17 +02001493 return -FDT_ERR_NOTFOUND;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001494 }
1495
1496 phandle = fdt32_to_cpu(prop[index]);
1497
1498 offset = fdt_node_offset_by_phandle(blob, phandle);
1499 if (offset < 0) {
1500 debug("failed to find node for phandle %u\n", phandle);
1501 return offset;
1502 }
1503
Thierry Reding8a3c9fc2021-09-03 15:16:18 +02001504 if (name)
1505 *name = fdt_get_name(blob, offset, NULL);
1506
Thierry Reding5e336912021-09-03 15:16:19 +02001507 if (compatiblesp) {
1508 const char **compatibles = NULL;
1509 const char *start, *end, *ptr;
1510 unsigned int count = 0;
1511
1512 prop = fdt_getprop(blob, offset, "compatible", &len);
1513 if (!prop)
1514 goto skip_compat;
1515
1516 start = ptr = (const char *)prop;
1517 end = start + len;
1518
1519 while (ptr < end) {
1520 ptr = strchrnul(ptr, '\0');
1521 count++;
1522 ptr++;
1523 }
1524
1525 compatibles = malloc(sizeof(ptr) * count);
1526 if (!compatibles)
1527 return -FDT_ERR_INTERNAL;
1528
1529 ptr = start;
1530 count = 0;
1531
1532 while (ptr < end) {
1533 compatibles[count] = ptr;
1534 ptr = strchrnul(ptr, '\0');
1535 count++;
1536 ptr++;
1537 }
1538
1539skip_compat:
1540 *compatiblesp = compatibles;
1541
1542 if (countp)
1543 *countp = count;
1544 }
1545
Thierry Redinge629b0d2019-03-21 19:10:03 +01001546 carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1547 "reg", 0, &size,
1548 true);
1549 if (carveout->start == FDT_ADDR_T_NONE) {
1550 debug("failed to read address/size from \"reg\" property\n");
1551 return -FDT_ERR_NOTFOUND;
1552 }
1553
1554 carveout->end = carveout->start + size - 1;
1555
Thierry Redingbedc4392021-09-03 15:16:21 +02001556 if (flags) {
1557 *flags = 0;
1558
1559 if (fdtdec_get_bool(blob, offset, "no-map"))
1560 *flags |= FDTDEC_RESERVED_MEMORY_NO_MAP;
1561 }
1562
Thierry Redinge629b0d2019-03-21 19:10:03 +01001563 return 0;
1564}
1565
1566int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
Thierry Redingd6ad8072021-09-03 15:16:20 +02001567 unsigned int index, const struct fdt_memory *carveout,
1568 const char *name, const char **compatibles,
Thierry Redingbedc4392021-09-03 15:16:21 +02001569 unsigned int count, unsigned long flags)
Thierry Redinge629b0d2019-03-21 19:10:03 +01001570{
1571 uint32_t phandle;
Laurentiu Tudoref135222020-04-03 13:43:03 +03001572 int err, offset, len;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001573 fdt32_t value;
Laurentiu Tudoref135222020-04-03 13:43:03 +03001574 void *prop;
Thierry Redinge629b0d2019-03-21 19:10:03 +01001575
Thierry Reding5e336912021-09-03 15:16:19 +02001576 err = fdtdec_add_reserved_memory(blob, name, carveout, compatibles,
Thierry Redingbedc4392021-09-03 15:16:21 +02001577 count, &phandle, flags);
Thierry Redinge629b0d2019-03-21 19:10:03 +01001578 if (err < 0) {
1579 debug("failed to add reserved memory: %d\n", err);
1580 return err;
1581 }
1582
1583 offset = fdt_path_offset(blob, node);
1584 if (offset < 0) {
1585 debug("failed to find offset for node %s: %d\n", node, offset);
1586 return offset;
1587 }
1588
1589 value = cpu_to_fdt32(phandle);
1590
Laurentiu Tudoref135222020-04-03 13:43:03 +03001591 if (!fdt_getprop(blob, offset, prop_name, &len)) {
1592 if (len == -FDT_ERR_NOTFOUND)
1593 len = 0;
1594 else
1595 return len;
1596 }
1597
1598 if ((index + 1) * sizeof(value) > len) {
1599 err = fdt_setprop_placeholder(blob, offset, prop_name,
1600 (index + 1) * sizeof(value),
1601 &prop);
1602 if (err < 0) {
1603 debug("failed to resize reserved memory property: %s\n",
1604 fdt_strerror(err));
1605 return err;
1606 }
1607 }
1608
1609 err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1610 strlen(prop_name),
1611 index * sizeof(value),
1612 &value, sizeof(value));
Thierry Redinge629b0d2019-03-21 19:10:03 +01001613 if (err < 0) {
Laurentiu Tudoref135222020-04-03 13:43:03 +03001614 debug("failed to update %s property for node %s: %s\n",
1615 prop_name, node, fdt_strerror(err));
Thierry Redinge629b0d2019-03-21 19:10:03 +01001616 return err;
1617 }
1618
1619 return 0;
1620}
1621
Simon Glass37604392021-12-16 20:59:35 -07001622/* TODO(sjg@chromium.org): This function should not be weak */
Marek Vasutedeb6542020-04-11 21:18:59 +02001623__weak int fdtdec_board_setup(const void *fdt_blob)
1624{
1625 return 0;
1626}
1627
Simon Glasse1d46fa2021-12-16 20:59:24 -07001628/**
1629 * setup_multi_dtb_fit() - locate the correct dtb from a FIT
1630 *
1631 * This supports the CONFIG_MULTI_DTB_FIT feature, looking for the dtb in a
1632 * supplied FIT
1633 *
1634 * It accepts the current value of gd->fdt_blob, which points to the FIT, then
1635 * updates that gd->fdt_blob, to point to the chosen dtb so that U-Boot uses the
1636 * correct one
1637 */
1638static void setup_multi_dtb_fit(void)
1639{
Simon Glasse1d46fa2021-12-16 20:59:24 -07001640 void *blob;
1641
1642 /*
1643 * Try and uncompress the blob.
1644 * Unfortunately there is no way to know how big the input blob really
1645 * is. So let us set the maximum input size arbitrarily high. 16MB
1646 * ought to be more than enough for packed DTBs.
1647 */
1648 if (uncompress_blob(gd->fdt_blob, 0x1000000, &blob) == 0)
1649 gd->fdt_blob = blob;
1650
1651 /*
1652 * Check if blob is a FIT images containings DTBs.
1653 * If so, pick the most relevant
1654 */
1655 blob = locate_dtb_in_fit(gd->fdt_blob);
1656 if (blob) {
Simon Glass69daf5a2021-12-16 20:59:25 -07001657 gd_set_multi_dtb_fit(gd->fdt_blob);
Simon Glasse1d46fa2021-12-16 20:59:24 -07001658 gd->fdt_blob = blob;
Simon Glassbed6bc72021-12-16 20:59:33 -07001659 gd->fdt_src = FDTSRC_FIT;
Simon Glasse1d46fa2021-12-16 20:59:24 -07001660 }
Simon Glasse1d46fa2021-12-16 20:59:24 -07001661}
1662
Simon Glassa0877672015-02-27 22:06:35 -07001663int fdtdec_setup(void)
Simon Glass26b78b22015-02-27 22:06:34 -07001664{
Marek Vasutedeb6542020-04-11 21:18:59 +02001665 int ret;
Simon Glass2a3789b2021-12-16 20:59:30 -07001666
1667 /* The devicetree is typically appended to U-Boot */
Simon Glassbed6bc72021-12-16 20:59:33 -07001668 if (IS_ENABLED(CONFIG_OF_SEPARATE)) {
Simon Glass28b76512021-12-16 20:59:31 -07001669 gd->fdt_blob = fdt_find_separate();
Simon Glassbed6bc72021-12-16 20:59:33 -07001670 gd->fdt_src = FDTSRC_SEPARATE;
1671 } else { /* embed dtb in ELF file for testing / development */
Simon Glass28b76512021-12-16 20:59:31 -07001672 gd->fdt_blob = dtb_dt_embedded();
Simon Glassbed6bc72021-12-16 20:59:33 -07001673 gd->fdt_src = FDTSRC_EMBED;
1674 }
Simon Glass28b76512021-12-16 20:59:31 -07001675
1676 /* Allow the board to override the fdt address. */
1677 if (IS_ENABLED(CONFIG_OF_BOARD)) {
Simon Glass2a3789b2021-12-16 20:59:30 -07001678 gd->fdt_blob = board_fdt_blob_setup(&ret);
1679 if (ret)
1680 return ret;
Simon Glassbed6bc72021-12-16 20:59:33 -07001681 gd->fdt_src = FDTSRC_BOARD;
Simon Glass2a3789b2021-12-16 20:59:30 -07001682 }
1683
Simon Glassbed6bc72021-12-16 20:59:33 -07001684 /* Allow the early environment to override the fdt address */
Simon Glassbcafa8c2021-12-16 20:59:28 -07001685 if (!IS_ENABLED(CONFIG_SPL_BUILD)) {
Simon Glassbed6bc72021-12-16 20:59:33 -07001686 ulong addr;
1687
1688 addr = env_get_hex("fdtcontroladdr", 0);
1689 if (addr) {
1690 gd->fdt_blob = map_sysmem(addr, 0);
1691 gd->fdt_src = FDTSRC_ENV;
1692 }
Simon Glassbcafa8c2021-12-16 20:59:28 -07001693 }
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001694
Simon Glasse1d46fa2021-12-16 20:59:24 -07001695 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT))
1696 setup_multi_dtb_fit();
Jean-Jacques Hiblota2fee162017-09-15 12:57:32 +02001697
Simon Glass2c62a942022-12-21 16:08:20 -07001698 ret = fdtdec_prepare_fdt(gd->fdt_blob);
Marek Vasutedeb6542020-04-11 21:18:59 +02001699 if (!ret)
1700 ret = fdtdec_board_setup(gd->fdt_blob);
Simon Glassba8457b2022-09-06 20:27:19 -06001701 oftree_reset();
1702
Marek Vasutedeb6542020-04-11 21:18:59 +02001703 return ret;
Simon Glass26b78b22015-02-27 22:06:34 -07001704}
1705
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001706int fdtdec_resetup(int *rescan)
1707{
1708 void *fdt_blob;
1709
1710 /*
1711 * If the current DTB is part of a compressed FIT image,
1712 * try to locate the best match from the uncompressed
1713 * FIT image stillpresent there. Save the time and space
1714 * required to uncompress it again.
1715 */
Simon Glass69daf5a2021-12-16 20:59:25 -07001716 if (gd_multi_dtb_fit()) {
1717 fdt_blob = locate_dtb_in_fit(gd_multi_dtb_fit());
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001718
1719 if (fdt_blob == gd->fdt_blob) {
1720 /*
1721 * The best match did not change. no need to tear down
1722 * the DM and rescan the fdt.
1723 */
1724 *rescan = 0;
1725 return 0;
1726 }
1727
1728 *rescan = 1;
1729 gd->fdt_blob = fdt_blob;
Simon Glass2c62a942022-12-21 16:08:20 -07001730 return fdtdec_prepare_fdt(fdt_blob);
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001731 }
1732
1733 /*
1734 * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1735 * not a FIT image containings DTB, but a single DTB. There is no need
1736 * to teard down DM and rescan the DT in this case.
1737 */
1738 *rescan = 0;
1739 return 0;
1740}
Jean-Jacques Hiblot7c530e32018-12-07 14:50:52 +01001741
Michael Prattfa28d142018-06-11 13:07:09 -06001742int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +09001743 phys_addr_t *basep, phys_size_t *sizep,
1744 struct bd_info *bd)
Michael Prattfa28d142018-06-11 13:07:09 -06001745{
1746 int addr_cells, size_cells;
1747 const u32 *cell, *end;
1748 u64 total_size, size, addr;
1749 int node, child;
1750 bool auto_size;
1751 int bank;
1752 int len;
1753
1754 debug("%s: board_id=%d\n", __func__, board_id);
1755 if (!area)
1756 area = "/memory";
1757 node = fdt_path_offset(blob, area);
1758 if (node < 0) {
1759 debug("No %s node found\n", area);
1760 return -ENOENT;
1761 }
1762
1763 cell = fdt_getprop(blob, node, "reg", &len);
1764 if (!cell) {
1765 debug("No reg property found\n");
1766 return -ENOENT;
1767 }
1768
1769 addr_cells = fdt_address_cells(blob, node);
1770 size_cells = fdt_size_cells(blob, node);
1771
1772 /* Check the board id and mask */
1773 for (child = fdt_first_subnode(blob, node);
1774 child >= 0;
1775 child = fdt_next_subnode(blob, child)) {
1776 int match_mask, match_value;
1777
1778 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1779 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1780
1781 if (match_value >= 0 &&
1782 ((board_id & match_mask) == match_value)) {
1783 /* Found matching mask */
1784 debug("Found matching mask %d\n", match_mask);
1785 node = child;
1786 cell = fdt_getprop(blob, node, "reg", &len);
1787 if (!cell) {
1788 debug("No memory-banks property found\n");
1789 return -EINVAL;
1790 }
1791 break;
1792 }
1793 }
1794 /* Note: if no matching subnode was found we use the parent node */
1795
1796 if (bd) {
1797 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1798 CONFIG_NR_DRAM_BANKS);
1799 }
1800
1801 auto_size = fdtdec_get_bool(blob, node, "auto-size");
1802
1803 total_size = 0;
1804 end = cell + len / 4 - addr_cells - size_cells;
1805 debug("cell at %p, end %p\n", cell, end);
1806 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1807 if (cell > end)
1808 break;
1809 addr = 0;
1810 if (addr_cells == 2)
1811 addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1812 addr += fdt32_to_cpu(*cell++);
1813 if (bd)
1814 bd->bi_dram[bank].start = addr;
1815 if (basep && !bank)
1816 *basep = (phys_addr_t)addr;
1817
1818 size = 0;
1819 if (size_cells == 2)
1820 size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1821 size += fdt32_to_cpu(*cell++);
1822
1823 if (auto_size) {
1824 u64 new_size;
1825
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001826 debug("Auto-sizing %llx, size %llx: ", addr, size);
Michael Prattfa28d142018-06-11 13:07:09 -06001827 new_size = get_ram_size((long *)(uintptr_t)addr, size);
1828 if (new_size == size) {
1829 debug("OK\n");
1830 } else {
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001831 debug("sized to %llx\n", new_size);
Michael Prattfa28d142018-06-11 13:07:09 -06001832 size = new_size;
1833 }
1834 }
1835
1836 if (bd)
1837 bd->bi_dram[bank].size = size;
1838 total_size += size;
1839 }
1840
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001841 debug("Memory size %llu\n", total_size);
Michael Prattfa28d142018-06-11 13:07:09 -06001842 if (sizep)
1843 *sizep = (phys_size_t)total_size;
1844
1845 return 0;
1846}
Michael Prattfa28d142018-06-11 13:07:09 -06001847
Simon Glass26b78b22015-02-27 22:06:34 -07001848#endif /* !USE_HOSTCC */