]> git.sur5r.net Git - u-boot/blob - lib/fdtdec.c
8c570c61e944fcd55bd2d62810230a6442a8ddb3
[u-boot] / lib / fdtdec.c
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors.
3  * SPDX-License-Identifier:     GPL-2.0+
4  */
5
6 #ifndef USE_HOSTCC
7 #include <common.h>
8 #include <boot_fit.h>
9 #include <dm.h>
10 #include <dm/of_extra.h>
11 #include <errno.h>
12 #include <fdtdec.h>
13 #include <fdt_support.h>
14 #include <libfdt.h>
15 #include <serial.h>
16 #include <asm/sections.h>
17 #include <linux/ctype.h>
18 #include <linux/lzo.h>
19
20 DECLARE_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.
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.
31  */
32 #define COMPAT(id, name) name
33 static const char * const compat_names[COMPAT_COUNT] = {
34         COMPAT(UNKNOWN, "<none>"),
35         COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
36         COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
37         COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
38         COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
39         COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
40         COMPAT(SMSC_LAN9215, "smsc,lan9215"),
41         COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
42         COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
43         COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
44         COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
45         COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
46         COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
47         COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
48         COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
49         COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
50         COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
51         COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686"),
52         COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
53         COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
54         COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
55         COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
56         COMPAT(INTEL_MICROCODE, "intel,microcode"),
57         COMPAT(AMS_AS3722, "ams,as3722"),
58         COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
59         COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
60         COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
61         COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"),
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"),
65         COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"),
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"),
74         COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"),
75         COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"),
76 };
77
78 const 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
85 fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
86                                       const char *prop_name, int index, int na,
87                                       int ns, fdt_size_t *sizep,
88                                       bool translate)
89 {
90         const fdt32_t *prop, *prop_end;
91         const fdt32_t *prop_addr, *prop_size, *prop_after_size;
92         int len;
93         fdt_addr_t addr;
94
95         debug("%s: %s: ", __func__, prop_name);
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
123 #if CONFIG_IS_ENABLED(OF_TRANSLATE)
124         if (translate)
125                 addr = fdt_translate_address(blob, node, prop_addr);
126         else
127 #endif
128                 addr = fdtdec_get_number(prop_addr, na);
129
130         if (sizep) {
131                 *sizep = fdtdec_get_number(prop_size, ns);
132                 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
133                       (unsigned long long)*sizep);
134         } else {
135                 debug("addr=%08llx\n", (unsigned long long)addr);
136         }
137
138         return addr;
139 }
140
141 fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
142                                             int node, const char *prop_name,
143                                             int index, fdt_size_t *sizep,
144                                             bool translate)
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);
157         if (ns < 0) {
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,
165                                           ns, sizep, translate);
166 }
167
168 fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
169                                               const char *prop_name, int index,
170                                               fdt_size_t *sizep,
171                                               bool translate)
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;
181         }
182
183         return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
184                                                 index, sizep, translate);
185 }
186
187 fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
188                                 const char *prop_name, fdt_size_t *sizep)
189 {
190         int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
191
192         return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
193                                           sizeof(fdt_addr_t) / sizeof(fdt32_t),
194                                           ns, sizep, false);
195 }
196
197 fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
198 {
199         return fdtdec_get_addr_size(blob, node, prop_name, NULL);
200 }
201
202 #if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI)
203 int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
204                         const char *prop_name, struct fdt_pci_addr *addr)
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,
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]);
235                                 break;
236                         } else {
237                                 cell += (FDT_PCI_ADDR_CELLS +
238                                          FDT_PCI_SIZE_CELLS);
239                         }
240                 }
241
242                 if (i == num) {
243                         ret = -ENXIO;
244                         goto fail;
245                 }
246
247                 return 0;
248         } else {
249                 ret = -EINVAL;
250         }
251
252 fail:
253         debug("(not found)\n");
254         return ret;
255 }
256
257 int 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                         }
288                 }
289                 list += (len + 1);
290         }
291
292         return -ENOENT;
293 }
294
295 int fdtdec_get_pci_bar32(struct udevice *dev, struct fdt_pci_addr *addr,
296                          u32 *bar)
297 {
298         int barnum;
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;
306         *bar = dm_pci_read_bar32(dev, barnum);
307
308         return 0;
309 }
310 #endif
311
312 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
313                            uint64_t default_val)
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
325 int fdtdec_get_is_enabled(const void *blob, int node)
326 {
327         const char *cell;
328
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          */
336         cell = fdt_getprop(blob, node, "status", NULL);
337         if (cell)
338                 return 0 == strcmp(cell, "okay");
339         return 1;
340 }
341
342 enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
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
354 int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
355 {
356         return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
357 }
358
359 int fdtdec_next_compatible_subnode(const void *blob, int node,
360                                    enum fdt_compat_id id, int *depthp)
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
374 int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
375                       int *upto)
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);
384         node = fdt_path_offset(blob, str);
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;
390         if (err)
391                 return -FDT_ERR_NOTFOUND;
392         (*upto)++;
393         return node;
394 }
395
396 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
397                                enum fdt_compat_id id, int *node_list,
398                                int maxcount)
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? */
406 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
407                               enum fdt_compat_id id, int *node_list,
408                               int maxcount)
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",
435                       __func__, name);
436
437         /* Now find all the aliases */
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",
458                               __func__, path);
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)) {
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                         }
492                         node_list[number] = node;
493                         if (number >= num_found)
494                                 num_found = number + 1;
495                 }
496                 nodes[found] = 0;
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] &&
504                                     fdtdec_get_is_enabled(blob, nodes[j]))
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
521 int 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;
540                 int len, val;
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;
551                 val = trailing_strtol(name);
552                 if (val != -1) {
553                         *seqp = val;
554                         debug("Found seq %d\n", *seqp);
555                         return 0;
556                 }
557         }
558
559         debug("Not found\n");
560         return -ENOENT;
561 }
562
563 const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
564 {
565         int chosen_node;
566
567         if (!blob)
568                 return NULL;
569         chosen_node = fdt_path_offset(blob, "/chosen");
570         return fdt_getprop(blob, chosen_node, name, NULL);
571 }
572
573 int fdtdec_get_chosen_node(const void *blob, const char *name)
574 {
575         const char *prop;
576
577         prop = fdtdec_get_chosen_prop(blob, name);
578         if (!prop)
579                 return -FDT_ERR_NOTFOUND;
580         return fdt_path_offset(blob, prop);
581 }
582
583 int 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
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  */
600 int fdtdec_prepare_fdt(void)
601 {
602         if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
603             fdt_check_header(gd->fdt_blob)) {
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");
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
615 #endif
616                 return -1;
617         }
618         return 0;
619 }
620
621 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
622 {
623         const u32 *phandle;
624         int lookup;
625
626         debug("%s: %s\n", __func__, prop_name);
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  */
646 static const void *get_prop_check_min_len(const void *blob, int node,
647                                           const char *prop_name, int min_len,
648                                           int *err)
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
664 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
665                          u32 *array, int count)
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
680 int 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
700 const 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
711 int 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 }
720
721 int 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
845 int fdtdec_get_child_count(const void *blob, int node)
846 {
847         int subnode;
848         int num = 0;
849
850         fdt_for_each_subnode(subnode, blob, node)
851                 num++;
852
853         return num;
854 }
855
856 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
857                           u8 *array, int count)
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
868 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
869                                    const char *prop_name, int count)
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 }
879
880 int fdtdec_get_config_int(const void *blob, const char *prop_name,
881                           int default_val)
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 }
891
892 int 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
906 char *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 }
923
924 int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
925                          fdt_addr_t *basep, fdt_size_t *sizep)
926 {
927         const fdt_addr_t *cell;
928         int len;
929
930         debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
931               prop_name);
932         cell = fdt_getprop(blob, node, prop_name, &len);
933         if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
934                 debug("cell=%p, len=%d\n", cell, len);
935                 return -1;
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);
942
943         return 0;
944 }
945
946 u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
947 {
948         u64 number = 0;
949
950         while (cells--)
951                 number = (number << 32) | fdt32_to_cpu(*ptr++);
952
953         return number;
954 }
955
956 int 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
990 int 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
996         index = fdt_stringlist_search(fdt, node, prop_names, name);
997         if (index < 0)
998                 return index;
999
1000         return fdt_get_resource(fdt, node, property, index, res);
1001 }
1002
1003 int 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 }
1063
1064 static 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
1088 int 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
1153         return ret;
1154 }
1155
1156 int 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);
1174         debug("%s: Initial DRAM size %llx\n", __func__,
1175               (unsigned long long)gd->ram_size);
1176
1177         return 0;
1178 }
1179
1180 #if defined(CONFIG_NR_DRAM_BANKS)
1181 int fdtdec_setup_memory_banksize(void)
1182 {
1183         int bank, ret, mem, reg = 0;
1184         struct fdt_resource res;
1185
1186         mem = fdt_node_offset_by_prop_value(gd->fdt_blob, -1, "device_type",
1187                                             "memory", 7);
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++) {
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) {
1208                         return -EINVAL;
1209                 }
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
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)
1228 static 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
1272 static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1273 {
1274         return -ENOTSUPP;
1275 }
1276 # endif
1277 #endif
1278
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
1301 int fdtdec_setup(void)
1302 {
1303 #if CONFIG_IS_ENABLED(OF_CONTROL)
1304 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1305         void *fdt_blob;
1306 # endif
1307 # ifdef CONFIG_OF_EMBED
1308         /* Get a pointer to the FDT */
1309 #  ifdef CONFIG_SPL_BUILD
1310         gd->fdt_blob = __dtb_dt_spl_begin;
1311 #  else
1312         gd->fdt_blob = __dtb_dt_begin;
1313 #  endif
1314 # elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1315         /* Allow the board to override the fdt address. */
1316         gd->fdt_blob = board_fdt_blob_setup();
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 */
1325         gd->fdt_blob = (void *)env_get_ulong("fdtcontroladdr", 16,
1326                                                 (uintptr_t)gd->fdt_blob);
1327 # endif
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
1347 #endif
1348
1349         return fdtdec_prepare_fdt();
1350 }
1351
1352 #endif /* !USE_HOSTCC */