2 * Copyright (c) 2011 The Chromium OS Authors.
3 * SPDX-License-Identifier: GPL-2.0+
12 #include <linux/ctype.h>
14 DECLARE_GLOBAL_DATA_PTR;
17 * Here are the type we know about. One day we might allow drivers to
18 * register. For now we just put them here. The COMPAT macro allows us to
19 * turn this into a sparse list later, and keeps the ID with the name.
21 #define COMPAT(id, name) name
22 static const char * const compat_names[COMPAT_COUNT] = {
23 COMPAT(UNKNOWN, "<none>"),
24 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
25 COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"),
26 COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"),
27 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
28 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
29 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
30 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
31 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
32 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
33 COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"),
34 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
35 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
36 COMPAT(NVIDIA_TEGRA124_PCIE, "nvidia,tegra124-pcie"),
37 COMPAT(NVIDIA_TEGRA30_PCIE, "nvidia,tegra30-pcie"),
38 COMPAT(NVIDIA_TEGRA20_PCIE, "nvidia,tegra20-pcie"),
39 COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"),
40 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
41 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
42 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
43 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
44 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
45 COMPAT(GOOGLE_CROS_EC, "google,cros-ec"),
46 COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"),
47 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
48 COMPAT(SAMSUNG_EXYNOS5_XHCI, "samsung,exynos5250-xhci"),
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_pmic"),
59 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
60 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
61 COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"),
62 COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"),
63 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
64 COMPAT(SANDBOX_HOST_EMULATION, "sandbox,host-emulation"),
65 COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"),
66 COMPAT(TI_TPS65090, "ti,tps65090"),
67 COMPAT(COMPAT_NXP_PTN3460, "nxp,ptn3460"),
68 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
69 COMPAT(PARADE_PS8625, "parade,ps8625"),
70 COMPAT(COMPAT_INTEL_LPC, "intel,lpc"),
71 COMPAT(INTEL_MICROCODE, "intel,microcode"),
72 COMPAT(MEMORY_SPD, "memory-spd"),
73 COMPAT(INTEL_PANTHERPOINT_AHCI, "intel,pantherpoint-ahci"),
74 COMPAT(INTEL_MODEL_206AX, "intel,model-206ax"),
75 COMPAT(INTEL_GMA, "intel,gma"),
76 COMPAT(AMS_AS3722, "ams,as3722"),
77 COMPAT(INTEL_ICH_SPI, "intel,ich-spi"),
78 COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"),
81 const char *fdtdec_get_compatible(enum fdt_compat_id id)
83 /* We allow reading of the 'unknown' ID for testing purposes */
84 assert(id >= 0 && id < COMPAT_COUNT);
85 return compat_names[id];
88 fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
89 const char *prop_name, fdt_size_t *sizep)
91 const fdt_addr_t *cell;
94 debug("%s: %s: ", __func__, prop_name);
95 cell = fdt_getprop(blob, node, prop_name, &len);
96 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
97 len == sizeof(fdt_addr_t) * 2)) {
98 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
100 const fdt_size_t *size;
102 size = (fdt_size_t *)((char *)cell +
104 *sizep = fdt_size_to_cpu(*size);
105 debug("addr=%08lx, size=%08x\n",
106 (ulong)addr, *sizep);
108 debug("%08lx\n", (ulong)addr);
112 debug("(not found)\n");
113 return FDT_ADDR_T_NONE;
116 fdt_addr_t fdtdec_get_addr(const void *blob, int node,
117 const char *prop_name)
119 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
123 int fdtdec_get_pci_addr(const void *blob, int node, enum fdt_pci_space type,
124 const char *prop_name, struct fdt_pci_addr *addr)
130 debug("%s: %s: ", __func__, prop_name);
133 * If we follow the pci bus bindings strictly, we should check
134 * the value of the node's parent node's #address-cells and
135 * #size-cells. They need to be 3 and 2 accordingly. However,
136 * for simplicity we skip the check here.
138 cell = fdt_getprop(blob, node, prop_name, &len);
142 if ((len % FDT_PCI_REG_SIZE) == 0) {
143 int num = len / FDT_PCI_REG_SIZE;
146 for (i = 0; i < num; i++) {
147 debug("pci address #%d: %08lx %08lx %08lx\n", i,
148 (ulong)fdt_addr_to_cpu(cell[0]),
149 (ulong)fdt_addr_to_cpu(cell[1]),
150 (ulong)fdt_addr_to_cpu(cell[2]));
151 if ((fdt_addr_to_cpu(*cell) & type) == type) {
152 addr->phys_hi = fdt_addr_to_cpu(cell[0]);
153 addr->phys_mid = fdt_addr_to_cpu(cell[1]);
154 addr->phys_lo = fdt_addr_to_cpu(cell[2]);
157 cell += (FDT_PCI_ADDR_CELLS +
171 debug("(not found)\n");
175 int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
177 const char *list, *end;
180 list = fdt_getprop(blob, node, "compatible", &len);
189 if (len >= strlen("pciVVVV,DDDD")) {
190 s = strstr(list, "pci");
193 * check if the string is something like pciVVVV,DDDD.RR
194 * or just pciVVVV,DDDD
196 if (s && s[7] == ',' &&
197 (s[12] == '.' || s[12] == 0)) {
199 *vendor = simple_strtol(s, NULL, 16);
202 *device = simple_strtol(s, NULL, 16);
214 int fdtdec_get_pci_bdf(const void *blob, int node,
215 struct fdt_pci_addr *addr, pci_dev_t *bdf)
217 u16 dt_vendor, dt_device, vendor, device;
220 /* get vendor id & device id from the compatible string */
221 ret = fdtdec_get_pci_vendev(blob, node, &dt_vendor, &dt_device);
225 /* extract the bdf from fdt_pci_addr */
226 *bdf = addr->phys_hi & 0xffff00;
228 /* read vendor id & device id based on bdf */
229 pci_read_config_word(*bdf, PCI_VENDOR_ID, &vendor);
230 pci_read_config_word(*bdf, PCI_DEVICE_ID, &device);
233 * Note there are two places in the device tree to fully describe
234 * a pci device: one is via compatible string with a format of
235 * "pciVVVV,DDDD" and the other one is the bdf numbers encoded in
236 * the device node's reg address property. We read the vendor id
237 * and device id based on bdf and compare the values with the
238 * "VVVV,DDDD". If they are the same, then we are good to use bdf
239 * to read device's bar. But if they are different, we have to rely
240 * on the vendor id and device id extracted from the compatible
241 * string and locate the real bdf by pci_find_device(). This is
242 * because normally we may only know device's device number and
243 * function number when writing device tree. The bus number is
244 * dynamically assigned during the pci enumeration process.
246 if ((dt_vendor != vendor) || (dt_device != device)) {
247 *bdf = pci_find_device(dt_vendor, dt_device, 0);
255 int fdtdec_get_pci_bar32(const void *blob, int node,
256 struct fdt_pci_addr *addr, u32 *bar)
262 /* get pci devices's bdf */
263 ret = fdtdec_get_pci_bdf(blob, node, addr, &bdf);
267 /* extract the bar number from fdt_pci_addr */
268 barnum = addr->phys_hi & 0xff;
269 if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS))
272 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
273 *bar = pci_read_bar32(pci_bus_to_hose(PCI_BUS(bdf)), bdf, barnum);
279 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
280 uint64_t default_val)
282 const uint64_t *cell64;
285 cell64 = fdt_getprop(blob, node, prop_name, &length);
286 if (!cell64 || length < sizeof(*cell64))
289 return fdt64_to_cpu(*cell64);
292 int fdtdec_get_is_enabled(const void *blob, int node)
297 * It should say "okay", so only allow that. Some fdts use "ok" but
298 * this is a bug. Please fix your device tree source file. See here
303 cell = fdt_getprop(blob, node, "status", NULL);
305 return 0 == strcmp(cell, "okay");
309 enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
311 enum fdt_compat_id id;
313 /* Search our drivers */
314 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
315 if (0 == fdt_node_check_compatible(blob, node,
318 return COMPAT_UNKNOWN;
321 int fdtdec_next_compatible(const void *blob, int node,
322 enum fdt_compat_id id)
324 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
327 int fdtdec_next_compatible_subnode(const void *blob, int node,
328 enum fdt_compat_id id, int *depthp)
331 node = fdt_next_node(blob, node, depthp);
332 } while (*depthp > 1);
334 /* If this is a direct subnode, and compatible, return it */
335 if (*depthp == 1 && 0 == fdt_node_check_compatible(
336 blob, node, compat_names[id]))
339 return -FDT_ERR_NOTFOUND;
342 int fdtdec_next_alias(const void *blob, const char *name,
343 enum fdt_compat_id id, int *upto)
345 #define MAX_STR_LEN 20
346 char str[MAX_STR_LEN + 20];
349 /* snprintf() is not available */
350 assert(strlen(name) < MAX_STR_LEN);
351 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
352 node = fdt_path_offset(blob, str);
355 err = fdt_node_check_compatible(blob, node, compat_names[id]);
359 return -FDT_ERR_NOTFOUND;
364 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
365 enum fdt_compat_id id, int *node_list, int maxcount)
367 memset(node_list, '\0', sizeof(*node_list) * maxcount);
369 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
372 /* TODO: Can we tighten this code up a little? */
373 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
374 enum fdt_compat_id id, int *node_list, int maxcount)
376 int name_len = strlen(name);
384 /* find the alias node if present */
385 alias_node = fdt_path_offset(blob, "/aliases");
388 * start with nothing, and we can assume that the root node can't
391 memset(nodes, '\0', sizeof(nodes));
393 /* First find all the compatible nodes */
394 for (node = count = 0; node >= 0 && count < maxcount;) {
395 node = fdtdec_next_compatible(blob, node, id);
397 nodes[count++] = node;
400 debug("%s: warning: maxcount exceeded with alias '%s'\n",
403 /* Now find all the aliases */
404 for (offset = fdt_first_property_offset(blob, alias_node);
406 offset = fdt_next_property_offset(blob, offset)) {
407 const struct fdt_property *prop;
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);
420 /* Get the alias number */
421 number = simple_strtoul(path + name_len, NULL, 10);
422 if (number < 0 || number >= maxcount) {
423 debug("%s: warning: alias '%s' is out of range\n",
428 /* Make sure the node we found is actually in our list! */
430 for (j = 0; j < count; j++)
431 if (nodes[j] == node) {
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),
446 * Add this node to our list in the right place, and mark
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));
458 node_list[number] = node;
459 if (number >= num_found)
460 num_found = number + 1;
465 /* Add any nodes not mentioned by an alias */
466 for (i = j = 0; i < maxcount; i++) {
468 for (; j < maxcount; j++)
470 fdtdec_get_is_enabled(blob, nodes[j]))
473 /* Have we run out of nodes to add? */
477 assert(!node_list[i]);
478 node_list[i] = nodes[j++];
487 int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
490 int base_len = strlen(base);
491 const char *find_name;
496 find_name = fdt_get_name(blob, offset, &find_namelen);
497 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
499 aliases = fdt_path_offset(blob, "/aliases");
500 for (prop_offset = fdt_first_property_offset(blob, aliases);
502 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
509 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
510 debug(" - %s, %s\n", name, prop);
511 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
512 strncmp(name, base, base_len))
515 slash = strrchr(prop, '/');
516 if (strcmp(slash + 1, find_name))
518 for (p = name + strlen(name) - 1; p > name; p--) {
520 *seqp = simple_strtoul(p + 1, NULL, 10);
521 debug("Found seq %d\n", *seqp);
527 debug("Not found\n");
531 int fdtdec_get_chosen_node(const void *blob, const char *name)
538 return -FDT_ERR_NOTFOUND;
539 chosen_node = fdt_path_offset(blob, "/chosen");
540 prop = fdt_getprop(blob, chosen_node, name, &len);
542 return -FDT_ERR_NOTFOUND;
543 return fdt_path_offset(blob, prop);
546 int fdtdec_check_fdt(void)
549 * We must have an FDT, but we cannot panic() yet since the console
550 * is not ready. So for now, just assert(). Boards which need an early
551 * FDT (prior to console ready) will need to make their own
552 * arrangements and do their own checks.
554 assert(!fdtdec_prepare_fdt());
559 * This function is a little odd in that it accesses global data. At some
560 * point if the architecture board.c files merge this will make more sense.
561 * Even now, it is common code.
563 int fdtdec_prepare_fdt(void)
565 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
566 fdt_check_header(gd->fdt_blob)) {
567 printf("No valid FDT found - please append one to U-Boot "
568 "binary, use u-boot-dtb.bin or define "
569 "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
575 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
580 debug("%s: %s\n", __func__, prop_name);
581 phandle = fdt_getprop(blob, node, prop_name, NULL);
583 return -FDT_ERR_NOTFOUND;
585 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
590 * Look up a property in a node and check that it has a minimum length.
592 * @param blob FDT blob
593 * @param node node to examine
594 * @param prop_name name of property to find
595 * @param min_len minimum property length in bytes
596 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
597 found, or -FDT_ERR_BADLAYOUT if not enough data
598 * @return pointer to cell, which is only valid if err == 0
600 static const void *get_prop_check_min_len(const void *blob, int node,
601 const char *prop_name, int min_len, int *err)
606 debug("%s: %s\n", __func__, prop_name);
607 cell = fdt_getprop(blob, node, prop_name, &len);
609 *err = -FDT_ERR_NOTFOUND;
610 else if (len < min_len)
611 *err = -FDT_ERR_BADLAYOUT;
617 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
618 u32 *array, int count)
623 debug("%s: %s\n", __func__, prop_name);
624 cell = get_prop_check_min_len(blob, node, prop_name,
625 sizeof(u32) * count, &err);
627 for (i = 0; i < count; i++)
628 array[i] = fdt32_to_cpu(cell[i]);
633 int fdtdec_get_int_array_count(const void *blob, int node,
634 const char *prop_name, u32 *array, int count)
640 debug("%s: %s\n", __func__, prop_name);
641 cell = fdt_getprop(blob, node, prop_name, &len);
643 return -FDT_ERR_NOTFOUND;
644 elems = len / sizeof(u32);
647 for (i = 0; i < count; i++)
648 array[i] = fdt32_to_cpu(cell[i]);
653 const u32 *fdtdec_locate_array(const void *blob, int node,
654 const char *prop_name, int count)
659 cell = get_prop_check_min_len(blob, node, prop_name,
660 sizeof(u32) * count, &err);
661 return err ? NULL : cell;
664 int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
669 debug("%s: %s\n", __func__, prop_name);
670 cell = fdt_getprop(blob, node, prop_name, &len);
674 int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
675 const char *list_name,
676 const char *cells_name,
677 int cell_count, int index,
678 struct fdtdec_phandle_args *out_args)
680 const __be32 *list, *list_end;
681 int rc = 0, size, cur_index = 0;
686 /* Retrieve the phandle list property */
687 list = fdt_getprop(blob, src_node, list_name, &size);
690 list_end = list + size / sizeof(*list);
692 /* Loop over the phandles until all the requested entry is found */
693 while (list < list_end) {
698 * If phandle is 0, then it is an empty entry with no
699 * arguments. Skip forward to the next entry.
701 phandle = be32_to_cpup(list++);
704 * Find the provider node and parse the #*-cells
705 * property to determine the argument length.
707 * This is not needed if the cell count is hard-coded
708 * (i.e. cells_name not set, but cell_count is set),
709 * except when we're going to return the found node
712 if (cells_name || cur_index == index) {
713 node = fdt_node_offset_by_phandle(blob,
716 debug("%s: could not find phandle\n",
717 fdt_get_name(blob, src_node,
724 count = fdtdec_get_int(blob, node, cells_name,
727 debug("%s: could not get %s for %s\n",
728 fdt_get_name(blob, src_node,
731 fdt_get_name(blob, node,
740 * Make sure that the arguments actually fit in the
741 * remaining property data length
743 if (list + count > list_end) {
744 debug("%s: arguments longer than property\n",
745 fdt_get_name(blob, src_node, NULL));
751 * All of the error cases above bail out of the loop, so at
752 * this point, the parsing is successful. If the requested
753 * index matches, then fill the out_args structure and return,
754 * or return -ENOENT for an empty entry.
757 if (cur_index == index) {
764 if (count > MAX_PHANDLE_ARGS) {
765 debug("%s: too many arguments %d\n",
766 fdt_get_name(blob, src_node,
768 count = MAX_PHANDLE_ARGS;
770 out_args->node = node;
771 out_args->args_count = count;
772 for (i = 0; i < count; i++) {
774 be32_to_cpup(list++);
778 /* Found it! return success */
788 * Result will be one of:
789 * -ENOENT : index is for empty phandle
790 * -EINVAL : parsing error on data
791 * [1..n] : Number of phandle (count mode; when index = -1)
793 rc = index < 0 ? cur_index : -ENOENT;
798 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
799 u8 *array, int count)
804 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
806 memcpy(array, cell, count);
810 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
811 const char *prop_name, int count)
816 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
822 int fdtdec_get_config_int(const void *blob, const char *prop_name,
827 debug("%s: %s\n", __func__, prop_name);
828 config_node = fdt_path_offset(blob, "/config");
831 return fdtdec_get_int(blob, config_node, prop_name, default_val);
834 int fdtdec_get_config_bool(const void *blob, const char *prop_name)
839 debug("%s: %s\n", __func__, prop_name);
840 config_node = fdt_path_offset(blob, "/config");
843 prop = fdt_get_property(blob, config_node, prop_name, NULL);
848 char *fdtdec_get_config_string(const void *blob, const char *prop_name)
854 debug("%s: %s\n", __func__, prop_name);
855 nodeoffset = fdt_path_offset(blob, "/config");
859 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
863 return (char *)nodep;
866 int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
867 fdt_addr_t *basep, fdt_size_t *sizep)
869 const fdt_addr_t *cell;
872 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
874 cell = fdt_getprop(blob, node, prop_name, &len);
875 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
876 debug("cell=%p, len=%d\n", cell, len);
880 *basep = fdt_addr_to_cpu(*cell);
881 *sizep = fdt_size_to_cpu(cell[1]);
882 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
889 * Read a flash entry from the fdt
891 * @param blob FDT blob
892 * @param node Offset of node to read
893 * @param name Name of node being read
894 * @param entry Place to put offset and size of this node
895 * @return 0 if ok, -ve on error
897 int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
898 struct fmap_entry *entry)
903 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
904 debug("Node '%s' has bad/missing 'reg' property\n", name);
905 return -FDT_ERR_NOTFOUND;
907 entry->offset = reg[0];
908 entry->length = reg[1];
909 entry->used = fdtdec_get_int(blob, node, "used", entry->length);
910 prop = fdt_getprop(blob, node, "compress", NULL);
911 entry->compress_algo = prop && !strcmp(prop, "lzo") ?
912 FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE;
913 prop = fdt_getprop(blob, node, "hash", &entry->hash_size);
914 entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE;
915 entry->hash = (uint8_t *)prop;
920 static u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
925 number = (number << 32) | fdt32_to_cpu(*ptr++);
930 int fdt_get_resource(const void *fdt, int node, const char *property,
931 unsigned int index, struct fdt_resource *res)
933 const fdt32_t *ptr, *end;
934 int na, ns, len, parent;
937 parent = fdt_parent_offset(fdt, node);
941 na = fdt_address_cells(fdt, parent);
942 ns = fdt_size_cells(fdt, parent);
944 ptr = fdt_getprop(fdt, node, property, &len);
948 end = ptr + len / sizeof(*ptr);
950 while (ptr + na + ns <= end) {
952 res->start = res->end = fdtdec_get_number(ptr, na);
953 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
961 return -FDT_ERR_NOTFOUND;
964 int fdt_get_named_resource(const void *fdt, int node, const char *property,
965 const char *prop_names, const char *name,
966 struct fdt_resource *res)
970 index = fdt_find_string(fdt, node, prop_names, name);
974 return fdt_get_resource(fdt, node, property, index, res);
977 int fdtdec_decode_memory_region(const void *blob, int config_node,
978 const char *mem_type, const char *suffix,
979 fdt_addr_t *basep, fdt_size_t *sizep)
983 fdt_size_t size, offset_size;
984 fdt_addr_t base, offset;
987 if (config_node == -1) {
988 config_node = fdt_path_offset(blob, "/config");
989 if (config_node < 0) {
990 debug("%s: Cannot find /config node\n", __func__);
997 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
999 mem = fdt_getprop(blob, config_node, prop_name, NULL);
1001 debug("%s: No memory type for '%s', using /memory\n", __func__,
1006 node = fdt_path_offset(blob, mem);
1008 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
1009 fdt_strerror(node));
1014 * Not strictly correct - the memory may have multiple banks. We just
1017 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
1018 debug("%s: Failed to decode memory region %s\n", __func__,
1023 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
1025 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
1027 debug("%s: Failed to decode memory region '%s'\n", __func__,
1032 *basep = base + offset;
1033 *sizep = offset_size;