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