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