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