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