]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/fdtdec.c
lib: fdtdec: Fix whitespace style violations
[people/ms/u-boot.git] / lib / fdtdec.c
CommitLineData
b5220bc6
SG
1/*
2 * Copyright (c) 2011 The Chromium OS Authors.
1a459660 3 * SPDX-License-Identifier: GPL-2.0+
b5220bc6
SG
4 */
5
29a23f9d 6#ifndef USE_HOSTCC
b5220bc6 7#include <common.h>
035d6402 8#include <boot_fit.h>
fcc0a877 9#include <dm.h>
035d6402 10#include <dm/of_extra.h>
5c33c9fd 11#include <errno.h>
b5220bc6 12#include <fdtdec.h>
035d6402
JJH
13#include <fdt_support.h>
14#include <libfdt.h>
15#include <serial.h>
b45122fd 16#include <asm/sections.h>
5c33c9fd 17#include <linux/ctype.h>
2f57c951 18#include <linux/lzo.h>
b5220bc6
SG
19
20DECLARE_GLOBAL_DATA_PTR;
21
22/*
23 * Here are the type we know about. One day we might allow drivers to
24 * register. For now we just put them here. The COMPAT macro allows us to
25 * turn this into a sparse list later, and keeps the ID with the name.
01a227df
SG
26 *
27 * NOTE: This list is basically a TODO list for things that need to be
28 * converted to driver model. So don't add new things here unless there is a
29 * good reason why driver-model conversion is infeasible. Examples include
30 * things which are used before driver model is available.
b5220bc6
SG
31 */
32#define COMPAT(id, name) name
33static const char * const compat_names[COMPAT_COUNT] = {
f88fe2de 34 COMPAT(UNKNOWN, "<none>"),
0e35ad05
JZ
35 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
36 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
312693c3 37 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
79c7a90f 38 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
7aaa5a60 39 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
cc9fe33a
HR
40 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
41 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
c34253d1 42 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
72dbff12
RS
43 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
44 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
6abd1620 45 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
108b85be 46 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
618766c0 47 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
de461c52 48 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
7d3ca0f8 49 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
3577fe8b 50 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
f37df0f8 51 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686"),
bb8215f4 52 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
7772bb78 53 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
ecbd7e1e 54 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
45c480c9 55 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
77f9b1fb 56 COMPAT(INTEL_MICROCODE, "intel,microcode"),
6173c45b 57 COMPAT(AMS_AS3722, "ams,as3722"),
c89ada01 58 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
6ab00db2 59 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
129adf5b 60 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
ef4b01b2 61 COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
39ea0ee9
SG
62 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"),
4ccae81c 65 COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
e11b5e8d
LFT
66 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"),
eb57c0be
TFC
74 COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
75 COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
b5220bc6
SG
76};
77
a53f4a29
SG
78const char *fdtdec_get_compatible(enum fdt_compat_id id)
79{
80 /* We allow reading of the 'unknown' ID for testing purposes */
81 assert(id >= 0 && id < COMPAT_COUNT);
82 return compat_names[id];
83}
84
02464e38 85fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
2e38662d
MS
86 const char *prop_name, int index, int na,
87 int ns, fdt_size_t *sizep,
88 bool translate)
b5220bc6 89{
02464e38
SW
90 const fdt32_t *prop, *prop_end;
91 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
236efe36 92 int len;
02464e38 93 fdt_addr_t addr;
b5220bc6 94
1cb2323b 95 debug("%s: %s: ", __func__, prop_name);
02464e38
SW
96
97 if (na > (sizeof(fdt_addr_t) / sizeof(fdt32_t))) {
98 debug("(na too large for fdt_addr_t type)\n");
99 return FDT_ADDR_T_NONE;
100 }
101
102 if (ns > (sizeof(fdt_size_t) / sizeof(fdt32_t))) {
103 debug("(ns too large for fdt_size_t type)\n");
104 return FDT_ADDR_T_NONE;
105 }
106
107 prop = fdt_getprop(blob, node, prop_name, &len);
108 if (!prop) {
109 debug("(not found)\n");
110 return FDT_ADDR_T_NONE;
111 }
112 prop_end = prop + (len / sizeof(*prop));
113
114 prop_addr = prop + (index * (na + ns));
115 prop_size = prop_addr + na;
116 prop_after_size = prop_size + ns;
117 if (prop_after_size > prop_end) {
118 debug("(not enough data: expected >= %d cells, got %d cells)\n",
119 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
120 return FDT_ADDR_T_NONE;
121 }
122
5efa1bfb 123#if CONFIG_IS_ENABLED(OF_TRANSLATE)
6e06acb7
SW
124 if (translate)
125 addr = fdt_translate_address(blob, node, prop_addr);
126 else
127#endif
128 addr = fdtdec_get_number(prop_addr, na);
02464e38
SW
129
130 if (sizep) {
131 *sizep = fdtdec_get_number(prop_size, ns);
fd30d2c6
SG
132 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
133 (unsigned long long)*sizep);
02464e38 134 } else {
fd30d2c6 135 debug("addr=%08llx\n", (unsigned long long)addr);
02464e38
SW
136 }
137
138 return addr;
139}
140
141fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
2e38662d
MS
142 int node, const char *prop_name,
143 int index, fdt_size_t *sizep,
144 bool translate)
02464e38
SW
145{
146 int na, ns;
147
148 debug("%s: ", __func__);
149
150 na = fdt_address_cells(blob, parent);
151 if (na < 1) {
152 debug("(bad #address-cells)\n");
153 return FDT_ADDR_T_NONE;
154 }
155
156 ns = fdt_size_cells(blob, parent);
ff0a6358 157 if (ns < 0) {
02464e38
SW
158 debug("(bad #size-cells)\n");
159 return FDT_ADDR_T_NONE;
160 }
161
162 debug("na=%d, ns=%d, ", na, ns);
163
164 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
6e06acb7 165 ns, sizep, translate);
02464e38
SW
166}
167
168fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
2e38662d
MS
169 const char *prop_name, int index,
170 fdt_size_t *sizep,
171 bool translate)
02464e38
SW
172{
173 int parent;
174
175 debug("%s: ", __func__);
176
177 parent = fdt_parent_offset(blob, node);
178 if (parent < 0) {
179 debug("(no parent found)\n");
180 return FDT_ADDR_T_NONE;
5b344360 181 }
02464e38
SW
182
183 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
6e06acb7 184 index, sizep, translate);
02464e38
SW
185}
186
187fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
2e38662d 188 const char *prop_name, fdt_size_t *sizep)
02464e38 189{
d93b9a07
SW
190 int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
191
02464e38
SW
192 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
193 sizeof(fdt_addr_t) / sizeof(fdt32_t),
6e06acb7 194 ns, sizep, false);
b5220bc6
SG
195}
196
2e38662d 197fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
4397a2a8
SG
198{
199 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
200}
201
fcc0a877 202#if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI)
a62e84d7 203int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
2e38662d 204 const char *prop_name, struct fdt_pci_addr *addr)
a62e84d7
BM
205{
206 const u32 *cell;
207 int len;
208 int ret = -ENOENT;
209
210 debug("%s: %s: ", __func__, prop_name);
211
212 /*
213 * If we follow the pci bus bindings strictly, we should check
214 * the value of the node's parent node's #address-cells and
215 * #size-cells. They need to be 3 and 2 accordingly. However,
216 * for simplicity we skip the check here.
217 */
218 cell = fdt_getprop(blob, node, prop_name, &len);
219 if (!cell)
220 goto fail;
221
222 if ((len % FDT_PCI_REG_SIZE) == 0) {
223 int num = len / FDT_PCI_REG_SIZE;
224 int i;
225
226 for (i = 0; i < num; i++) {
227 debug("pci address #%d: %08lx %08lx %08lx\n", i,
4ea5243a
SW
228 (ulong)fdt32_to_cpu(cell[0]),
229 (ulong)fdt32_to_cpu(cell[1]),
230 (ulong)fdt32_to_cpu(cell[2]));
231 if ((fdt32_to_cpu(*cell) & type) == type) {
232 addr->phys_hi = fdt32_to_cpu(cell[0]);
233 addr->phys_mid = fdt32_to_cpu(cell[1]);
234 addr->phys_lo = fdt32_to_cpu(cell[1]);
a62e84d7
BM
235 break;
236 } else {
237 cell += (FDT_PCI_ADDR_CELLS +
238 FDT_PCI_SIZE_CELLS);
239 }
240 }
241
106cce96
SG
242 if (i == num) {
243 ret = -ENXIO;
a62e84d7 244 goto fail;
106cce96 245 }
a62e84d7
BM
246
247 return 0;
248 } else {
249 ret = -EINVAL;
250 }
251
252fail:
253 debug("(not found)\n");
254 return ret;
255}
256
257int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
258{
259 const char *list, *end;
260 int len;
261
262 list = fdt_getprop(blob, node, "compatible", &len);
263 if (!list)
264 return -ENOENT;
265
266 end = list + len;
267 while (list < end) {
268 char *s;
269
270 len = strlen(list);
271 if (len >= strlen("pciVVVV,DDDD")) {
272 s = strstr(list, "pci");
273
274 /*
275 * check if the string is something like pciVVVV,DDDD.RR
276 * or just pciVVVV,DDDD
277 */
278 if (s && s[7] == ',' &&
279 (s[12] == '.' || s[12] == 0)) {
280 s += 3;
281 *vendor = simple_strtol(s, NULL, 16);
282
283 s += 5;
284 *device = simple_strtol(s, NULL, 16);
285
286 return 0;
287 }
a62e84d7 288 }
bc6351eb 289 list += (len + 1);
a62e84d7
BM
290 }
291
292 return -ENOENT;
293}
294
fcc0a877
SG
295int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr,
296 u32 *bar)
a62e84d7 297{
a62e84d7 298 int barnum;
a62e84d7
BM
299
300 /* extract the bar number from fdt_pci_addr */
301 barnum = addr->phys_hi & 0xff;
302 if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS))
303 return -EINVAL;
304
305 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
fcc0a877 306 *bar = dm_pci_read_bar32(dev, barnum);
a62e84d7
BM
307
308 return 0;
309}
310#endif
311
aadef0a1 312uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
2e38662d 313 uint64_t default_val)
aadef0a1
CLC
314{
315 const uint64_t *cell64;
316 int length;
317
318 cell64 = fdt_getprop(blob, node, prop_name, &length);
319 if (!cell64 || length < sizeof(*cell64))
320 return default_val;
321
322 return fdt64_to_cpu(*cell64);
323}
324
f88fe2de 325int fdtdec_get_is_enabled(const void *blob, int node)
b5220bc6
SG
326{
327 const char *cell;
328
f88fe2de
SG
329 /*
330 * It should say "okay", so only allow that. Some fdts use "ok" but
331 * this is a bug. Please fix your device tree source file. See here
332 * for discussion:
333 *
334 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
335 */
b5220bc6
SG
336 cell = fdt_getprop(blob, node, "status", NULL);
337 if (cell)
f88fe2de
SG
338 return 0 == strcmp(cell, "okay");
339 return 1;
b5220bc6
SG
340}
341
7cde397b 342enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
b5220bc6
SG
343{
344 enum fdt_compat_id id;
345
346 /* Search our drivers */
347 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
348 if (0 == fdt_node_check_compatible(blob, node,
349 compat_names[id]))
350 return id;
351 return COMPAT_UNKNOWN;
352}
353
2e38662d 354int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
b5220bc6
SG
355{
356 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
357}
358
3ddecfc7 359int fdtdec_next_compatible_subnode(const void *blob, int node,
2e38662d 360 enum fdt_compat_id id, int *depthp)
3ddecfc7
SG
361{
362 do {
363 node = fdt_next_node(blob, node, depthp);
364 } while (*depthp > 1);
365
366 /* If this is a direct subnode, and compatible, return it */
367 if (*depthp == 1 && 0 == fdt_node_check_compatible(
368 blob, node, compat_names[id]))
369 return node;
370
371 return -FDT_ERR_NOTFOUND;
372}
373
2e38662d
MS
374int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
375 int *upto)
b5220bc6
SG
376{
377#define MAX_STR_LEN 20
378 char str[MAX_STR_LEN + 20];
379 int node, err;
380
381 /* snprintf() is not available */
382 assert(strlen(name) < MAX_STR_LEN);
383 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
00878476 384 node = fdt_path_offset(blob, str);
b5220bc6
SG
385 if (node < 0)
386 return node;
387 err = fdt_node_check_compatible(blob, node, compat_names[id]);
388 if (err < 0)
389 return err;
f88fe2de
SG
390 if (err)
391 return -FDT_ERR_NOTFOUND;
392 (*upto)++;
393 return node;
b5220bc6
SG
394}
395
a53f4a29 396int fdtdec_find_aliases_for_id(const void *blob, const char *name,
2e38662d
MS
397 enum fdt_compat_id id, int *node_list,
398 int maxcount)
c6782270
SG
399{
400 memset(node_list, '\0', sizeof(*node_list) * maxcount);
401
402 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
403}
404
405/* TODO: Can we tighten this code up a little? */
406int fdtdec_add_aliases_for_id(const void *blob, const char *name,
2e38662d
MS
407 enum fdt_compat_id id, int *node_list,
408 int maxcount)
a53f4a29
SG
409{
410 int name_len = strlen(name);
411 int nodes[maxcount];
412 int num_found = 0;
413 int offset, node;
414 int alias_node;
415 int count;
416 int i, j;
417
418 /* find the alias node if present */
419 alias_node = fdt_path_offset(blob, "/aliases");
420
421 /*
422 * start with nothing, and we can assume that the root node can't
423 * match
424 */
425 memset(nodes, '\0', sizeof(nodes));
426
427 /* First find all the compatible nodes */
428 for (node = count = 0; node >= 0 && count < maxcount;) {
429 node = fdtdec_next_compatible(blob, node, id);
430 if (node >= 0)
431 nodes[count++] = node;
432 }
433 if (node >= 0)
434 debug("%s: warning: maxcount exceeded with alias '%s'\n",
2e38662d 435 __func__, name);
a53f4a29
SG
436
437 /* Now find all the aliases */
a53f4a29
SG
438 for (offset = fdt_first_property_offset(blob, alias_node);
439 offset > 0;
440 offset = fdt_next_property_offset(blob, offset)) {
441 const struct fdt_property *prop;
442 const char *path;
443 int number;
444 int found;
445
446 node = 0;
447 prop = fdt_get_property_by_offset(blob, offset, NULL);
448 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
449 if (prop->len && 0 == strncmp(path, name, name_len))
450 node = fdt_path_offset(blob, prop->data);
451 if (node <= 0)
452 continue;
453
454 /* Get the alias number */
455 number = simple_strtoul(path + name_len, NULL, 10);
456 if (number < 0 || number >= maxcount) {
457 debug("%s: warning: alias '%s' is out of range\n",
2e38662d 458 __func__, path);
a53f4a29
SG
459 continue;
460 }
461
462 /* Make sure the node we found is actually in our list! */
463 found = -1;
464 for (j = 0; j < count; j++)
465 if (nodes[j] == node) {
466 found = j;
467 break;
468 }
469
470 if (found == -1) {
471 debug("%s: warning: alias '%s' points to a node "
472 "'%s' that is missing or is not compatible "
473 " with '%s'\n", __func__, path,
474 fdt_get_name(blob, node, NULL),
475 compat_names[id]);
476 continue;
477 }
478
479 /*
480 * Add this node to our list in the right place, and mark
481 * it as done.
482 */
483 if (fdtdec_get_is_enabled(blob, node)) {
c6782270
SG
484 if (node_list[number]) {
485 debug("%s: warning: alias '%s' requires that "
486 "a node be placed in the list in a "
487 "position which is already filled by "
488 "node '%s'\n", __func__, path,
489 fdt_get_name(blob, node, NULL));
490 continue;
491 }
a53f4a29
SG
492 node_list[number] = node;
493 if (number >= num_found)
494 num_found = number + 1;
495 }
c6782270 496 nodes[found] = 0;
a53f4a29
SG
497 }
498
499 /* Add any nodes not mentioned by an alias */
500 for (i = j = 0; i < maxcount; i++) {
501 if (!node_list[i]) {
502 for (; j < maxcount; j++)
503 if (nodes[j] &&
2e38662d 504 fdtdec_get_is_enabled(blob, nodes[j]))
a53f4a29
SG
505 break;
506
507 /* Have we run out of nodes to add? */
508 if (j == maxcount)
509 break;
510
511 assert(!node_list[i]);
512 node_list[i] = nodes[j++];
513 if (i >= num_found)
514 num_found = i + 1;
515 }
516 }
517
518 return num_found;
519}
520
5c33c9fd
SG
521int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
522 int *seqp)
523{
524 int base_len = strlen(base);
525 const char *find_name;
526 int find_namelen;
527 int prop_offset;
528 int aliases;
529
530 find_name = fdt_get_name(blob, offset, &find_namelen);
531 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
532
533 aliases = fdt_path_offset(blob, "/aliases");
534 for (prop_offset = fdt_first_property_offset(blob, aliases);
535 prop_offset > 0;
536 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
537 const char *prop;
538 const char *name;
539 const char *slash;
c4af6732 540 int len, val;
5c33c9fd
SG
541
542 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
543 debug(" - %s, %s\n", name, prop);
544 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
545 strncmp(name, base, base_len))
546 continue;
547
548 slash = strrchr(prop, '/');
549 if (strcmp(slash + 1, find_name))
550 continue;
c4af6732
SG
551 val = trailing_strtol(name);
552 if (val != -1) {
553 *seqp = val;
554 debug("Found seq %d\n", *seqp);
555 return 0;
5c33c9fd
SG
556 }
557 }
558
559 debug("Not found\n");
560 return -ENOENT;
561}
562
3bc37a50 563const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
aac07d49 564{
aac07d49 565 int chosen_node;
aac07d49
SG
566
567 if (!blob)
3bc37a50 568 return NULL;
aac07d49 569 chosen_node = fdt_path_offset(blob, "/chosen");
3bc37a50
SG
570 return fdt_getprop(blob, chosen_node, name, NULL);
571}
572
573int fdtdec_get_chosen_node(const void *blob, const char *name)
574{
575 const char *prop;
576
577 prop = fdtdec_get_chosen_prop(blob, name);
aac07d49
SG
578 if (!prop)
579 return -FDT_ERR_NOTFOUND;
580 return fdt_path_offset(blob, prop);
581}
582
9a263e55
SG
583int fdtdec_check_fdt(void)
584{
585 /*
586 * We must have an FDT, but we cannot panic() yet since the console
587 * is not ready. So for now, just assert(). Boards which need an early
588 * FDT (prior to console ready) will need to make their own
589 * arrangements and do their own checks.
590 */
591 assert(!fdtdec_prepare_fdt());
592 return 0;
593}
594
b5220bc6
SG
595/*
596 * This function is a little odd in that it accesses global data. At some
597 * point if the architecture board.c files merge this will make more sense.
598 * Even now, it is common code.
599 */
9a263e55 600int fdtdec_prepare_fdt(void)
b5220bc6 601{
c309c2da
SG
602 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
603 fdt_check_header(gd->fdt_blob)) {
66312374
SG
604#ifdef CONFIG_SPL_BUILD
605 puts("Missing DTB\n");
606#else
607 puts("No valid device tree binary found - please append one to U-Boot binary, use u-boot-dtb.bin or define CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
cb5f97f7
SG
608# ifdef DEBUG
609 if (gd->fdt_blob) {
610 printf("fdt_blob=%p\n", gd->fdt_blob);
611 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
612 32, 0);
613 }
614# endif
66312374 615#endif
9a263e55
SG
616 return -1;
617 }
b5220bc6
SG
618 return 0;
619}
d17da655
SG
620
621int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
622{
623 const u32 *phandle;
624 int lookup;
625
1cb2323b 626 debug("%s: %s\n", __func__, prop_name);
d17da655
SG
627 phandle = fdt_getprop(blob, node, prop_name, NULL);
628 if (!phandle)
629 return -FDT_ERR_NOTFOUND;
630
631 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
632 return lookup;
633}
634
635/**
636 * Look up a property in a node and check that it has a minimum length.
637 *
638 * @param blob FDT blob
639 * @param node node to examine
640 * @param prop_name name of property to find
641 * @param min_len minimum property length in bytes
642 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
643 found, or -FDT_ERR_BADLAYOUT if not enough data
644 * @return pointer to cell, which is only valid if err == 0
645 */
646static const void *get_prop_check_min_len(const void *blob, int node,
2e38662d
MS
647 const char *prop_name, int min_len,
648 int *err)
d17da655
SG
649{
650 const void *cell;
651 int len;
652
653 debug("%s: %s\n", __func__, prop_name);
654 cell = fdt_getprop(blob, node, prop_name, &len);
655 if (!cell)
656 *err = -FDT_ERR_NOTFOUND;
657 else if (len < min_len)
658 *err = -FDT_ERR_BADLAYOUT;
659 else
660 *err = 0;
661 return cell;
662}
663
664int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
2e38662d 665 u32 *array, int count)
d17da655
SG
666{
667 const u32 *cell;
668 int i, err = 0;
669
670 debug("%s: %s\n", __func__, prop_name);
671 cell = get_prop_check_min_len(blob, node, prop_name,
672 sizeof(u32) * count, &err);
673 if (!err) {
674 for (i = 0; i < count; i++)
675 array[i] = fdt32_to_cpu(cell[i]);
676 }
677 return err;
678}
679
a9f04d49
SG
680int fdtdec_get_int_array_count(const void *blob, int node,
681 const char *prop_name, u32 *array, int count)
682{
683 const u32 *cell;
684 int len, elems;
685 int i;
686
687 debug("%s: %s\n", __func__, prop_name);
688 cell = fdt_getprop(blob, node, prop_name, &len);
689 if (!cell)
690 return -FDT_ERR_NOTFOUND;
691 elems = len / sizeof(u32);
692 if (count > elems)
693 count = elems;
694 for (i = 0; i < count; i++)
695 array[i] = fdt32_to_cpu(cell[i]);
696
697 return count;
698}
699
96875e7d
SG
700const u32 *fdtdec_locate_array(const void *blob, int node,
701 const char *prop_name, int count)
702{
703 const u32 *cell;
704 int err;
705
706 cell = get_prop_check_min_len(blob, node, prop_name,
707 sizeof(u32) * count, &err);
708 return err ? NULL : cell;
709}
710
d17da655
SG
711int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
712{
713 const s32 *cell;
714 int len;
715
716 debug("%s: %s\n", __func__, prop_name);
717 cell = fdt_getprop(blob, node, prop_name, &len);
718 return cell != NULL;
719}
ed3ee5cd 720
57068a7a
SG
721int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
722 const char *list_name,
723 const char *cells_name,
724 int cell_count, int index,
725 struct fdtdec_phandle_args *out_args)
726{
727 const __be32 *list, *list_end;
728 int rc = 0, size, cur_index = 0;
729 uint32_t count = 0;
730 int node = -1;
731 int phandle;
732
733 /* Retrieve the phandle list property */
734 list = fdt_getprop(blob, src_node, list_name, &size);
735 if (!list)
736 return -ENOENT;
737 list_end = list + size / sizeof(*list);
738
739 /* Loop over the phandles until all the requested entry is found */
740 while (list < list_end) {
741 rc = -EINVAL;
742 count = 0;
743
744 /*
745 * If phandle is 0, then it is an empty entry with no
746 * arguments. Skip forward to the next entry.
747 */
748 phandle = be32_to_cpup(list++);
749 if (phandle) {
750 /*
751 * Find the provider node and parse the #*-cells
752 * property to determine the argument length.
753 *
754 * This is not needed if the cell count is hard-coded
755 * (i.e. cells_name not set, but cell_count is set),
756 * except when we're going to return the found node
757 * below.
758 */
759 if (cells_name || cur_index == index) {
760 node = fdt_node_offset_by_phandle(blob,
761 phandle);
762 if (!node) {
763 debug("%s: could not find phandle\n",
764 fdt_get_name(blob, src_node,
765 NULL));
766 goto err;
767 }
768 }
769
770 if (cells_name) {
771 count = fdtdec_get_int(blob, node, cells_name,
772 -1);
773 if (count == -1) {
774 debug("%s: could not get %s for %s\n",
775 fdt_get_name(blob, src_node,
776 NULL),
777 cells_name,
778 fdt_get_name(blob, node,
779 NULL));
780 goto err;
781 }
782 } else {
783 count = cell_count;
784 }
785
786 /*
787 * Make sure that the arguments actually fit in the
788 * remaining property data length
789 */
790 if (list + count > list_end) {
791 debug("%s: arguments longer than property\n",
792 fdt_get_name(blob, src_node, NULL));
793 goto err;
794 }
795 }
796
797 /*
798 * All of the error cases above bail out of the loop, so at
799 * this point, the parsing is successful. If the requested
800 * index matches, then fill the out_args structure and return,
801 * or return -ENOENT for an empty entry.
802 */
803 rc = -ENOENT;
804 if (cur_index == index) {
805 if (!phandle)
806 goto err;
807
808 if (out_args) {
809 int i;
810
811 if (count > MAX_PHANDLE_ARGS) {
812 debug("%s: too many arguments %d\n",
813 fdt_get_name(blob, src_node,
814 NULL), count);
815 count = MAX_PHANDLE_ARGS;
816 }
817 out_args->node = node;
818 out_args->args_count = count;
819 for (i = 0; i < count; i++) {
820 out_args->args[i] =
821 be32_to_cpup(list++);
822 }
823 }
824
825 /* Found it! return success */
826 return 0;
827 }
828
829 node = -1;
830 list += count;
831 cur_index++;
832 }
833
834 /*
835 * Result will be one of:
836 * -ENOENT : index is for empty phandle
837 * -EINVAL : parsing error on data
838 * [1..n] : Number of phandle (count mode; when index = -1)
839 */
840 rc = index < 0 ? cur_index : -ENOENT;
841 err:
842 return rc;
843}
844
1889a7e2
PF
845int fdtdec_get_child_count(const void *blob, int node)
846{
847 int subnode;
848 int num = 0;
849
df87e6b1 850 fdt_for_each_subnode(subnode, blob, node)
1889a7e2
PF
851 num++;
852
853 return num;
854}
855
bed4d892 856int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
2e38662d 857 u8 *array, int count)
bed4d892
AS
858{
859 const u8 *cell;
860 int err;
861
862 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
863 if (!err)
864 memcpy(array, cell, count);
865 return err;
866}
867
868const u8 *fdtdec_locate_byte_array(const void *blob, int node,
2e38662d 869 const char *prop_name, int count)
bed4d892
AS
870{
871 const u8 *cell;
872 int err;
873
874 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
875 if (err)
876 return NULL;
877 return cell;
878}
09258f1e 879
09258f1e 880int fdtdec_get_config_int(const void *blob, const char *prop_name,
2e38662d 881 int default_val)
09258f1e
AK
882{
883 int config_node;
884
885 debug("%s: %s\n", __func__, prop_name);
886 config_node = fdt_path_offset(blob, "/config");
887 if (config_node < 0)
888 return default_val;
889 return fdtdec_get_int(blob, config_node, prop_name, default_val);
890}
332ab0d5 891
79289c0b
GB
892int fdtdec_get_config_bool(const void *blob, const char *prop_name)
893{
894 int config_node;
895 const void *prop;
896
897 debug("%s: %s\n", __func__, prop_name);
898 config_node = fdt_path_offset(blob, "/config");
899 if (config_node < 0)
900 return 0;
901 prop = fdt_get_property(blob, config_node, prop_name, NULL);
902
903 return prop != NULL;
904}
905
332ab0d5
SG
906char *fdtdec_get_config_string(const void *blob, const char *prop_name)
907{
908 const char *nodep;
909 int nodeoffset;
910 int len;
911
912 debug("%s: %s\n", __func__, prop_name);
913 nodeoffset = fdt_path_offset(blob, "/config");
914 if (nodeoffset < 0)
915 return NULL;
916
917 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
918 if (!nodep)
919 return NULL;
920
921 return (char *)nodep;
922}
f20c4619 923
76489832
SG
924int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
925 fdt_addr_t *basep, fdt_size_t *sizep)
f20c4619
SG
926{
927 const fdt_addr_t *cell;
928 int len;
929
76489832
SG
930 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
931 prop_name);
f20c4619 932 cell = fdt_getprop(blob, node, prop_name, &len);
76489832
SG
933 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
934 debug("cell=%p, len=%d\n", cell, len);
f20c4619 935 return -1;
76489832
SG
936 }
937
938 *basep = fdt_addr_to_cpu(*cell);
939 *sizep = fdt_size_to_cpu(cell[1]);
940 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
941 (ulong)*sizep);
f20c4619 942
f20c4619
SG
943 return 0;
944}
006e73b9 945
5f7bfdd6 946u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
56f42242
TR
947{
948 u64 number = 0;
949
950 while (cells--)
951 number = (number << 32) | fdt32_to_cpu(*ptr++);
952
953 return number;
954}
955
956int fdt_get_resource(const void *fdt, int node, const char *property,
957 unsigned int index, struct fdt_resource *res)
958{
959 const fdt32_t *ptr, *end;
960 int na, ns, len, parent;
961 unsigned int i = 0;
962
963 parent = fdt_parent_offset(fdt, node);
964 if (parent < 0)
965 return parent;
966
967 na = fdt_address_cells(fdt, parent);
968 ns = fdt_size_cells(fdt, parent);
969
970 ptr = fdt_getprop(fdt, node, property, &len);
971 if (!ptr)
972 return len;
973
974 end = ptr + len / sizeof(*ptr);
975
976 while (ptr + na + ns <= end) {
977 if (i == index) {
978 res->start = res->end = fdtdec_get_number(ptr, na);
979 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
980 return 0;
981 }
982
983 ptr += na + ns;
984 i++;
985 }
986
987 return -FDT_ERR_NOTFOUND;
988}
989
990int fdt_get_named_resource(const void *fdt, int node, const char *property,
991 const char *prop_names, const char *name,
992 struct fdt_resource *res)
993{
994 int index;
995
b02e4044 996 index = fdt_stringlist_search(fdt, node, prop_names, name);
56f42242
TR
997 if (index < 0)
998 return index;
999
1000 return fdt_get_resource(fdt, node, property, index, res);
1001}
9f85eee7 1002
26403871
SG
1003int fdtdec_decode_memory_region(const void *blob, int config_node,
1004 const char *mem_type, const char *suffix,
1005 fdt_addr_t *basep, fdt_size_t *sizep)
1006{
1007 char prop_name[50];
1008 const char *mem;
1009 fdt_size_t size, offset_size;
1010 fdt_addr_t base, offset;
1011 int node;
1012
1013 if (config_node == -1) {
1014 config_node = fdt_path_offset(blob, "/config");
1015 if (config_node < 0) {
1016 debug("%s: Cannot find /config node\n", __func__);
1017 return -ENOENT;
1018 }
1019 }
1020 if (!suffix)
1021 suffix = "";
1022
1023 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
1024 suffix);
1025 mem = fdt_getprop(blob, config_node, prop_name, NULL);
1026 if (!mem) {
1027 debug("%s: No memory type for '%s', using /memory\n", __func__,
1028 prop_name);
1029 mem = "/memory";
1030 }
1031
1032 node = fdt_path_offset(blob, mem);
1033 if (node < 0) {
1034 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
1035 fdt_strerror(node));
1036 return -ENOENT;
1037 }
1038
1039 /*
1040 * Not strictly correct - the memory may have multiple banks. We just
1041 * use the first
1042 */
1043 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
1044 debug("%s: Failed to decode memory region %s\n", __func__,
1045 mem);
1046 return -EINVAL;
1047 }
1048
1049 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
1050 suffix);
1051 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
1052 &offset_size)) {
1053 debug("%s: Failed to decode memory region '%s'\n", __func__,
1054 prop_name);
1055 return -EINVAL;
1056 }
1057
1058 *basep = base + offset;
1059 *sizep = offset_size;
1060
1061 return 0;
1062}
b45122fd 1063
12e67114
SG
1064static int decode_timing_property(const void *blob, int node, const char *name,
1065 struct timing_entry *result)
1066{
1067 int length, ret = 0;
1068 const u32 *prop;
1069
1070 prop = fdt_getprop(blob, node, name, &length);
1071 if (!prop) {
1072 debug("%s: could not find property %s\n",
1073 fdt_get_name(blob, node, NULL), name);
1074 return length;
1075 }
1076
1077 if (length == sizeof(u32)) {
1078 result->typ = fdtdec_get_int(blob, node, name, 0);
1079 result->min = result->typ;
1080 result->max = result->typ;
1081 } else {
1082 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
1083 }
1084
1085 return ret;
1086}
1087
1088int fdtdec_decode_display_timing(const void *blob, int parent, int index,
1089 struct display_timing *dt)
1090{
1091 int i, node, timings_node;
1092 u32 val = 0;
1093 int ret = 0;
1094
1095 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1096 if (timings_node < 0)
1097 return timings_node;
1098
1099 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1100 node > 0 && i != index;
1101 node = fdt_next_subnode(blob, node))
1102 i++;
1103
1104 if (node < 0)
1105 return node;
1106
1107 memset(dt, 0, sizeof(*dt));
1108
1109 ret |= decode_timing_property(blob, node, "hback-porch",
1110 &dt->hback_porch);
1111 ret |= decode_timing_property(blob, node, "hfront-porch",
1112 &dt->hfront_porch);
1113 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1114 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1115 ret |= decode_timing_property(blob, node, "vback-porch",
1116 &dt->vback_porch);
1117 ret |= decode_timing_property(blob, node, "vfront-porch",
1118 &dt->vfront_porch);
1119 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1120 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1121 ret |= decode_timing_property(blob, node, "clock-frequency",
1122 &dt->pixelclock);
1123
1124 dt->flags = 0;
1125 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1126 if (val != -1) {
1127 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1128 DISPLAY_FLAGS_VSYNC_LOW;
1129 }
1130 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1131 if (val != -1) {
1132 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1133 DISPLAY_FLAGS_HSYNC_LOW;
1134 }
1135 val = fdtdec_get_int(blob, node, "de-active", -1);
1136 if (val != -1) {
1137 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1138 DISPLAY_FLAGS_DE_LOW;
1139 }
1140 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1141 if (val != -1) {
1142 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1143 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1144 }
1145
1146 if (fdtdec_get_bool(blob, node, "interlaced"))
1147 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1148 if (fdtdec_get_bool(blob, node, "doublescan"))
1149 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1150 if (fdtdec_get_bool(blob, node, "doubleclk"))
1151 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1152
04b9dd10 1153 return ret;
12e67114
SG
1154}
1155
623f6019
NR
1156int fdtdec_setup_memory_size(void)
1157{
1158 int ret, mem;
1159 struct fdt_resource res;
1160
1161 mem = fdt_path_offset(gd->fdt_blob, "/memory");
1162 if (mem < 0) {
1163 debug("%s: Missing /memory node\n", __func__);
1164 return -EINVAL;
1165 }
1166
1167 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", 0, &res);
1168 if (ret != 0) {
1169 debug("%s: Unable to decode first memory bank\n", __func__);
1170 return -EINVAL;
1171 }
1172
1173 gd->ram_size = (phys_size_t)(res.end - res.start + 1);
c69380f8
SG
1174 debug("%s: Initial DRAM size %llx\n", __func__,
1175 (unsigned long long)gd->ram_size);
623f6019
NR
1176
1177 return 0;
1178}
1179
1180#if defined(CONFIG_NR_DRAM_BANKS)
1181int fdtdec_setup_memory_banksize(void)
1182{
942ee093 1183 int bank, ret, mem, reg = 0;
623f6019
NR
1184 struct fdt_resource res;
1185
942ee093
MV
1186 mem = fdt_node_offset_by_prop_value(gd->fdt_blob, -1, "device_type",
1187 "memory", 7);
623f6019
NR
1188 if (mem < 0) {
1189 debug("%s: Missing /memory node\n", __func__);
1190 return -EINVAL;
1191 }
1192
1193 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
942ee093
MV
1194 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", reg++, &res);
1195 if (ret == -FDT_ERR_NOTFOUND) {
1196 reg = 0;
1197 mem = fdt_node_offset_by_prop_value(gd->fdt_blob, mem,
1198 "device_type",
1199 "memory", 7);
1200 if (mem == -FDT_ERR_NOTFOUND)
1201 break;
1202
1203 ret = fdt_get_resource(gd->fdt_blob, mem, "reg", reg++, &res);
1204 if (ret == -FDT_ERR_NOTFOUND)
1205 break;
1206 }
1207 if (ret != 0) {
623f6019 1208 return -EINVAL;
942ee093 1209 }
623f6019
NR
1210
1211 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1212 gd->bd->bi_dram[bank].size =
1213 (phys_size_t)(res.end - res.start + 1);
1214
1215 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1216 __func__, bank,
1217 (unsigned long long)gd->bd->bi_dram[bank].start,
1218 (unsigned long long)gd->bd->bi_dram[bank].size);
1219 }
1220
1221 return 0;
1222}
1223#endif
1224
2f57c951
JJH
1225#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1226# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1227 CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
1228static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1229{
1230 size_t sz_out = CONFIG_SPL_MULTI_DTB_FIT_UNCOMPRESS_SZ;
1231 ulong sz_in = sz_src;
1232 void *dst;
1233 int rc;
1234
1235 if (CONFIG_IS_ENABLED(GZIP))
1236 if (gzip_parse_header(src, sz_in) < 0)
1237 return -1;
1238 if (CONFIG_IS_ENABLED(LZO))
1239 if (!lzop_is_valid_header(src))
1240 return -EBADMSG;
1241
1242 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1243 dst = malloc(sz_out);
1244 if (!dst) {
1245 puts("uncompress_blob: Unable to allocate memory\n");
1246 return -ENOMEM;
1247 }
1248 } else {
1249# if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
1250 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
1251# else
1252 return -ENOTSUPP;
1253# endif
1254 }
1255
1256 if (CONFIG_IS_ENABLED(GZIP))
1257 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
1258 else if (CONFIG_IS_ENABLED(LZO))
1259 rc = lzop_decompress(src, sz_in, dst, &sz_out);
1260
1261 if (rc < 0) {
1262 /* not a valid compressed blob */
1263 puts("uncompress_blob: Unable to uncompress\n");
1264 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1265 free(dst);
1266 return -EBADMSG;
1267 }
1268 *dstp = dst;
1269 return 0;
1270}
1271# else
1272static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1273{
1274 return -ENOTSUPP;
1275}
1276# endif
1277#endif
1278
3b595da4
RC
1279#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1280/*
1281 * For CONFIG_OF_SEPARATE, the board may optionally implement this to
1282 * provide and/or fixup the fdt.
1283 */
1284__weak void *board_fdt_blob_setup(void)
1285{
1286 void *fdt_blob = NULL;
1287#ifdef CONFIG_SPL_BUILD
1288 /* FDT is at end of BSS unless it is in a different memory region */
1289 if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
1290 fdt_blob = (ulong *)&_image_binary_end;
1291 else
1292 fdt_blob = (ulong *)&__bss_end;
1293#else
1294 /* FDT is at end of image */
1295 fdt_blob = (ulong *)&_end;
1296#endif
1297 return fdt_blob;
1298}
1299#endif
1300
0879361f 1301int fdtdec_setup(void)
b45122fd 1302{
0f925822 1303#if CONFIG_IS_ENABLED(OF_CONTROL)
2f57c951
JJH
1304# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1305 void *fdt_blob;
1306# endif
b45122fd
SG
1307# ifdef CONFIG_OF_EMBED
1308 /* Get a pointer to the FDT */
9bd76b80
GS
1309# ifdef CONFIG_SPL_BUILD
1310 gd->fdt_blob = __dtb_dt_spl_begin;
1311# else
b45122fd 1312 gd->fdt_blob = __dtb_dt_begin;
9bd76b80 1313# endif
3b595da4 1314# elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
82f766d1
AD
1315 /* Allow the board to override the fdt address. */
1316 gd->fdt_blob = board_fdt_blob_setup();
b45122fd
SG
1317# elif defined(CONFIG_OF_HOSTFILE)
1318 if (sandbox_read_fdt_from_file()) {
1319 puts("Failed to read control FDT\n");
1320 return -1;
1321 }
1322# endif
1323# ifndef CONFIG_SPL_BUILD
1324 /* Allow the early environment to override the fdt address */
bfebc8c9 1325 gd->fdt_blob = (void *)env_get_ulong("fdtcontroladdr", 16,
b45122fd
SG
1326 (uintptr_t)gd->fdt_blob);
1327# endif
2f57c951
JJH
1328
1329# if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1330 /*
1331 * Try and uncompress the blob.
1332 * Unfortunately there is no way to know how big the input blob really
1333 * is. So let us set the maximum input size arbitrarily high. 16MB
1334 * ought to be more than enough for packed DTBs.
1335 */
1336 if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0)
1337 gd->fdt_blob = fdt_blob;
1338
1339 /*
1340 * Check if blob is a FIT images containings DTBs.
1341 * If so, pick the most relevant
1342 */
1343 fdt_blob = locate_dtb_in_fit(gd->fdt_blob);
1344 if (fdt_blob)
1345 gd->fdt_blob = fdt_blob;
1346# endif
29a23f9d 1347#endif
2f57c951 1348
0879361f 1349 return fdtdec_prepare_fdt();
b45122fd
SG
1350}
1351
1352#endif /* !USE_HOSTCC */