Merge https://source.denx.de/u-boot/custodians/u-boot-samsung
[platform/kernel/u-boot.git] / lib / fdtdec.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  */
5
6 #ifndef USE_HOSTCC
7 #include <common.h>
8 #include <boot_fit.h>
9 #include <dm.h>
10 #include <hang.h>
11 #include <init.h>
12 #include <log.h>
13 #include <malloc.h>
14 #include <net.h>
15 #include <dm/of_extra.h>
16 #include <env.h>
17 #include <errno.h>
18 #include <fdtdec.h>
19 #include <fdt_support.h>
20 #include <gzip.h>
21 #include <mapmem.h>
22 #include <linux/libfdt.h>
23 #include <serial.h>
24 #include <asm/global_data.h>
25 #include <asm/sections.h>
26 #include <linux/ctype.h>
27 #include <linux/lzo.h>
28 #include <linux/ioport.h>
29
30 DECLARE_GLOBAL_DATA_PTR;
31
32 /*
33  * Here are the type we know about. One day we might allow drivers to
34  * register. For now we just put them here. The COMPAT macro allows us to
35  * turn this into a sparse list later, and keeps the ID with the name.
36  *
37  * NOTE: This list is basically a TODO list for things that need to be
38  * converted to driver model. So don't add new things here unless there is a
39  * good reason why driver-model conversion is infeasible. Examples include
40  * things which are used before driver model is available.
41  */
42 #define COMPAT(id, name) name
43 static const char * const compat_names[COMPAT_COUNT] = {
44         COMPAT(UNKNOWN, "<none>"),
45         COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
46         COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
47         COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
48         COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
49         COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
50         COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
51         COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
52         COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
53         COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
54         COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
55         COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"),
56         COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
57         COMPAT(INTEL_MICROCODE, "intel,microcode"),
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         COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init")
77 };
78
79 const char *fdtdec_get_compatible(enum fdt_compat_id id)
80 {
81         /* We allow reading of the 'unknown' ID for testing purposes */
82         assert(id >= 0 && id < COMPAT_COUNT);
83         return compat_names[id];
84 }
85
86 fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
87                                       const char *prop_name, int index, int na,
88                                       int ns, fdt_size_t *sizep,
89                                       bool translate)
90 {
91         const fdt32_t *prop, *prop_end;
92         const fdt32_t *prop_addr, *prop_size, *prop_after_size;
93         int len;
94         fdt_addr_t addr;
95
96         debug("%s: %s: ", __func__, prop_name);
97
98         prop = fdt_getprop(blob, node, prop_name, &len);
99         if (!prop) {
100                 debug("(not found)\n");
101                 return FDT_ADDR_T_NONE;
102         }
103         prop_end = prop + (len / sizeof(*prop));
104
105         prop_addr = prop + (index * (na + ns));
106         prop_size = prop_addr + na;
107         prop_after_size = prop_size + ns;
108         if (prop_after_size > prop_end) {
109                 debug("(not enough data: expected >= %d cells, got %d cells)\n",
110                       (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
111                 return FDT_ADDR_T_NONE;
112         }
113
114 #if CONFIG_IS_ENABLED(OF_TRANSLATE)
115         if (translate)
116                 addr = fdt_translate_address(blob, node, prop_addr);
117         else
118 #endif
119                 addr = fdtdec_get_number(prop_addr, na);
120
121         if (sizep) {
122                 *sizep = fdtdec_get_number(prop_size, ns);
123                 debug("addr=%08llx, size=%llx\n", (unsigned long long)addr,
124                       (unsigned long long)*sizep);
125         } else {
126                 debug("addr=%08llx\n", (unsigned long long)addr);
127         }
128
129         return addr;
130 }
131
132 fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
133                                             int node, const char *prop_name,
134                                             int index, fdt_size_t *sizep,
135                                             bool translate)
136 {
137         int na, ns;
138
139         debug("%s: ", __func__);
140
141         na = fdt_address_cells(blob, parent);
142         if (na < 1) {
143                 debug("(bad #address-cells)\n");
144                 return FDT_ADDR_T_NONE;
145         }
146
147         ns = fdt_size_cells(blob, parent);
148         if (ns < 0) {
149                 debug("(bad #size-cells)\n");
150                 return FDT_ADDR_T_NONE;
151         }
152
153         debug("na=%d, ns=%d, ", na, ns);
154
155         return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
156                                           ns, sizep, translate);
157 }
158
159 fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
160                                               const char *prop_name, int index,
161                                               fdt_size_t *sizep,
162                                               bool translate)
163 {
164         int parent;
165
166         debug("%s: ", __func__);
167
168         parent = fdt_parent_offset(blob, node);
169         if (parent < 0) {
170                 debug("(no parent found)\n");
171                 return FDT_ADDR_T_NONE;
172         }
173
174         return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
175                                                 index, sizep, translate);
176 }
177
178 fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
179                                 const char *prop_name, fdt_size_t *sizep)
180 {
181         int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0;
182
183         return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
184                                           sizeof(fdt_addr_t) / sizeof(fdt32_t),
185                                           ns, sizep, false);
186 }
187
188 fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name)
189 {
190         return fdtdec_get_addr_size(blob, node, prop_name, NULL);
191 }
192
193 #if CONFIG_IS_ENABLED(PCI) && defined(CONFIG_DM_PCI)
194 int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
195 {
196         const char *list, *end;
197         int len;
198
199         list = fdt_getprop(blob, node, "compatible", &len);
200         if (!list)
201                 return -ENOENT;
202
203         end = list + len;
204         while (list < end) {
205                 len = strlen(list);
206                 if (len >= strlen("pciVVVV,DDDD")) {
207                         char *s = strstr(list, "pci");
208
209                         /*
210                          * check if the string is something like pciVVVV,DDDD.RR
211                          * or just pciVVVV,DDDD
212                          */
213                         if (s && s[7] == ',' &&
214                             (s[12] == '.' || s[12] == 0)) {
215                                 s += 3;
216                                 *vendor = simple_strtol(s, NULL, 16);
217
218                                 s += 5;
219                                 *device = simple_strtol(s, NULL, 16);
220
221                                 return 0;
222                         }
223                 }
224                 list += (len + 1);
225         }
226
227         return -ENOENT;
228 }
229
230 int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
231                          u32 *bar)
232 {
233         int barnum;
234
235         /* extract the bar number from fdt_pci_addr */
236         barnum = addr->phys_hi & 0xff;
237         if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS)
238                 return -EINVAL;
239
240         barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
241         *bar = dm_pci_read_bar32(dev, barnum);
242
243         return 0;
244 }
245
246 int fdtdec_get_pci_bus_range(const void *blob, int node,
247                              struct fdt_resource *res)
248 {
249         const u32 *values;
250         int len;
251
252         values = fdt_getprop(blob, node, "bus-range", &len);
253         if (!values || len < sizeof(*values) * 2)
254                 return -EINVAL;
255
256         res->start = fdt32_to_cpu(*values++);
257         res->end = fdt32_to_cpu(*values);
258
259         return 0;
260 }
261 #endif
262
263 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
264                            uint64_t default_val)
265 {
266         const unaligned_fdt64_t *cell64;
267         int length;
268
269         cell64 = fdt_getprop(blob, node, prop_name, &length);
270         if (!cell64 || length < sizeof(*cell64))
271                 return default_val;
272
273         return fdt64_to_cpu(*cell64);
274 }
275
276 int fdtdec_get_is_enabled(const void *blob, int node)
277 {
278         const char *cell;
279
280         /*
281          * It should say "okay", so only allow that. Some fdts use "ok" but
282          * this is a bug. Please fix your device tree source file. See here
283          * for discussion:
284          *
285          * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
286          */
287         cell = fdt_getprop(blob, node, "status", NULL);
288         if (cell)
289                 return strcmp(cell, "okay") == 0;
290         return 1;
291 }
292
293 enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
294 {
295         enum fdt_compat_id id;
296
297         /* Search our drivers */
298         for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
299                 if (fdt_node_check_compatible(blob, node,
300                                               compat_names[id]) == 0)
301                         return id;
302         return COMPAT_UNKNOWN;
303 }
304
305 int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id)
306 {
307         return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
308 }
309
310 int fdtdec_next_compatible_subnode(const void *blob, int node,
311                                    enum fdt_compat_id id, int *depthp)
312 {
313         do {
314                 node = fdt_next_node(blob, node, depthp);
315         } while (*depthp > 1);
316
317         /* If this is a direct subnode, and compatible, return it */
318         if (*depthp == 1 && 0 == fdt_node_check_compatible(
319                                                 blob, node, compat_names[id]))
320                 return node;
321
322         return -FDT_ERR_NOTFOUND;
323 }
324
325 int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id,
326                       int *upto)
327 {
328 #define MAX_STR_LEN 20
329         char str[MAX_STR_LEN + 20];
330         int node, err;
331
332         /* snprintf() is not available */
333         assert(strlen(name) < MAX_STR_LEN);
334         sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
335         node = fdt_path_offset(blob, str);
336         if (node < 0)
337                 return node;
338         err = fdt_node_check_compatible(blob, node, compat_names[id]);
339         if (err < 0)
340                 return err;
341         if (err)
342                 return -FDT_ERR_NOTFOUND;
343         (*upto)++;
344         return node;
345 }
346
347 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
348                                enum fdt_compat_id id, int *node_list,
349                                int maxcount)
350 {
351         memset(node_list, '\0', sizeof(*node_list) * maxcount);
352
353         return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
354 }
355
356 /* TODO: Can we tighten this code up a little? */
357 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
358                               enum fdt_compat_id id, int *node_list,
359                               int maxcount)
360 {
361         int name_len = strlen(name);
362         int nodes[maxcount];
363         int num_found = 0;
364         int offset, node;
365         int alias_node;
366         int count;
367         int i, j;
368
369         /* find the alias node if present */
370         alias_node = fdt_path_offset(blob, "/aliases");
371
372         /*
373          * start with nothing, and we can assume that the root node can't
374          * match
375          */
376         memset(nodes, '\0', sizeof(nodes));
377
378         /* First find all the compatible nodes */
379         for (node = count = 0; node >= 0 && count < maxcount;) {
380                 node = fdtdec_next_compatible(blob, node, id);
381                 if (node >= 0)
382                         nodes[count++] = node;
383         }
384         if (node >= 0)
385                 debug("%s: warning: maxcount exceeded with alias '%s'\n",
386                       __func__, name);
387
388         /* Now find all the aliases */
389         for (offset = fdt_first_property_offset(blob, alias_node);
390                         offset > 0;
391                         offset = fdt_next_property_offset(blob, offset)) {
392                 const struct fdt_property *prop;
393                 const char *path;
394                 int number;
395                 int found;
396
397                 node = 0;
398                 prop = fdt_get_property_by_offset(blob, offset, NULL);
399                 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
400                 if (prop->len && 0 == strncmp(path, name, name_len))
401                         node = fdt_path_offset(blob, prop->data);
402                 if (node <= 0)
403                         continue;
404
405                 /* Get the alias number */
406                 number = dectoul(path + name_len, NULL);
407                 if (number < 0 || number >= maxcount) {
408                         debug("%s: warning: alias '%s' is out of range\n",
409                               __func__, path);
410                         continue;
411                 }
412
413                 /* Make sure the node we found is actually in our list! */
414                 found = -1;
415                 for (j = 0; j < count; j++)
416                         if (nodes[j] == node) {
417                                 found = j;
418                                 break;
419                         }
420
421                 if (found == -1) {
422                         debug("%s: warning: alias '%s' points to a node "
423                                 "'%s' that is missing or is not compatible "
424                                 " with '%s'\n", __func__, path,
425                                 fdt_get_name(blob, node, NULL),
426                                compat_names[id]);
427                         continue;
428                 }
429
430                 /*
431                  * Add this node to our list in the right place, and mark
432                  * it as done.
433                  */
434                 if (fdtdec_get_is_enabled(blob, node)) {
435                         if (node_list[number]) {
436                                 debug("%s: warning: alias '%s' requires that "
437                                       "a node be placed in the list in a "
438                                       "position which is already filled by "
439                                       "node '%s'\n", __func__, path,
440                                       fdt_get_name(blob, node, NULL));
441                                 continue;
442                         }
443                         node_list[number] = node;
444                         if (number >= num_found)
445                                 num_found = number + 1;
446                 }
447                 nodes[found] = 0;
448         }
449
450         /* Add any nodes not mentioned by an alias */
451         for (i = j = 0; i < maxcount; i++) {
452                 if (!node_list[i]) {
453                         for (; j < maxcount; j++)
454                                 if (nodes[j] &&
455                                     fdtdec_get_is_enabled(blob, nodes[j]))
456                                         break;
457
458                         /* Have we run out of nodes to add? */
459                         if (j == maxcount)
460                                 break;
461
462                         assert(!node_list[i]);
463                         node_list[i] = nodes[j++];
464                         if (i >= num_found)
465                                 num_found = i + 1;
466                 }
467         }
468
469         return num_found;
470 }
471
472 int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
473                          int *seqp)
474 {
475         int base_len = strlen(base);
476         const char *find_name;
477         int find_namelen;
478         int prop_offset;
479         int aliases;
480
481         find_name = fdt_get_name(blob, offset, &find_namelen);
482         debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
483
484         aliases = fdt_path_offset(blob, "/aliases");
485         for (prop_offset = fdt_first_property_offset(blob, aliases);
486              prop_offset > 0;
487              prop_offset = fdt_next_property_offset(blob, prop_offset)) {
488                 const char *prop;
489                 const char *name;
490                 const char *slash;
491                 int len, val;
492
493                 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
494                 debug("   - %s, %s\n", name, prop);
495                 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
496                     strncmp(name, base, base_len))
497                         continue;
498
499                 slash = strrchr(prop, '/');
500                 if (strcmp(slash + 1, find_name))
501                         continue;
502
503                 /*
504                  * Adding an extra check to distinguish DT nodes with
505                  * same name
506                  */
507                 if (IS_ENABLED(CONFIG_PHANDLE_CHECK_SEQ)) {
508                         if (fdt_get_phandle(blob, offset) !=
509                             fdt_get_phandle(blob, fdt_path_offset(blob, prop)))
510                                 continue;
511                 }
512
513                 val = trailing_strtol(name);
514                 if (val != -1) {
515                         *seqp = val;
516                         debug("Found seq %d\n", *seqp);
517                         return 0;
518                 }
519         }
520
521         debug("Not found\n");
522         return -ENOENT;
523 }
524
525 int fdtdec_get_alias_highest_id(const void *blob, const char *base)
526 {
527         int base_len = strlen(base);
528         int prop_offset;
529         int aliases;
530         int max = -1;
531
532         debug("Looking for highest alias id for '%s'\n", base);
533
534         aliases = fdt_path_offset(blob, "/aliases");
535         for (prop_offset = fdt_first_property_offset(blob, aliases);
536              prop_offset > 0;
537              prop_offset = fdt_next_property_offset(blob, prop_offset)) {
538                 const char *prop;
539                 const char *name;
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 (*prop != '/' || prop[len - 1] ||
545                     strncmp(name, base, base_len))
546                         continue;
547
548                 val = trailing_strtol(name);
549                 if (val > max) {
550                         debug("Found seq %d\n", val);
551                         max = val;
552                 }
553         }
554
555         return max;
556 }
557
558 const char *fdtdec_get_chosen_prop(const void *blob, const char *name)
559 {
560         int chosen_node;
561
562         if (!blob)
563                 return NULL;
564         chosen_node = fdt_path_offset(blob, "/chosen");
565         return fdt_getprop(blob, chosen_node, name, NULL);
566 }
567
568 int fdtdec_get_chosen_node(const void *blob, const char *name)
569 {
570         const char *prop;
571
572         prop = fdtdec_get_chosen_prop(blob, name);
573         if (!prop)
574                 return -FDT_ERR_NOTFOUND;
575         return fdt_path_offset(blob, prop);
576 }
577
578 int fdtdec_check_fdt(void)
579 {
580         /*
581          * We must have an FDT, but we cannot panic() yet since the console
582          * is not ready. So for now, just assert(). Boards which need an early
583          * FDT (prior to console ready) will need to make their own
584          * arrangements and do their own checks.
585          */
586         assert(!fdtdec_prepare_fdt());
587         return 0;
588 }
589
590 /*
591  * This function is a little odd in that it accesses global data. At some
592  * point if the architecture board.c files merge this will make more sense.
593  * Even now, it is common code.
594  */
595 int fdtdec_prepare_fdt(void)
596 {
597         if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
598             fdt_check_header(gd->fdt_blob)) {
599 #ifdef CONFIG_SPL_BUILD
600                 puts("Missing DTB\n");
601 #else
602                 printf("No valid device tree binary found at %p\n",
603                        gd->fdt_blob);
604 # ifdef DEBUG
605                 if (gd->fdt_blob) {
606                         printf("fdt_blob=%p\n", gd->fdt_blob);
607                         print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
608                                      32, 0);
609                 }
610 # endif
611 #endif
612                 return -1;
613         }
614         return 0;
615 }
616
617 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
618 {
619         const u32 *phandle;
620         int lookup;
621
622         debug("%s: %s\n", __func__, prop_name);
623         phandle = fdt_getprop(blob, node, prop_name, NULL);
624         if (!phandle)
625                 return -FDT_ERR_NOTFOUND;
626
627         lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
628         return lookup;
629 }
630
631 /**
632  * Look up a property in a node and check that it has a minimum length.
633  *
634  * @param blob          FDT blob
635  * @param node          node to examine
636  * @param prop_name     name of property to find
637  * @param min_len       minimum property length in bytes
638  * @param err           0 if ok, or -FDT_ERR_NOTFOUND if the property is not
639                         found, or -FDT_ERR_BADLAYOUT if not enough data
640  * @return pointer to cell, which is only valid if err == 0
641  */
642 static const void *get_prop_check_min_len(const void *blob, int node,
643                                           const char *prop_name, int min_len,
644                                           int *err)
645 {
646         const void *cell;
647         int len;
648
649         debug("%s: %s\n", __func__, prop_name);
650         cell = fdt_getprop(blob, node, prop_name, &len);
651         if (!cell)
652                 *err = -FDT_ERR_NOTFOUND;
653         else if (len < min_len)
654                 *err = -FDT_ERR_BADLAYOUT;
655         else
656                 *err = 0;
657         return cell;
658 }
659
660 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
661                          u32 *array, int count)
662 {
663         const u32 *cell;
664         int err = 0;
665
666         debug("%s: %s\n", __func__, prop_name);
667         cell = get_prop_check_min_len(blob, node, prop_name,
668                                       sizeof(u32) * count, &err);
669         if (!err) {
670                 int i;
671
672                 for (i = 0; i < count; i++)
673                         array[i] = fdt32_to_cpu(cell[i]);
674         }
675         return err;
676 }
677
678 int fdtdec_get_int_array_count(const void *blob, int node,
679                                const char *prop_name, u32 *array, int count)
680 {
681         const u32 *cell;
682         int len, elems;
683         int i;
684
685         debug("%s: %s\n", __func__, prop_name);
686         cell = fdt_getprop(blob, node, prop_name, &len);
687         if (!cell)
688                 return -FDT_ERR_NOTFOUND;
689         elems = len / sizeof(u32);
690         if (count > elems)
691                 count = elems;
692         for (i = 0; i < count; i++)
693                 array[i] = fdt32_to_cpu(cell[i]);
694
695         return count;
696 }
697
698 const u32 *fdtdec_locate_array(const void *blob, int node,
699                                const char *prop_name, int count)
700 {
701         const u32 *cell;
702         int err;
703
704         cell = get_prop_check_min_len(blob, node, prop_name,
705                                       sizeof(u32) * count, &err);
706         return err ? NULL : cell;
707 }
708
709 int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
710 {
711         const s32 *cell;
712         int len;
713
714         debug("%s: %s\n", __func__, prop_name);
715         cell = fdt_getprop(blob, node, prop_name, &len);
716         return cell != NULL;
717 }
718
719 int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
720                                    const char *list_name,
721                                    const char *cells_name,
722                                    int cell_count, int index,
723                                    struct fdtdec_phandle_args *out_args)
724 {
725         const __be32 *list, *list_end;
726         int rc = 0, size, cur_index = 0;
727         uint32_t count = 0;
728         int node = -1;
729         int phandle;
730
731         /* Retrieve the phandle list property */
732         list = fdt_getprop(blob, src_node, list_name, &size);
733         if (!list)
734                 return -ENOENT;
735         list_end = list + size / sizeof(*list);
736
737         /* Loop over the phandles until all the requested entry is found */
738         while (list < list_end) {
739                 rc = -EINVAL;
740                 count = 0;
741
742                 /*
743                  * If phandle is 0, then it is an empty entry with no
744                  * arguments.  Skip forward to the next entry.
745                  */
746                 phandle = be32_to_cpup(list++);
747                 if (phandle) {
748                         /*
749                          * Find the provider node and parse the #*-cells
750                          * property to determine the argument length.
751                          *
752                          * This is not needed if the cell count is hard-coded
753                          * (i.e. cells_name not set, but cell_count is set),
754                          * except when we're going to return the found node
755                          * below.
756                          */
757                         if (cells_name || cur_index == index) {
758                                 node = fdt_node_offset_by_phandle(blob,
759                                                                   phandle);
760                                 if (node < 0) {
761                                         debug("%s: could not find phandle\n",
762                                               fdt_get_name(blob, src_node,
763                                                            NULL));
764                                         goto err;
765                                 }
766                         }
767
768                         if (cells_name) {
769                                 count = fdtdec_get_int(blob, node, cells_name,
770                                                        -1);
771                                 if (count == -1) {
772                                         debug("%s: could not get %s for %s\n",
773                                               fdt_get_name(blob, src_node,
774                                                            NULL),
775                                               cells_name,
776                                               fdt_get_name(blob, node,
777                                                            NULL));
778                                         goto err;
779                                 }
780                         } else {
781                                 count = cell_count;
782                         }
783
784                         /*
785                          * Make sure that the arguments actually fit in the
786                          * remaining property data length
787                          */
788                         if (list + count > list_end) {
789                                 debug("%s: arguments longer than property\n",
790                                       fdt_get_name(blob, src_node, NULL));
791                                 goto err;
792                         }
793                 }
794
795                 /*
796                  * All of the error cases above bail out of the loop, so at
797                  * this point, the parsing is successful. If the requested
798                  * index matches, then fill the out_args structure and return,
799                  * or return -ENOENT for an empty entry.
800                  */
801                 rc = -ENOENT;
802                 if (cur_index == index) {
803                         if (!phandle)
804                                 goto err;
805
806                         if (out_args) {
807                                 int i;
808
809                                 if (count > MAX_PHANDLE_ARGS) {
810                                         debug("%s: too many arguments %d\n",
811                                               fdt_get_name(blob, src_node,
812                                                            NULL), count);
813                                         count = MAX_PHANDLE_ARGS;
814                                 }
815                                 out_args->node = node;
816                                 out_args->args_count = count;
817                                 for (i = 0; i < count; i++) {
818                                         out_args->args[i] =
819                                                         be32_to_cpup(list++);
820                                 }
821                         }
822
823                         /* Found it! return success */
824                         return 0;
825                 }
826
827                 node = -1;
828                 list += count;
829                 cur_index++;
830         }
831
832         /*
833          * Result will be one of:
834          * -ENOENT : index is for empty phandle
835          * -EINVAL : parsing error on data
836          * [1..n]  : Number of phandle (count mode; when index = -1)
837          */
838         rc = index < 0 ? cur_index : -ENOENT;
839  err:
840         return rc;
841 }
842
843 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
844                           u8 *array, int count)
845 {
846         const u8 *cell;
847         int err;
848
849         cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
850         if (!err)
851                 memcpy(array, cell, count);
852         return err;
853 }
854
855 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
856                                    const char *prop_name, int count)
857 {
858         const u8 *cell;
859         int err;
860
861         cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
862         if (err)
863                 return NULL;
864         return cell;
865 }
866
867 int fdtdec_get_config_int(const void *blob, const char *prop_name,
868                           int default_val)
869 {
870         int config_node;
871
872         debug("%s: %s\n", __func__, prop_name);
873         config_node = fdt_path_offset(blob, "/config");
874         if (config_node < 0)
875                 return default_val;
876         return fdtdec_get_int(blob, config_node, prop_name, default_val);
877 }
878
879 int fdtdec_get_config_bool(const void *blob, const char *prop_name)
880 {
881         int config_node;
882         const void *prop;
883
884         debug("%s: %s\n", __func__, prop_name);
885         config_node = fdt_path_offset(blob, "/config");
886         if (config_node < 0)
887                 return 0;
888         prop = fdt_get_property(blob, config_node, prop_name, NULL);
889
890         return prop != NULL;
891 }
892
893 char *fdtdec_get_config_string(const void *blob, const char *prop_name)
894 {
895         const char *nodep;
896         int nodeoffset;
897         int len;
898
899         debug("%s: %s\n", __func__, prop_name);
900         nodeoffset = fdt_path_offset(blob, "/config");
901         if (nodeoffset < 0)
902                 return NULL;
903
904         nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
905         if (!nodep)
906                 return NULL;
907
908         return (char *)nodep;
909 }
910
911 u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
912 {
913         u64 number = 0;
914
915         while (cells--)
916                 number = (number << 32) | fdt32_to_cpu(*ptr++);
917
918         return number;
919 }
920
921 int fdt_get_resource(const void *fdt, int node, const char *property,
922                      unsigned int index, struct fdt_resource *res)
923 {
924         const fdt32_t *ptr, *end;
925         int na, ns, len, parent;
926         unsigned int i = 0;
927
928         parent = fdt_parent_offset(fdt, node);
929         if (parent < 0)
930                 return parent;
931
932         na = fdt_address_cells(fdt, parent);
933         ns = fdt_size_cells(fdt, parent);
934
935         ptr = fdt_getprop(fdt, node, property, &len);
936         if (!ptr)
937                 return len;
938
939         end = ptr + len / sizeof(*ptr);
940
941         while (ptr + na + ns <= end) {
942                 if (i == index) {
943                         if (CONFIG_IS_ENABLED(OF_TRANSLATE))
944                                 res->start = fdt_translate_address(fdt, node, ptr);
945                         else
946                                 res->start = fdtdec_get_number(ptr, na);
947
948                         res->end = res->start;
949                         res->end += fdtdec_get_number(&ptr[na], ns) - 1;
950                         return 0;
951                 }
952
953                 ptr += na + ns;
954                 i++;
955         }
956
957         return -FDT_ERR_NOTFOUND;
958 }
959
960 int fdt_get_named_resource(const void *fdt, int node, const char *property,
961                            const char *prop_names, const char *name,
962                            struct fdt_resource *res)
963 {
964         int index;
965
966         index = fdt_stringlist_search(fdt, node, prop_names, name);
967         if (index < 0)
968                 return index;
969
970         return fdt_get_resource(fdt, node, property, index, res);
971 }
972
973 static int decode_timing_property(const void *blob, int node, const char *name,
974                                   struct timing_entry *result)
975 {
976         int length, ret = 0;
977         const u32 *prop;
978
979         prop = fdt_getprop(blob, node, name, &length);
980         if (!prop) {
981                 debug("%s: could not find property %s\n",
982                       fdt_get_name(blob, node, NULL), name);
983                 return length;
984         }
985
986         if (length == sizeof(u32)) {
987                 result->typ = fdtdec_get_int(blob, node, name, 0);
988                 result->min = result->typ;
989                 result->max = result->typ;
990         } else {
991                 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
992         }
993
994         return ret;
995 }
996
997 int fdtdec_decode_display_timing(const void *blob, int parent, int index,
998                                  struct display_timing *dt)
999 {
1000         int i, node, timings_node;
1001         u32 val = 0;
1002         int ret = 0;
1003
1004         timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1005         if (timings_node < 0)
1006                 return timings_node;
1007
1008         for (i = 0, node = fdt_first_subnode(blob, timings_node);
1009              node > 0 && i != index;
1010              node = fdt_next_subnode(blob, node))
1011                 i++;
1012
1013         if (node < 0)
1014                 return node;
1015
1016         memset(dt, 0, sizeof(*dt));
1017
1018         ret |= decode_timing_property(blob, node, "hback-porch",
1019                                       &dt->hback_porch);
1020         ret |= decode_timing_property(blob, node, "hfront-porch",
1021                                       &dt->hfront_porch);
1022         ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1023         ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1024         ret |= decode_timing_property(blob, node, "vback-porch",
1025                                       &dt->vback_porch);
1026         ret |= decode_timing_property(blob, node, "vfront-porch",
1027                                       &dt->vfront_porch);
1028         ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1029         ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1030         ret |= decode_timing_property(blob, node, "clock-frequency",
1031                                       &dt->pixelclock);
1032
1033         dt->flags = 0;
1034         val = fdtdec_get_int(blob, node, "vsync-active", -1);
1035         if (val != -1) {
1036                 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1037                                 DISPLAY_FLAGS_VSYNC_LOW;
1038         }
1039         val = fdtdec_get_int(blob, node, "hsync-active", -1);
1040         if (val != -1) {
1041                 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1042                                 DISPLAY_FLAGS_HSYNC_LOW;
1043         }
1044         val = fdtdec_get_int(blob, node, "de-active", -1);
1045         if (val != -1) {
1046                 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1047                                 DISPLAY_FLAGS_DE_LOW;
1048         }
1049         val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1050         if (val != -1) {
1051                 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1052                                 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1053         }
1054
1055         if (fdtdec_get_bool(blob, node, "interlaced"))
1056                 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1057         if (fdtdec_get_bool(blob, node, "doublescan"))
1058                 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1059         if (fdtdec_get_bool(blob, node, "doubleclk"))
1060                 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1061
1062         return ret;
1063 }
1064
1065 int fdtdec_setup_mem_size_base(void)
1066 {
1067         int ret;
1068         ofnode mem;
1069         struct resource res;
1070
1071         mem = ofnode_path("/memory");
1072         if (!ofnode_valid(mem)) {
1073                 debug("%s: Missing /memory node\n", __func__);
1074                 return -EINVAL;
1075         }
1076
1077         ret = ofnode_read_resource(mem, 0, &res);
1078         if (ret != 0) {
1079                 debug("%s: Unable to decode first memory bank\n", __func__);
1080                 return -EINVAL;
1081         }
1082
1083         gd->ram_size = (phys_size_t)(res.end - res.start + 1);
1084         gd->ram_base = (unsigned long)res.start;
1085         debug("%s: Initial DRAM size %llx\n", __func__,
1086               (unsigned long long)gd->ram_size);
1087
1088         return 0;
1089 }
1090
1091 ofnode get_next_memory_node(ofnode mem)
1092 {
1093         do {
1094                 mem = ofnode_by_prop_value(mem, "device_type", "memory", 7);
1095         } while (!ofnode_is_available(mem));
1096
1097         return mem;
1098 }
1099
1100 int fdtdec_setup_memory_banksize(void)
1101 {
1102         int bank, ret, reg = 0;
1103         struct resource res;
1104         ofnode mem = ofnode_null();
1105
1106         mem = get_next_memory_node(mem);
1107         if (!ofnode_valid(mem)) {
1108                 debug("%s: Missing /memory node\n", __func__);
1109                 return -EINVAL;
1110         }
1111
1112         for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1113                 ret = ofnode_read_resource(mem, reg++, &res);
1114                 if (ret < 0) {
1115                         reg = 0;
1116                         mem = get_next_memory_node(mem);
1117                         if (!ofnode_valid(mem))
1118                                 break;
1119
1120                         ret = ofnode_read_resource(mem, reg++, &res);
1121                         if (ret < 0)
1122                                 break;
1123                 }
1124
1125                 if (ret != 0)
1126                         return -EINVAL;
1127
1128                 gd->bd->bi_dram[bank].start = (phys_addr_t)res.start;
1129                 gd->bd->bi_dram[bank].size =
1130                         (phys_size_t)(res.end - res.start + 1);
1131
1132                 debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n",
1133                       __func__, bank,
1134                       (unsigned long long)gd->bd->bi_dram[bank].start,
1135                       (unsigned long long)gd->bd->bi_dram[bank].size);
1136         }
1137
1138         return 0;
1139 }
1140
1141 int fdtdec_setup_mem_size_base_lowest(void)
1142 {
1143         int bank, ret, reg = 0;
1144         struct resource res;
1145         unsigned long base;
1146         phys_size_t size;
1147         ofnode mem = ofnode_null();
1148
1149         gd->ram_base = (unsigned long)~0;
1150
1151         mem = get_next_memory_node(mem);
1152         if (!ofnode_valid(mem)) {
1153                 debug("%s: Missing /memory node\n", __func__);
1154                 return -EINVAL;
1155         }
1156
1157         for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1158                 ret = ofnode_read_resource(mem, reg++, &res);
1159                 if (ret < 0) {
1160                         reg = 0;
1161                         mem = get_next_memory_node(mem);
1162                         if (!ofnode_valid(mem))
1163                                 break;
1164
1165                         ret = ofnode_read_resource(mem, reg++, &res);
1166                         if (ret < 0)
1167                                 break;
1168                 }
1169
1170                 if (ret != 0)
1171                         return -EINVAL;
1172
1173                 base = (unsigned long)res.start;
1174                 size = (phys_size_t)(res.end - res.start + 1);
1175
1176                 if (gd->ram_base > base && size) {
1177                         gd->ram_base = base;
1178                         gd->ram_size = size;
1179                         debug("%s: Initial DRAM base %lx size %lx\n",
1180                               __func__, base, (unsigned long)size);
1181                 }
1182         }
1183
1184         return 0;
1185 }
1186
1187 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1188 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\
1189         CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO)
1190 static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1191 {
1192         size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ);
1193         bool gzip = 0, lzo = 0;
1194         ulong sz_in = sz_src;
1195         void *dst;
1196         int rc;
1197
1198         if (CONFIG_IS_ENABLED(GZIP))
1199                 if (gzip_parse_header(src, sz_in) >= 0)
1200                         gzip = 1;
1201         if (CONFIG_IS_ENABLED(LZO))
1202                 if (!gzip && lzop_is_valid_header(src))
1203                         lzo = 1;
1204
1205         if (!gzip && !lzo)
1206                 return -EBADMSG;
1207
1208
1209         if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) {
1210                 dst = malloc(sz_out);
1211                 if (!dst) {
1212                         puts("uncompress_blob: Unable to allocate memory\n");
1213                         return -ENOMEM;
1214                 }
1215         } else  {
1216 #  if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA)
1217                 dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR);
1218 #  else
1219                 return -ENOTSUPP;
1220 #  endif
1221         }
1222
1223         if (CONFIG_IS_ENABLED(GZIP) && gzip)
1224                 rc = gunzip(dst, sz_out, (u8 *)src, &sz_in);
1225         else if (CONFIG_IS_ENABLED(LZO) && lzo)
1226                 rc = lzop_decompress(src, sz_in, dst, &sz_out);
1227         else
1228                 hang();
1229
1230         if (rc < 0) {
1231                 /* not a valid compressed blob */
1232                 puts("uncompress_blob: Unable to uncompress\n");
1233                 if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC))
1234                         free(dst);
1235                 return -EBADMSG;
1236         }
1237         *dstp = dst;
1238         return 0;
1239 }
1240 # else
1241 static int uncompress_blob(const void *src, ulong sz_src, void **dstp)
1242 {
1243         *dstp = (void *)src;
1244         return 0;
1245 }
1246 # endif
1247 #endif
1248
1249 #if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1250 /*
1251  * For CONFIG_OF_SEPARATE, the board may optionally implement this to
1252  * provide and/or fixup the fdt.
1253  */
1254 __weak void *board_fdt_blob_setup(void)
1255 {
1256         void *fdt_blob = NULL;
1257 #ifdef CONFIG_SPL_BUILD
1258         /* FDT is at end of BSS unless it is in a different memory region */
1259         if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
1260                 fdt_blob = (ulong *)&_image_binary_end;
1261         else
1262                 fdt_blob = (ulong *)&__bss_end;
1263 #else
1264         /* FDT is at end of image */
1265         fdt_blob = (ulong *)&_end;
1266 #endif
1267         return fdt_blob;
1268 }
1269 #endif
1270
1271 int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size)
1272 {
1273         const char *path;
1274         int offset, err;
1275
1276         if (!is_valid_ethaddr(mac))
1277                 return -EINVAL;
1278
1279         path = fdt_get_alias(fdt, "ethernet");
1280         if (!path)
1281                 return 0;
1282
1283         debug("ethernet alias found: %s\n", path);
1284
1285         offset = fdt_path_offset(fdt, path);
1286         if (offset < 0) {
1287                 debug("ethernet alias points to absent node %s\n", path);
1288                 return -ENOENT;
1289         }
1290
1291         err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size);
1292         if (err < 0)
1293                 return err;
1294
1295         debug("MAC address: %pM\n", mac);
1296
1297         return 0;
1298 }
1299
1300 static int fdtdec_init_reserved_memory(void *blob)
1301 {
1302         int na, ns, node, err;
1303         fdt32_t value;
1304
1305         /* inherit #address-cells and #size-cells from the root node */
1306         na = fdt_address_cells(blob, 0);
1307         ns = fdt_size_cells(blob, 0);
1308
1309         node = fdt_add_subnode(blob, 0, "reserved-memory");
1310         if (node < 0)
1311                 return node;
1312
1313         err = fdt_setprop(blob, node, "ranges", NULL, 0);
1314         if (err < 0)
1315                 return err;
1316
1317         value = cpu_to_fdt32(ns);
1318
1319         err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value));
1320         if (err < 0)
1321                 return err;
1322
1323         value = cpu_to_fdt32(na);
1324
1325         err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value));
1326         if (err < 0)
1327                 return err;
1328
1329         return node;
1330 }
1331
1332 int fdtdec_add_reserved_memory(void *blob, const char *basename,
1333                                const struct fdt_memory *carveout,
1334                                uint32_t *phandlep, bool no_map)
1335 {
1336         fdt32_t cells[4] = {}, *ptr = cells;
1337         uint32_t upper, lower, phandle;
1338         int parent, node, na, ns, err;
1339         fdt_size_t size;
1340         char name[64];
1341
1342         /* create an empty /reserved-memory node if one doesn't exist */
1343         parent = fdt_path_offset(blob, "/reserved-memory");
1344         if (parent < 0) {
1345                 parent = fdtdec_init_reserved_memory(blob);
1346                 if (parent < 0)
1347                         return parent;
1348         }
1349
1350         /* only 1 or 2 #address-cells and #size-cells are supported */
1351         na = fdt_address_cells(blob, parent);
1352         if (na < 1 || na > 2)
1353                 return -FDT_ERR_BADNCELLS;
1354
1355         ns = fdt_size_cells(blob, parent);
1356         if (ns < 1 || ns > 2)
1357                 return -FDT_ERR_BADNCELLS;
1358
1359         /* find a matching node and return the phandle to that */
1360         fdt_for_each_subnode(node, blob, parent) {
1361                 const char *name = fdt_get_name(blob, node, NULL);
1362                 fdt_addr_t addr;
1363                 fdt_size_t size;
1364
1365                 addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns,
1366                                                   &size, false);
1367                 if (addr == FDT_ADDR_T_NONE) {
1368                         debug("failed to read address/size for %s\n", name);
1369                         continue;
1370                 }
1371
1372                 if (addr == carveout->start && (addr + size - 1) ==
1373                                                 carveout->end) {
1374                         if (phandlep)
1375                                 *phandlep = fdt_get_phandle(blob, node);
1376                         return 0;
1377                 }
1378         }
1379
1380         /*
1381          * Unpack the start address and generate the name of the new node
1382          * base on the basename and the unit-address.
1383          */
1384         upper = upper_32_bits(carveout->start);
1385         lower = lower_32_bits(carveout->start);
1386
1387         if (na > 1 && upper > 0)
1388                 snprintf(name, sizeof(name), "%s@%x,%x", basename, upper,
1389                          lower);
1390         else {
1391                 if (upper > 0) {
1392                         debug("address %08x:%08x exceeds addressable space\n",
1393                               upper, lower);
1394                         return -FDT_ERR_BADVALUE;
1395                 }
1396
1397                 snprintf(name, sizeof(name), "%s@%x", basename, lower);
1398         }
1399
1400         node = fdt_add_subnode(blob, parent, name);
1401         if (node < 0)
1402                 return node;
1403
1404         if (phandlep) {
1405                 err = fdt_generate_phandle(blob, &phandle);
1406                 if (err < 0)
1407                         return err;
1408
1409                 err = fdtdec_set_phandle(blob, node, phandle);
1410                 if (err < 0)
1411                         return err;
1412         }
1413
1414         /* store one or two address cells */
1415         if (na > 1)
1416                 *ptr++ = cpu_to_fdt32(upper);
1417
1418         *ptr++ = cpu_to_fdt32(lower);
1419
1420         /* store one or two size cells */
1421         size = carveout->end - carveout->start + 1;
1422         upper = upper_32_bits(size);
1423         lower = lower_32_bits(size);
1424
1425         if (ns > 1)
1426                 *ptr++ = cpu_to_fdt32(upper);
1427
1428         *ptr++ = cpu_to_fdt32(lower);
1429
1430         err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells));
1431         if (err < 0)
1432                 return err;
1433
1434         if (no_map) {
1435                 err = fdt_setprop(blob, node, "no-map", NULL, 0);
1436                 if (err < 0)
1437                         return err;
1438         }
1439
1440         /* return the phandle for the new node for the caller to use */
1441         if (phandlep)
1442                 *phandlep = phandle;
1443
1444         return 0;
1445 }
1446
1447 int fdtdec_get_carveout(const void *blob, const char *node, const char *name,
1448                         unsigned int index, struct fdt_memory *carveout)
1449 {
1450         const fdt32_t *prop;
1451         uint32_t phandle;
1452         int offset, len;
1453         fdt_size_t size;
1454
1455         offset = fdt_path_offset(blob, node);
1456         if (offset < 0)
1457                 return offset;
1458
1459         prop = fdt_getprop(blob, offset, name, &len);
1460         if (!prop) {
1461                 debug("failed to get %s for %s\n", name, node);
1462                 return -FDT_ERR_NOTFOUND;
1463         }
1464
1465         if ((len % sizeof(phandle)) != 0) {
1466                 debug("invalid phandle property\n");
1467                 return -FDT_ERR_BADPHANDLE;
1468         }
1469
1470         if (len < (sizeof(phandle) * (index + 1))) {
1471                 debug("invalid phandle index\n");
1472                 return -FDT_ERR_BADPHANDLE;
1473         }
1474
1475         phandle = fdt32_to_cpu(prop[index]);
1476
1477         offset = fdt_node_offset_by_phandle(blob, phandle);
1478         if (offset < 0) {
1479                 debug("failed to find node for phandle %u\n", phandle);
1480                 return offset;
1481         }
1482
1483         carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset,
1484                                                              "reg", 0, &size,
1485                                                              true);
1486         if (carveout->start == FDT_ADDR_T_NONE) {
1487                 debug("failed to read address/size from \"reg\" property\n");
1488                 return -FDT_ERR_NOTFOUND;
1489         }
1490
1491         carveout->end = carveout->start + size - 1;
1492
1493         return 0;
1494 }
1495
1496 int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
1497                         unsigned int index, const char *name,
1498                         const struct fdt_memory *carveout)
1499 {
1500         uint32_t phandle;
1501         int err, offset, len;
1502         fdt32_t value;
1503         void *prop;
1504
1505         err = fdtdec_add_reserved_memory(blob, name, carveout, &phandle, false);
1506         if (err < 0) {
1507                 debug("failed to add reserved memory: %d\n", err);
1508                 return err;
1509         }
1510
1511         offset = fdt_path_offset(blob, node);
1512         if (offset < 0) {
1513                 debug("failed to find offset for node %s: %d\n", node, offset);
1514                 return offset;
1515         }
1516
1517         value = cpu_to_fdt32(phandle);
1518
1519         if (!fdt_getprop(blob, offset, prop_name, &len)) {
1520                 if (len == -FDT_ERR_NOTFOUND)
1521                         len = 0;
1522                 else
1523                         return len;
1524         }
1525
1526         if ((index + 1) * sizeof(value) > len) {
1527                 err = fdt_setprop_placeholder(blob, offset, prop_name,
1528                                               (index + 1) * sizeof(value),
1529                                               &prop);
1530                 if (err < 0) {
1531                         debug("failed to resize reserved memory property: %s\n",
1532                               fdt_strerror(err));
1533                         return err;
1534                 }
1535         }
1536
1537         err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name,
1538                                                   strlen(prop_name),
1539                                                   index * sizeof(value),
1540                                                   &value, sizeof(value));
1541         if (err < 0) {
1542                 debug("failed to update %s property for node %s: %s\n",
1543                       prop_name, node, fdt_strerror(err));
1544                 return err;
1545         }
1546
1547         return 0;
1548 }
1549
1550 __weak int fdtdec_board_setup(const void *fdt_blob)
1551 {
1552         return 0;
1553 }
1554
1555 int fdtdec_setup(void)
1556 {
1557         int ret;
1558 #if CONFIG_IS_ENABLED(OF_CONTROL)
1559 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1560         void *fdt_blob;
1561 # endif
1562 # ifdef CONFIG_OF_EMBED
1563         /* Get a pointer to the FDT */
1564 #  ifdef CONFIG_SPL_BUILD
1565         gd->fdt_blob = __dtb_dt_spl_begin;
1566 #  else
1567         gd->fdt_blob = __dtb_dt_begin;
1568 #  endif
1569 # elif defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
1570         /* Allow the board to override the fdt address. */
1571         gd->fdt_blob = board_fdt_blob_setup();
1572 # elif defined(CONFIG_OF_HOSTFILE)
1573         if (sandbox_read_fdt_from_file()) {
1574                 puts("Failed to read control FDT\n");
1575                 return -1;
1576         }
1577 # elif defined(CONFIG_OF_PRIOR_STAGE)
1578         gd->fdt_blob = (void *)(uintptr_t)prior_stage_fdt_address;
1579 # endif
1580 # ifndef CONFIG_SPL_BUILD
1581         /* Allow the early environment to override the fdt address */
1582         gd->fdt_blob = map_sysmem
1583                 (env_get_ulong("fdtcontroladdr", 16,
1584                                (unsigned long)map_to_sysmem(gd->fdt_blob)), 0);
1585 # endif
1586
1587 # if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1588         /*
1589          * Try and uncompress the blob.
1590          * Unfortunately there is no way to know how big the input blob really
1591          * is. So let us set the maximum input size arbitrarily high. 16MB
1592          * ought to be more than enough for packed DTBs.
1593          */
1594         if (uncompress_blob(gd->fdt_blob, 0x1000000, &fdt_blob) == 0)
1595                 gd->fdt_blob = fdt_blob;
1596
1597         /*
1598          * Check if blob is a FIT images containings DTBs.
1599          * If so, pick the most relevant
1600          */
1601         fdt_blob = locate_dtb_in_fit(gd->fdt_blob);
1602         if (fdt_blob) {
1603                 gd->multi_dtb_fit = gd->fdt_blob;
1604                 gd->fdt_blob = fdt_blob;
1605         }
1606
1607 # endif
1608 #endif
1609
1610         ret = fdtdec_prepare_fdt();
1611         if (!ret)
1612                 ret = fdtdec_board_setup(gd->fdt_blob);
1613         return ret;
1614 }
1615
1616 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1617 int fdtdec_resetup(int *rescan)
1618 {
1619         void *fdt_blob;
1620
1621         /*
1622          * If the current DTB is part of a compressed FIT image,
1623          * try to locate the best match from the uncompressed
1624          * FIT image stillpresent there. Save the time and space
1625          * required to uncompress it again.
1626          */
1627         if (gd->multi_dtb_fit) {
1628                 fdt_blob = locate_dtb_in_fit(gd->multi_dtb_fit);
1629
1630                 if (fdt_blob == gd->fdt_blob) {
1631                         /*
1632                          * The best match did not change. no need to tear down
1633                          * the DM and rescan the fdt.
1634                          */
1635                         *rescan = 0;
1636                         return 0;
1637                 }
1638
1639                 *rescan = 1;
1640                 gd->fdt_blob = fdt_blob;
1641                 return fdtdec_prepare_fdt();
1642         }
1643
1644         /*
1645          * If multi_dtb_fit is NULL, it means that blob appended to u-boot is
1646          * not a FIT image containings DTB, but a single DTB. There is no need
1647          * to teard down DM and rescan the DT in this case.
1648          */
1649         *rescan = 0;
1650         return 0;
1651 }
1652 #endif
1653
1654 int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1655                            phys_addr_t *basep, phys_size_t *sizep,
1656                            struct bd_info *bd)
1657 {
1658         int addr_cells, size_cells;
1659         const u32 *cell, *end;
1660         u64 total_size, size, addr;
1661         int node, child;
1662         bool auto_size;
1663         int bank;
1664         int len;
1665
1666         debug("%s: board_id=%d\n", __func__, board_id);
1667         if (!area)
1668                 area = "/memory";
1669         node = fdt_path_offset(blob, area);
1670         if (node < 0) {
1671                 debug("No %s node found\n", area);
1672                 return -ENOENT;
1673         }
1674
1675         cell = fdt_getprop(blob, node, "reg", &len);
1676         if (!cell) {
1677                 debug("No reg property found\n");
1678                 return -ENOENT;
1679         }
1680
1681         addr_cells = fdt_address_cells(blob, node);
1682         size_cells = fdt_size_cells(blob, node);
1683
1684         /* Check the board id and mask */
1685         for (child = fdt_first_subnode(blob, node);
1686              child >= 0;
1687              child = fdt_next_subnode(blob, child)) {
1688                 int match_mask, match_value;
1689
1690                 match_mask = fdtdec_get_int(blob, child, "match-mask", -1);
1691                 match_value = fdtdec_get_int(blob, child, "match-value", -1);
1692
1693                 if (match_value >= 0 &&
1694                     ((board_id & match_mask) == match_value)) {
1695                         /* Found matching mask */
1696                         debug("Found matching mask %d\n", match_mask);
1697                         node = child;
1698                         cell = fdt_getprop(blob, node, "reg", &len);
1699                         if (!cell) {
1700                                 debug("No memory-banks property found\n");
1701                                 return -EINVAL;
1702                         }
1703                         break;
1704                 }
1705         }
1706         /* Note: if no matching subnode was found we use the parent node */
1707
1708         if (bd) {
1709                 memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) *
1710                                                 CONFIG_NR_DRAM_BANKS);
1711         }
1712
1713         auto_size = fdtdec_get_bool(blob, node, "auto-size");
1714
1715         total_size = 0;
1716         end = cell + len / 4 - addr_cells - size_cells;
1717         debug("cell at %p, end %p\n", cell, end);
1718         for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
1719                 if (cell > end)
1720                         break;
1721                 addr = 0;
1722                 if (addr_cells == 2)
1723                         addr += (u64)fdt32_to_cpu(*cell++) << 32UL;
1724                 addr += fdt32_to_cpu(*cell++);
1725                 if (bd)
1726                         bd->bi_dram[bank].start = addr;
1727                 if (basep && !bank)
1728                         *basep = (phys_addr_t)addr;
1729
1730                 size = 0;
1731                 if (size_cells == 2)
1732                         size += (u64)fdt32_to_cpu(*cell++) << 32UL;
1733                 size += fdt32_to_cpu(*cell++);
1734
1735                 if (auto_size) {
1736                         u64 new_size;
1737
1738                         debug("Auto-sizing %llx, size %llx: ", addr, size);
1739                         new_size = get_ram_size((long *)(uintptr_t)addr, size);
1740                         if (new_size == size) {
1741                                 debug("OK\n");
1742                         } else {
1743                                 debug("sized to %llx\n", new_size);
1744                                 size = new_size;
1745                         }
1746                 }
1747
1748                 if (bd)
1749                         bd->bi_dram[bank].size = size;
1750                 total_size += size;
1751         }
1752
1753         debug("Memory size %llu\n", total_size);
1754         if (sizep)
1755                 *sizep = (phys_size_t)total_size;
1756
1757         return 0;
1758 }
1759
1760 #endif /* !USE_HOSTCC */