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