2 * Copyright (c) 2011 The Chromium OS Authors.
3 * SPDX-License-Identifier: GPL-2.0+
12 #include <asm/sections.h>
13 #include <linux/ctype.h>
15 DECLARE_GLOBAL_DATA_PTR;
18 * Here are the type we know about. One day we might allow drivers to
19 * register. For now we just put them here. The COMPAT macro allows us to
20 * turn this into a sparse list later, and keeps the ID with the name.
22 #define COMPAT(id, name) name
23 static const char * const compat_names[COMPAT_COUNT] = {
24 COMPAT(UNKNOWN, "<none>"),
25 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
26 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
27 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
28 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
29 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
30 COMPAT(NVIDIA_TEGRA124_DC, "nvidia,tegra124-dc"),
31 COMPAT(NVIDIA_TEGRA124_SOR, "nvidia,tegra124-sor"),
32 COMPAT(NVIDIA_TEGRA124_PMC, "nvidia,tegra124-pmc"),
33 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
34 COMPAT(NVIDIA_TEGRA210_SDMMC, "nvidia,tegra210-sdhci"),
35 COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"),
36 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
37 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
38 COMPAT(NVIDIA_TEGRA124_PCIE, "nvidia,tegra124-pcie"),
39 COMPAT(NVIDIA_TEGRA30_PCIE, "nvidia,tegra30-pcie"),
40 COMPAT(NVIDIA_TEGRA20_PCIE, "nvidia,tegra20-pcie"),
41 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
42 COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"),
43 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
44 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
45 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
46 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
47 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
48 COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"),
49 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
50 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
51 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
52 COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"),
53 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
54 COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"),
55 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
56 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
57 COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"),
58 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686"),
59 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
60 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
61 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
62 COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"),
63 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
64 COMPAT(INTEL_MICROCODE, "intel,microcode"),
65 COMPAT(MEMORY_SPD, "memory-spd"),
66 COMPAT(INTEL_PANTHERPOINT_AHCI, "intel,pantherpoint-ahci"),
67 COMPAT(INTEL_MODEL_206AX, "intel,model-206ax"),
68 COMPAT(INTEL_GMA, "intel,gma"),
69 COMPAT(AMS_AS3722, "ams,as3722"),
70 COMPAT(INTEL_ICH_SPI, "intel,ich-spi"),
71 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
72 COMPAT(INTEL_X86_PINCTRL, "intel,x86-pinctrl"),
73 COMPAT(SOCIONEXT_XHCI, "socionext,uniphier-xhci"),
74 COMPAT(COMPAT_INTEL_PCH, "intel,bd82x6x"),
75 COMPAT(COMPAT_INTEL_IRQ_ROUTER, "intel,irq-router"),
76 COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"),
77 COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"),
78 COMPAT(COMPAT_INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
79 COMPAT(COMPAT_INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
82 const char *fdtdec_get_compatible(enum fdt_compat_id id)
84 /* We allow reading of the 'unknown' ID for testing purposes */
85 assert(id >= 0 && id < COMPAT_COUNT);
86 return compat_names[id];
89 fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
90 const char *prop_name, int index, int na, int ns,
93 const fdt32_t *prop, *prop_end;
94 const fdt32_t *prop_addr, *prop_size, *prop_after_size;
98 debug("%s: %s: ", __func__, prop_name);
100 if (na > (sizeof(fdt_addr_t) / sizeof(fdt32_t))) {
101 debug("(na too large for fdt_addr_t type)\n");
102 return FDT_ADDR_T_NONE;
105 if (ns > (sizeof(fdt_size_t) / sizeof(fdt32_t))) {
106 debug("(ns too large for fdt_size_t type)\n");
107 return FDT_ADDR_T_NONE;
110 prop = fdt_getprop(blob, node, prop_name, &len);
112 debug("(not found)\n");
113 return FDT_ADDR_T_NONE;
115 prop_end = prop + (len / sizeof(*prop));
117 prop_addr = prop + (index * (na + ns));
118 prop_size = prop_addr + na;
119 prop_after_size = prop_size + ns;
120 if (prop_after_size > prop_end) {
121 debug("(not enough data: expected >= %d cells, got %d cells)\n",
122 (u32)(prop_after_size - prop), ((u32)(prop_end - prop)));
123 return FDT_ADDR_T_NONE;
126 addr = fdtdec_get_number(prop_addr, na);
129 *sizep = fdtdec_get_number(prop_size, ns);
130 debug("addr=%08llx, size=%llx\n", (u64)addr, (u64)*sizep);
132 debug("addr=%08llx\n", (u64)addr);
138 fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
139 int node, const char *prop_name, int index, fdt_size_t *sizep)
143 debug("%s: ", __func__);
145 na = fdt_address_cells(blob, parent);
147 debug("(bad #address-cells)\n");
148 return FDT_ADDR_T_NONE;
151 ns = fdt_size_cells(blob, parent);
153 debug("(bad #size-cells)\n");
154 return FDT_ADDR_T_NONE;
157 debug("na=%d, ns=%d, ", na, ns);
159 return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na,
163 fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
164 const char *prop_name, int index, fdt_size_t *sizep)
168 debug("%s: ", __func__);
170 parent = fdt_parent_offset(blob, node);
172 debug("(no parent found)\n");
173 return FDT_ADDR_T_NONE;
176 return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name,
180 fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
181 const char *prop_name, fdt_size_t *sizep)
183 return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0,
184 sizeof(fdt_addr_t) / sizeof(fdt32_t),
185 sizeof(fdt_size_t) / sizeof(fdt32_t),
189 fdt_addr_t fdtdec_get_addr(const void *blob, int node,
190 const char *prop_name)
192 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
196 int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
197 const char *prop_name, struct fdt_pci_addr *addr)
203 debug("%s: %s: ", __func__, prop_name);
206 * If we follow the pci bus bindings strictly, we should check
207 * the value of the node's parent node's #address-cells and
208 * #size-cells. They need to be 3 and 2 accordingly. However,
209 * for simplicity we skip the check here.
211 cell = fdt_getprop(blob, node, prop_name, &len);
215 if ((len % FDT_PCI_REG_SIZE) == 0) {
216 int num = len / FDT_PCI_REG_SIZE;
219 for (i = 0; i < num; i++) {
220 debug("pci address #%d: %08lx %08lx %08lx\n", i,
221 (ulong)fdt_addr_to_cpu(cell[0]),
222 (ulong)fdt_addr_to_cpu(cell[1]),
223 (ulong)fdt_addr_to_cpu(cell[2]));
224 if ((fdt_addr_to_cpu(*cell) & type) == type) {
225 addr->phys_hi = fdt_addr_to_cpu(cell[0]);
226 addr->phys_mid = fdt_addr_to_cpu(cell[1]);
227 addr->phys_lo = fdt_addr_to_cpu(cell[2]);
230 cell += (FDT_PCI_ADDR_CELLS +
246 debug("(not found)\n");
250 int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
252 const char *list, *end;
255 list = fdt_getprop(blob, node, "compatible", &len);
264 if (len >= strlen("pciVVVV,DDDD")) {
265 s = strstr(list, "pci");
268 * check if the string is something like pciVVVV,DDDD.RR
269 * or just pciVVVV,DDDD
271 if (s && s[7] == ',' &&
272 (s[12] == '.' || s[12] == 0)) {
274 *vendor = simple_strtol(s, NULL, 16);
277 *device = simple_strtol(s, NULL, 16);
288 int fdtdec_get_pci_bdf(const void *blob, int node,
289 struct fdt_pci_addr *addr, pci_dev_t *bdf)
291 u16 dt_vendor, dt_device, vendor, device;
294 /* get vendor id & device id from the compatible string */
295 ret = fdtdec_get_pci_vendev(blob, node, &dt_vendor, &dt_device);
299 /* extract the bdf from fdt_pci_addr */
300 *bdf = addr->phys_hi & 0xffff00;
302 /* read vendor id & device id based on bdf */
303 pci_read_config_word(*bdf, PCI_VENDOR_ID, &vendor);
304 pci_read_config_word(*bdf, PCI_DEVICE_ID, &device);
307 * Note there are two places in the device tree to fully describe
308 * a pci device: one is via compatible string with a format of
309 * "pciVVVV,DDDD" and the other one is the bdf numbers encoded in
310 * the device node's reg address property. We read the vendor id
311 * and device id based on bdf and compare the values with the
312 * "VVVV,DDDD". If they are the same, then we are good to use bdf
313 * to read device's bar. But if they are different, we have to rely
314 * on the vendor id and device id extracted from the compatible
315 * string and locate the real bdf by pci_find_device(). This is
316 * because normally we may only know device's device number and
317 * function number when writing device tree. The bus number is
318 * dynamically assigned during the pci enumeration process.
320 if ((dt_vendor != vendor) || (dt_device != device)) {
321 *bdf = pci_find_device(dt_vendor, dt_device, 0);
329 int fdtdec_get_pci_bar32(const void *blob, int node,
330 struct fdt_pci_addr *addr, u32 *bar)
336 /* get pci devices's bdf */
337 ret = fdtdec_get_pci_bdf(blob, node, addr, &bdf);
341 /* extract the bar number from fdt_pci_addr */
342 barnum = addr->phys_hi & 0xff;
343 if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS))
346 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
347 *bar = pci_read_bar32(pci_bus_to_hose(PCI_BUS(bdf)), bdf, barnum);
353 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
354 uint64_t default_val)
356 const uint64_t *cell64;
359 cell64 = fdt_getprop(blob, node, prop_name, &length);
360 if (!cell64 || length < sizeof(*cell64))
363 return fdt64_to_cpu(*cell64);
366 int fdtdec_get_is_enabled(const void *blob, int node)
371 * It should say "okay", so only allow that. Some fdts use "ok" but
372 * this is a bug. Please fix your device tree source file. See here
377 cell = fdt_getprop(blob, node, "status", NULL);
379 return 0 == strcmp(cell, "okay");
383 enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
385 enum fdt_compat_id id;
387 /* Search our drivers */
388 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
389 if (0 == fdt_node_check_compatible(blob, node,
392 return COMPAT_UNKNOWN;
395 int fdtdec_next_compatible(const void *blob, int node,
396 enum fdt_compat_id id)
398 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
401 int fdtdec_next_compatible_subnode(const void *blob, int node,
402 enum fdt_compat_id id, int *depthp)
405 node = fdt_next_node(blob, node, depthp);
406 } while (*depthp > 1);
408 /* If this is a direct subnode, and compatible, return it */
409 if (*depthp == 1 && 0 == fdt_node_check_compatible(
410 blob, node, compat_names[id]))
413 return -FDT_ERR_NOTFOUND;
416 int fdtdec_next_alias(const void *blob, const char *name,
417 enum fdt_compat_id id, int *upto)
419 #define MAX_STR_LEN 20
420 char str[MAX_STR_LEN + 20];
423 /* snprintf() is not available */
424 assert(strlen(name) < MAX_STR_LEN);
425 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
426 node = fdt_path_offset(blob, str);
429 err = fdt_node_check_compatible(blob, node, compat_names[id]);
433 return -FDT_ERR_NOTFOUND;
438 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
439 enum fdt_compat_id id, int *node_list, int maxcount)
441 memset(node_list, '\0', sizeof(*node_list) * maxcount);
443 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
446 /* TODO: Can we tighten this code up a little? */
447 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
448 enum fdt_compat_id id, int *node_list, int maxcount)
450 int name_len = strlen(name);
458 /* find the alias node if present */
459 alias_node = fdt_path_offset(blob, "/aliases");
462 * start with nothing, and we can assume that the root node can't
465 memset(nodes, '\0', sizeof(nodes));
467 /* First find all the compatible nodes */
468 for (node = count = 0; node >= 0 && count < maxcount;) {
469 node = fdtdec_next_compatible(blob, node, id);
471 nodes[count++] = node;
474 debug("%s: warning: maxcount exceeded with alias '%s'\n",
477 /* Now find all the aliases */
478 for (offset = fdt_first_property_offset(blob, alias_node);
480 offset = fdt_next_property_offset(blob, offset)) {
481 const struct fdt_property *prop;
487 prop = fdt_get_property_by_offset(blob, offset, NULL);
488 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
489 if (prop->len && 0 == strncmp(path, name, name_len))
490 node = fdt_path_offset(blob, prop->data);
494 /* Get the alias number */
495 number = simple_strtoul(path + name_len, NULL, 10);
496 if (number < 0 || number >= maxcount) {
497 debug("%s: warning: alias '%s' is out of range\n",
502 /* Make sure the node we found is actually in our list! */
504 for (j = 0; j < count; j++)
505 if (nodes[j] == node) {
511 debug("%s: warning: alias '%s' points to a node "
512 "'%s' that is missing or is not compatible "
513 " with '%s'\n", __func__, path,
514 fdt_get_name(blob, node, NULL),
520 * Add this node to our list in the right place, and mark
523 if (fdtdec_get_is_enabled(blob, node)) {
524 if (node_list[number]) {
525 debug("%s: warning: alias '%s' requires that "
526 "a node be placed in the list in a "
527 "position which is already filled by "
528 "node '%s'\n", __func__, path,
529 fdt_get_name(blob, node, NULL));
532 node_list[number] = node;
533 if (number >= num_found)
534 num_found = number + 1;
539 /* Add any nodes not mentioned by an alias */
540 for (i = j = 0; i < maxcount; i++) {
542 for (; j < maxcount; j++)
544 fdtdec_get_is_enabled(blob, nodes[j]))
547 /* Have we run out of nodes to add? */
551 assert(!node_list[i]);
552 node_list[i] = nodes[j++];
561 int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
564 int base_len = strlen(base);
565 const char *find_name;
570 find_name = fdt_get_name(blob, offset, &find_namelen);
571 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
573 aliases = fdt_path_offset(blob, "/aliases");
574 for (prop_offset = fdt_first_property_offset(blob, aliases);
576 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
582 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
583 debug(" - %s, %s\n", name, prop);
584 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
585 strncmp(name, base, base_len))
588 slash = strrchr(prop, '/');
589 if (strcmp(slash + 1, find_name))
591 val = trailing_strtol(name);
594 debug("Found seq %d\n", *seqp);
599 debug("Not found\n");
603 int fdtdec_get_chosen_node(const void *blob, const char *name)
610 return -FDT_ERR_NOTFOUND;
611 chosen_node = fdt_path_offset(blob, "/chosen");
612 prop = fdt_getprop(blob, chosen_node, name, &len);
614 return -FDT_ERR_NOTFOUND;
615 return fdt_path_offset(blob, prop);
618 int fdtdec_check_fdt(void)
621 * We must have an FDT, but we cannot panic() yet since the console
622 * is not ready. So for now, just assert(). Boards which need an early
623 * FDT (prior to console ready) will need to make their own
624 * arrangements and do their own checks.
626 assert(!fdtdec_prepare_fdt());
631 * This function is a little odd in that it accesses global data. At some
632 * point if the architecture board.c files merge this will make more sense.
633 * Even now, it is common code.
635 int fdtdec_prepare_fdt(void)
637 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
638 fdt_check_header(gd->fdt_blob)) {
639 #ifdef CONFIG_SPL_BUILD
640 puts("Missing DTB\n");
642 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");
645 printf("fdt_blob=%p\n", gd->fdt_blob);
646 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
656 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
661 debug("%s: %s\n", __func__, prop_name);
662 phandle = fdt_getprop(blob, node, prop_name, NULL);
664 return -FDT_ERR_NOTFOUND;
666 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
671 * Look up a property in a node and check that it has a minimum length.
673 * @param blob FDT blob
674 * @param node node to examine
675 * @param prop_name name of property to find
676 * @param min_len minimum property length in bytes
677 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
678 found, or -FDT_ERR_BADLAYOUT if not enough data
679 * @return pointer to cell, which is only valid if err == 0
681 static const void *get_prop_check_min_len(const void *blob, int node,
682 const char *prop_name, int min_len, int *err)
687 debug("%s: %s\n", __func__, prop_name);
688 cell = fdt_getprop(blob, node, prop_name, &len);
690 *err = -FDT_ERR_NOTFOUND;
691 else if (len < min_len)
692 *err = -FDT_ERR_BADLAYOUT;
698 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
699 u32 *array, int count)
704 debug("%s: %s\n", __func__, prop_name);
705 cell = get_prop_check_min_len(blob, node, prop_name,
706 sizeof(u32) * count, &err);
708 for (i = 0; i < count; i++)
709 array[i] = fdt32_to_cpu(cell[i]);
714 int fdtdec_get_int_array_count(const void *blob, int node,
715 const char *prop_name, u32 *array, int count)
721 debug("%s: %s\n", __func__, prop_name);
722 cell = fdt_getprop(blob, node, prop_name, &len);
724 return -FDT_ERR_NOTFOUND;
725 elems = len / sizeof(u32);
728 for (i = 0; i < count; i++)
729 array[i] = fdt32_to_cpu(cell[i]);
734 const u32 *fdtdec_locate_array(const void *blob, int node,
735 const char *prop_name, int count)
740 cell = get_prop_check_min_len(blob, node, prop_name,
741 sizeof(u32) * count, &err);
742 return err ? NULL : cell;
745 int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
750 debug("%s: %s\n", __func__, prop_name);
751 cell = fdt_getprop(blob, node, prop_name, &len);
755 int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
756 const char *list_name,
757 const char *cells_name,
758 int cell_count, int index,
759 struct fdtdec_phandle_args *out_args)
761 const __be32 *list, *list_end;
762 int rc = 0, size, cur_index = 0;
767 /* Retrieve the phandle list property */
768 list = fdt_getprop(blob, src_node, list_name, &size);
771 list_end = list + size / sizeof(*list);
773 /* Loop over the phandles until all the requested entry is found */
774 while (list < list_end) {
779 * If phandle is 0, then it is an empty entry with no
780 * arguments. Skip forward to the next entry.
782 phandle = be32_to_cpup(list++);
785 * Find the provider node and parse the #*-cells
786 * property to determine the argument length.
788 * This is not needed if the cell count is hard-coded
789 * (i.e. cells_name not set, but cell_count is set),
790 * except when we're going to return the found node
793 if (cells_name || cur_index == index) {
794 node = fdt_node_offset_by_phandle(blob,
797 debug("%s: could not find phandle\n",
798 fdt_get_name(blob, src_node,
805 count = fdtdec_get_int(blob, node, cells_name,
808 debug("%s: could not get %s for %s\n",
809 fdt_get_name(blob, src_node,
812 fdt_get_name(blob, node,
821 * Make sure that the arguments actually fit in the
822 * remaining property data length
824 if (list + count > list_end) {
825 debug("%s: arguments longer than property\n",
826 fdt_get_name(blob, src_node, NULL));
832 * All of the error cases above bail out of the loop, so at
833 * this point, the parsing is successful. If the requested
834 * index matches, then fill the out_args structure and return,
835 * or return -ENOENT for an empty entry.
838 if (cur_index == index) {
845 if (count > MAX_PHANDLE_ARGS) {
846 debug("%s: too many arguments %d\n",
847 fdt_get_name(blob, src_node,
849 count = MAX_PHANDLE_ARGS;
851 out_args->node = node;
852 out_args->args_count = count;
853 for (i = 0; i < count; i++) {
855 be32_to_cpup(list++);
859 /* Found it! return success */
869 * Result will be one of:
870 * -ENOENT : index is for empty phandle
871 * -EINVAL : parsing error on data
872 * [1..n] : Number of phandle (count mode; when index = -1)
874 rc = index < 0 ? cur_index : -ENOENT;
879 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
880 u8 *array, int count)
885 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
887 memcpy(array, cell, count);
891 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
892 const char *prop_name, int count)
897 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
903 int fdtdec_get_config_int(const void *blob, const char *prop_name,
908 debug("%s: %s\n", __func__, prop_name);
909 config_node = fdt_path_offset(blob, "/config");
912 return fdtdec_get_int(blob, config_node, prop_name, default_val);
915 int fdtdec_get_config_bool(const void *blob, const char *prop_name)
920 debug("%s: %s\n", __func__, prop_name);
921 config_node = fdt_path_offset(blob, "/config");
924 prop = fdt_get_property(blob, config_node, prop_name, NULL);
929 char *fdtdec_get_config_string(const void *blob, const char *prop_name)
935 debug("%s: %s\n", __func__, prop_name);
936 nodeoffset = fdt_path_offset(blob, "/config");
940 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
944 return (char *)nodep;
947 int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
948 fdt_addr_t *basep, fdt_size_t *sizep)
950 const fdt_addr_t *cell;
953 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
955 cell = fdt_getprop(blob, node, prop_name, &len);
956 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
957 debug("cell=%p, len=%d\n", cell, len);
961 *basep = fdt_addr_to_cpu(*cell);
962 *sizep = fdt_size_to_cpu(cell[1]);
963 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
970 * Read a flash entry from the fdt
972 * @param blob FDT blob
973 * @param node Offset of node to read
974 * @param name Name of node being read
975 * @param entry Place to put offset and size of this node
976 * @return 0 if ok, -ve on error
978 int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
979 struct fmap_entry *entry)
984 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
985 debug("Node '%s' has bad/missing 'reg' property\n", name);
986 return -FDT_ERR_NOTFOUND;
988 entry->offset = reg[0];
989 entry->length = reg[1];
990 entry->used = fdtdec_get_int(blob, node, "used", entry->length);
991 prop = fdt_getprop(blob, node, "compress", NULL);
992 entry->compress_algo = prop && !strcmp(prop, "lzo") ?
993 FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE;
994 prop = fdt_getprop(blob, node, "hash", &entry->hash_size);
995 entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE;
996 entry->hash = (uint8_t *)prop;
1001 u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
1006 number = (number << 32) | fdt32_to_cpu(*ptr++);
1011 int fdt_get_resource(const void *fdt, int node, const char *property,
1012 unsigned int index, struct fdt_resource *res)
1014 const fdt32_t *ptr, *end;
1015 int na, ns, len, parent;
1018 parent = fdt_parent_offset(fdt, node);
1022 na = fdt_address_cells(fdt, parent);
1023 ns = fdt_size_cells(fdt, parent);
1025 ptr = fdt_getprop(fdt, node, property, &len);
1029 end = ptr + len / sizeof(*ptr);
1031 while (ptr + na + ns <= end) {
1033 res->start = res->end = fdtdec_get_number(ptr, na);
1034 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
1042 return -FDT_ERR_NOTFOUND;
1045 int fdt_get_named_resource(const void *fdt, int node, const char *property,
1046 const char *prop_names, const char *name,
1047 struct fdt_resource *res)
1051 index = fdt_find_string(fdt, node, prop_names, name);
1055 return fdt_get_resource(fdt, node, property, index, res);
1058 int fdtdec_decode_memory_region(const void *blob, int config_node,
1059 const char *mem_type, const char *suffix,
1060 fdt_addr_t *basep, fdt_size_t *sizep)
1064 fdt_size_t size, offset_size;
1065 fdt_addr_t base, offset;
1068 if (config_node == -1) {
1069 config_node = fdt_path_offset(blob, "/config");
1070 if (config_node < 0) {
1071 debug("%s: Cannot find /config node\n", __func__);
1078 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
1080 mem = fdt_getprop(blob, config_node, prop_name, NULL);
1082 debug("%s: No memory type for '%s', using /memory\n", __func__,
1087 node = fdt_path_offset(blob, mem);
1089 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
1090 fdt_strerror(node));
1095 * Not strictly correct - the memory may have multiple banks. We just
1098 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
1099 debug("%s: Failed to decode memory region %s\n", __func__,
1104 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
1106 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
1108 debug("%s: Failed to decode memory region '%s'\n", __func__,
1113 *basep = base + offset;
1114 *sizep = offset_size;
1119 static int decode_timing_property(const void *blob, int node, const char *name,
1120 struct timing_entry *result)
1122 int length, ret = 0;
1125 prop = fdt_getprop(blob, node, name, &length);
1127 debug("%s: could not find property %s\n",
1128 fdt_get_name(blob, node, NULL), name);
1132 if (length == sizeof(u32)) {
1133 result->typ = fdtdec_get_int(blob, node, name, 0);
1134 result->min = result->typ;
1135 result->max = result->typ;
1137 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
1143 int fdtdec_decode_display_timing(const void *blob, int parent, int index,
1144 struct display_timing *dt)
1146 int i, node, timings_node;
1150 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1151 if (timings_node < 0)
1152 return timings_node;
1154 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1155 node > 0 && i != index;
1156 node = fdt_next_subnode(blob, node))
1162 memset(dt, 0, sizeof(*dt));
1164 ret |= decode_timing_property(blob, node, "hback-porch",
1166 ret |= decode_timing_property(blob, node, "hfront-porch",
1168 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1169 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1170 ret |= decode_timing_property(blob, node, "vback-porch",
1172 ret |= decode_timing_property(blob, node, "vfront-porch",
1174 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1175 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1176 ret |= decode_timing_property(blob, node, "clock-frequency",
1180 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1182 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1183 DISPLAY_FLAGS_VSYNC_LOW;
1185 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1187 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1188 DISPLAY_FLAGS_HSYNC_LOW;
1190 val = fdtdec_get_int(blob, node, "de-active", -1);
1192 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1193 DISPLAY_FLAGS_DE_LOW;
1195 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1197 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1198 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1201 if (fdtdec_get_bool(blob, node, "interlaced"))
1202 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1203 if (fdtdec_get_bool(blob, node, "doublescan"))
1204 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1205 if (fdtdec_get_bool(blob, node, "doubleclk"))
1206 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1211 int fdtdec_setup(void)
1213 #if CONFIG_IS_ENABLED(OF_CONTROL)
1214 # ifdef CONFIG_OF_EMBED
1215 /* Get a pointer to the FDT */
1216 gd->fdt_blob = __dtb_dt_begin;
1217 # elif defined CONFIG_OF_SEPARATE
1218 # ifdef CONFIG_SPL_BUILD
1219 /* FDT is at end of BSS */
1220 gd->fdt_blob = (ulong *)&__bss_end;
1222 /* FDT is at end of image */
1223 gd->fdt_blob = (ulong *)&_end;
1225 # elif defined(CONFIG_OF_HOSTFILE)
1226 if (sandbox_read_fdt_from_file()) {
1227 puts("Failed to read control FDT\n");
1231 # ifndef CONFIG_SPL_BUILD
1232 /* Allow the early environment to override the fdt address */
1233 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
1234 (uintptr_t)gd->fdt_blob);
1237 return fdtdec_prepare_fdt();
1240 #endif /* !USE_HOSTCC */