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(COMPAT_INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"),
78 COMPAT(COMPAT_INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"),
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=%llx\n",
106 (ulong)addr, (u64)*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 +
173 debug("(not found)\n");
177 int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
179 const char *list, *end;
182 list = fdt_getprop(blob, node, "compatible", &len);
191 if (len >= strlen("pciVVVV,DDDD")) {
192 s = strstr(list, "pci");
195 * check if the string is something like pciVVVV,DDDD.RR
196 * or just pciVVVV,DDDD
198 if (s && s[7] == ',' &&
199 (s[12] == '.' || s[12] == 0)) {
201 *vendor = simple_strtol(s, NULL, 16);
204 *device = simple_strtol(s, NULL, 16);
215 int fdtdec_get_pci_bdf(const void *blob, int node,
216 struct fdt_pci_addr *addr, pci_dev_t *bdf)
218 u16 dt_vendor, dt_device, vendor, device;
221 /* get vendor id & device id from the compatible string */
222 ret = fdtdec_get_pci_vendev(blob, node, &dt_vendor, &dt_device);
226 /* extract the bdf from fdt_pci_addr */
227 *bdf = addr->phys_hi & 0xffff00;
229 /* read vendor id & device id based on bdf */
230 pci_read_config_word(*bdf, PCI_VENDOR_ID, &vendor);
231 pci_read_config_word(*bdf, PCI_DEVICE_ID, &device);
234 * Note there are two places in the device tree to fully describe
235 * a pci device: one is via compatible string with a format of
236 * "pciVVVV,DDDD" and the other one is the bdf numbers encoded in
237 * the device node's reg address property. We read the vendor id
238 * and device id based on bdf and compare the values with the
239 * "VVVV,DDDD". If they are the same, then we are good to use bdf
240 * to read device's bar. But if they are different, we have to rely
241 * on the vendor id and device id extracted from the compatible
242 * string and locate the real bdf by pci_find_device(). This is
243 * because normally we may only know device's device number and
244 * function number when writing device tree. The bus number is
245 * dynamically assigned during the pci enumeration process.
247 if ((dt_vendor != vendor) || (dt_device != device)) {
248 *bdf = pci_find_device(dt_vendor, dt_device, 0);
256 int fdtdec_get_pci_bar32(const void *blob, int node,
257 struct fdt_pci_addr *addr, u32 *bar)
263 /* get pci devices's bdf */
264 ret = fdtdec_get_pci_bdf(blob, node, addr, &bdf);
268 /* extract the bar number from fdt_pci_addr */
269 barnum = addr->phys_hi & 0xff;
270 if ((barnum < PCI_BASE_ADDRESS_0) || (barnum > PCI_CARDBUS_CIS))
273 barnum = (barnum - PCI_BASE_ADDRESS_0) / 4;
274 *bar = pci_read_bar32(pci_bus_to_hose(PCI_BUS(bdf)), bdf, barnum);
280 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
281 uint64_t default_val)
283 const uint64_t *cell64;
286 cell64 = fdt_getprop(blob, node, prop_name, &length);
287 if (!cell64 || length < sizeof(*cell64))
290 return fdt64_to_cpu(*cell64);
293 int fdtdec_get_is_enabled(const void *blob, int node)
298 * It should say "okay", so only allow that. Some fdts use "ok" but
299 * this is a bug. Please fix your device tree source file. See here
302 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
304 cell = fdt_getprop(blob, node, "status", NULL);
306 return 0 == strcmp(cell, "okay");
310 enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
312 enum fdt_compat_id id;
314 /* Search our drivers */
315 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
316 if (0 == fdt_node_check_compatible(blob, node,
319 return COMPAT_UNKNOWN;
322 int fdtdec_next_compatible(const void *blob, int node,
323 enum fdt_compat_id id)
325 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
328 int fdtdec_next_compatible_subnode(const void *blob, int node,
329 enum fdt_compat_id id, int *depthp)
332 node = fdt_next_node(blob, node, depthp);
333 } while (*depthp > 1);
335 /* If this is a direct subnode, and compatible, return it */
336 if (*depthp == 1 && 0 == fdt_node_check_compatible(
337 blob, node, compat_names[id]))
340 return -FDT_ERR_NOTFOUND;
343 int fdtdec_next_alias(const void *blob, const char *name,
344 enum fdt_compat_id id, int *upto)
346 #define MAX_STR_LEN 20
347 char str[MAX_STR_LEN + 20];
350 /* snprintf() is not available */
351 assert(strlen(name) < MAX_STR_LEN);
352 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
353 node = fdt_path_offset(blob, str);
356 err = fdt_node_check_compatible(blob, node, compat_names[id]);
360 return -FDT_ERR_NOTFOUND;
365 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
366 enum fdt_compat_id id, int *node_list, int maxcount)
368 memset(node_list, '\0', sizeof(*node_list) * maxcount);
370 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
373 /* TODO: Can we tighten this code up a little? */
374 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
375 enum fdt_compat_id id, int *node_list, int maxcount)
377 int name_len = strlen(name);
385 /* find the alias node if present */
386 alias_node = fdt_path_offset(blob, "/aliases");
389 * start with nothing, and we can assume that the root node can't
392 memset(nodes, '\0', sizeof(nodes));
394 /* First find all the compatible nodes */
395 for (node = count = 0; node >= 0 && count < maxcount;) {
396 node = fdtdec_next_compatible(blob, node, id);
398 nodes[count++] = node;
401 debug("%s: warning: maxcount exceeded with alias '%s'\n",
404 /* Now find all the aliases */
405 for (offset = fdt_first_property_offset(blob, alias_node);
407 offset = fdt_next_property_offset(blob, offset)) {
408 const struct fdt_property *prop;
414 prop = fdt_get_property_by_offset(blob, offset, NULL);
415 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
416 if (prop->len && 0 == strncmp(path, name, name_len))
417 node = fdt_path_offset(blob, prop->data);
421 /* Get the alias number */
422 number = simple_strtoul(path + name_len, NULL, 10);
423 if (number < 0 || number >= maxcount) {
424 debug("%s: warning: alias '%s' is out of range\n",
429 /* Make sure the node we found is actually in our list! */
431 for (j = 0; j < count; j++)
432 if (nodes[j] == node) {
438 debug("%s: warning: alias '%s' points to a node "
439 "'%s' that is missing or is not compatible "
440 " with '%s'\n", __func__, path,
441 fdt_get_name(blob, node, NULL),
447 * Add this node to our list in the right place, and mark
450 if (fdtdec_get_is_enabled(blob, node)) {
451 if (node_list[number]) {
452 debug("%s: warning: alias '%s' requires that "
453 "a node be placed in the list in a "
454 "position which is already filled by "
455 "node '%s'\n", __func__, path,
456 fdt_get_name(blob, node, NULL));
459 node_list[number] = node;
460 if (number >= num_found)
461 num_found = number + 1;
466 /* Add any nodes not mentioned by an alias */
467 for (i = j = 0; i < maxcount; i++) {
469 for (; j < maxcount; j++)
471 fdtdec_get_is_enabled(blob, nodes[j]))
474 /* Have we run out of nodes to add? */
478 assert(!node_list[i]);
479 node_list[i] = nodes[j++];
488 int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
491 int base_len = strlen(base);
492 const char *find_name;
497 find_name = fdt_get_name(blob, offset, &find_namelen);
498 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
500 aliases = fdt_path_offset(blob, "/aliases");
501 for (prop_offset = fdt_first_property_offset(blob, aliases);
503 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 val = trailing_strtol(name);
521 debug("Found seq %d\n", *seqp);
526 debug("Not found\n");
530 int fdtdec_get_chosen_node(const void *blob, const char *name)
537 return -FDT_ERR_NOTFOUND;
538 chosen_node = fdt_path_offset(blob, "/chosen");
539 prop = fdt_getprop(blob, chosen_node, name, &len);
541 return -FDT_ERR_NOTFOUND;
542 return fdt_path_offset(blob, prop);
545 int fdtdec_check_fdt(void)
548 * We must have an FDT, but we cannot panic() yet since the console
549 * is not ready. So for now, just assert(). Boards which need an early
550 * FDT (prior to console ready) will need to make their own
551 * arrangements and do their own checks.
553 assert(!fdtdec_prepare_fdt());
558 * This function is a little odd in that it accesses global data. At some
559 * point if the architecture board.c files merge this will make more sense.
560 * Even now, it is common code.
562 int fdtdec_prepare_fdt(void)
564 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
565 fdt_check_header(gd->fdt_blob)) {
566 #ifdef CONFIG_SPL_BUILD
567 puts("Missing DTB\n");
569 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");
572 printf("fdt_blob=%p\n", gd->fdt_blob);
573 print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4,
583 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
588 debug("%s: %s\n", __func__, prop_name);
589 phandle = fdt_getprop(blob, node, prop_name, NULL);
591 return -FDT_ERR_NOTFOUND;
593 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
598 * Look up a property in a node and check that it has a minimum length.
600 * @param blob FDT blob
601 * @param node node to examine
602 * @param prop_name name of property to find
603 * @param min_len minimum property length in bytes
604 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
605 found, or -FDT_ERR_BADLAYOUT if not enough data
606 * @return pointer to cell, which is only valid if err == 0
608 static const void *get_prop_check_min_len(const void *blob, int node,
609 const char *prop_name, int min_len, int *err)
614 debug("%s: %s\n", __func__, prop_name);
615 cell = fdt_getprop(blob, node, prop_name, &len);
617 *err = -FDT_ERR_NOTFOUND;
618 else if (len < min_len)
619 *err = -FDT_ERR_BADLAYOUT;
625 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
626 u32 *array, int count)
631 debug("%s: %s\n", __func__, prop_name);
632 cell = get_prop_check_min_len(blob, node, prop_name,
633 sizeof(u32) * count, &err);
635 for (i = 0; i < count; i++)
636 array[i] = fdt32_to_cpu(cell[i]);
641 int fdtdec_get_int_array_count(const void *blob, int node,
642 const char *prop_name, u32 *array, int count)
648 debug("%s: %s\n", __func__, prop_name);
649 cell = fdt_getprop(blob, node, prop_name, &len);
651 return -FDT_ERR_NOTFOUND;
652 elems = len / sizeof(u32);
655 for (i = 0; i < count; i++)
656 array[i] = fdt32_to_cpu(cell[i]);
661 const u32 *fdtdec_locate_array(const void *blob, int node,
662 const char *prop_name, int count)
667 cell = get_prop_check_min_len(blob, node, prop_name,
668 sizeof(u32) * count, &err);
669 return err ? NULL : cell;
672 int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
677 debug("%s: %s\n", __func__, prop_name);
678 cell = fdt_getprop(blob, node, prop_name, &len);
682 int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
683 const char *list_name,
684 const char *cells_name,
685 int cell_count, int index,
686 struct fdtdec_phandle_args *out_args)
688 const __be32 *list, *list_end;
689 int rc = 0, size, cur_index = 0;
694 /* Retrieve the phandle list property */
695 list = fdt_getprop(blob, src_node, list_name, &size);
698 list_end = list + size / sizeof(*list);
700 /* Loop over the phandles until all the requested entry is found */
701 while (list < list_end) {
706 * If phandle is 0, then it is an empty entry with no
707 * arguments. Skip forward to the next entry.
709 phandle = be32_to_cpup(list++);
712 * Find the provider node and parse the #*-cells
713 * property to determine the argument length.
715 * This is not needed if the cell count is hard-coded
716 * (i.e. cells_name not set, but cell_count is set),
717 * except when we're going to return the found node
720 if (cells_name || cur_index == index) {
721 node = fdt_node_offset_by_phandle(blob,
724 debug("%s: could not find phandle\n",
725 fdt_get_name(blob, src_node,
732 count = fdtdec_get_int(blob, node, cells_name,
735 debug("%s: could not get %s for %s\n",
736 fdt_get_name(blob, src_node,
739 fdt_get_name(blob, node,
748 * Make sure that the arguments actually fit in the
749 * remaining property data length
751 if (list + count > list_end) {
752 debug("%s: arguments longer than property\n",
753 fdt_get_name(blob, src_node, NULL));
759 * All of the error cases above bail out of the loop, so at
760 * this point, the parsing is successful. If the requested
761 * index matches, then fill the out_args structure and return,
762 * or return -ENOENT for an empty entry.
765 if (cur_index == index) {
772 if (count > MAX_PHANDLE_ARGS) {
773 debug("%s: too many arguments %d\n",
774 fdt_get_name(blob, src_node,
776 count = MAX_PHANDLE_ARGS;
778 out_args->node = node;
779 out_args->args_count = count;
780 for (i = 0; i < count; i++) {
782 be32_to_cpup(list++);
786 /* Found it! return success */
796 * Result will be one of:
797 * -ENOENT : index is for empty phandle
798 * -EINVAL : parsing error on data
799 * [1..n] : Number of phandle (count mode; when index = -1)
801 rc = index < 0 ? cur_index : -ENOENT;
806 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
807 u8 *array, int count)
812 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
814 memcpy(array, cell, count);
818 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
819 const char *prop_name, int count)
824 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
830 int fdtdec_get_config_int(const void *blob, const char *prop_name,
835 debug("%s: %s\n", __func__, prop_name);
836 config_node = fdt_path_offset(blob, "/config");
839 return fdtdec_get_int(blob, config_node, prop_name, default_val);
842 int fdtdec_get_config_bool(const void *blob, const char *prop_name)
847 debug("%s: %s\n", __func__, prop_name);
848 config_node = fdt_path_offset(blob, "/config");
851 prop = fdt_get_property(blob, config_node, prop_name, NULL);
856 char *fdtdec_get_config_string(const void *blob, const char *prop_name)
862 debug("%s: %s\n", __func__, prop_name);
863 nodeoffset = fdt_path_offset(blob, "/config");
867 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
871 return (char *)nodep;
874 int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
875 fdt_addr_t *basep, fdt_size_t *sizep)
877 const fdt_addr_t *cell;
880 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
882 cell = fdt_getprop(blob, node, prop_name, &len);
883 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
884 debug("cell=%p, len=%d\n", cell, len);
888 *basep = fdt_addr_to_cpu(*cell);
889 *sizep = fdt_size_to_cpu(cell[1]);
890 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
897 * Read a flash entry from the fdt
899 * @param blob FDT blob
900 * @param node Offset of node to read
901 * @param name Name of node being read
902 * @param entry Place to put offset and size of this node
903 * @return 0 if ok, -ve on error
905 int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
906 struct fmap_entry *entry)
911 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
912 debug("Node '%s' has bad/missing 'reg' property\n", name);
913 return -FDT_ERR_NOTFOUND;
915 entry->offset = reg[0];
916 entry->length = reg[1];
917 entry->used = fdtdec_get_int(blob, node, "used", entry->length);
918 prop = fdt_getprop(blob, node, "compress", NULL);
919 entry->compress_algo = prop && !strcmp(prop, "lzo") ?
920 FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE;
921 prop = fdt_getprop(blob, node, "hash", &entry->hash_size);
922 entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE;
923 entry->hash = (uint8_t *)prop;
928 u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
933 number = (number << 32) | fdt32_to_cpu(*ptr++);
938 int fdt_get_resource(const void *fdt, int node, const char *property,
939 unsigned int index, struct fdt_resource *res)
941 const fdt32_t *ptr, *end;
942 int na, ns, len, parent;
945 parent = fdt_parent_offset(fdt, node);
949 na = fdt_address_cells(fdt, parent);
950 ns = fdt_size_cells(fdt, parent);
952 ptr = fdt_getprop(fdt, node, property, &len);
956 end = ptr + len / sizeof(*ptr);
958 while (ptr + na + ns <= end) {
960 res->start = res->end = fdtdec_get_number(ptr, na);
961 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
969 return -FDT_ERR_NOTFOUND;
972 int fdt_get_named_resource(const void *fdt, int node, const char *property,
973 const char *prop_names, const char *name,
974 struct fdt_resource *res)
978 index = fdt_find_string(fdt, node, prop_names, name);
982 return fdt_get_resource(fdt, node, property, index, res);
985 int fdtdec_decode_memory_region(const void *blob, int config_node,
986 const char *mem_type, const char *suffix,
987 fdt_addr_t *basep, fdt_size_t *sizep)
991 fdt_size_t size, offset_size;
992 fdt_addr_t base, offset;
995 if (config_node == -1) {
996 config_node = fdt_path_offset(blob, "/config");
997 if (config_node < 0) {
998 debug("%s: Cannot find /config node\n", __func__);
1005 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
1007 mem = fdt_getprop(blob, config_node, prop_name, NULL);
1009 debug("%s: No memory type for '%s', using /memory\n", __func__,
1014 node = fdt_path_offset(blob, mem);
1016 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
1017 fdt_strerror(node));
1022 * Not strictly correct - the memory may have multiple banks. We just
1025 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
1026 debug("%s: Failed to decode memory region %s\n", __func__,
1031 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
1033 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
1035 debug("%s: Failed to decode memory region '%s'\n", __func__,
1040 *basep = base + offset;
1041 *sizep = offset_size;
1046 static int decode_timing_property(const void *blob, int node, const char *name,
1047 struct timing_entry *result)
1049 int length, ret = 0;
1052 prop = fdt_getprop(blob, node, name, &length);
1054 debug("%s: could not find property %s\n",
1055 fdt_get_name(blob, node, NULL), name);
1059 if (length == sizeof(u32)) {
1060 result->typ = fdtdec_get_int(blob, node, name, 0);
1061 result->min = result->typ;
1062 result->max = result->typ;
1064 ret = fdtdec_get_int_array(blob, node, name, &result->min, 3);
1070 int fdtdec_decode_display_timing(const void *blob, int parent, int index,
1071 struct display_timing *dt)
1073 int i, node, timings_node;
1077 timings_node = fdt_subnode_offset(blob, parent, "display-timings");
1078 if (timings_node < 0)
1079 return timings_node;
1081 for (i = 0, node = fdt_first_subnode(blob, timings_node);
1082 node > 0 && i != index;
1083 node = fdt_next_subnode(blob, node))
1089 memset(dt, 0, sizeof(*dt));
1091 ret |= decode_timing_property(blob, node, "hback-porch",
1093 ret |= decode_timing_property(blob, node, "hfront-porch",
1095 ret |= decode_timing_property(blob, node, "hactive", &dt->hactive);
1096 ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len);
1097 ret |= decode_timing_property(blob, node, "vback-porch",
1099 ret |= decode_timing_property(blob, node, "vfront-porch",
1101 ret |= decode_timing_property(blob, node, "vactive", &dt->vactive);
1102 ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len);
1103 ret |= decode_timing_property(blob, node, "clock-frequency",
1107 val = fdtdec_get_int(blob, node, "vsync-active", -1);
1109 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
1110 DISPLAY_FLAGS_VSYNC_LOW;
1112 val = fdtdec_get_int(blob, node, "hsync-active", -1);
1114 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
1115 DISPLAY_FLAGS_HSYNC_LOW;
1117 val = fdtdec_get_int(blob, node, "de-active", -1);
1119 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
1120 DISPLAY_FLAGS_DE_LOW;
1122 val = fdtdec_get_int(blob, node, "pixelclk-active", -1);
1124 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
1125 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
1128 if (fdtdec_get_bool(blob, node, "interlaced"))
1129 dt->flags |= DISPLAY_FLAGS_INTERLACED;
1130 if (fdtdec_get_bool(blob, node, "doublescan"))
1131 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
1132 if (fdtdec_get_bool(blob, node, "doubleclk"))
1133 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
1138 int fdtdec_setup(void)
1140 #if CONFIG_IS_ENABLED(OF_CONTROL)
1141 # ifdef CONFIG_OF_EMBED
1142 /* Get a pointer to the FDT */
1143 gd->fdt_blob = __dtb_dt_begin;
1144 # elif defined CONFIG_OF_SEPARATE
1145 # ifdef CONFIG_SPL_BUILD
1146 /* FDT is at end of BSS */
1147 gd->fdt_blob = (ulong *)&__bss_end;
1149 /* FDT is at end of image */
1150 gd->fdt_blob = (ulong *)&_end;
1152 # elif defined(CONFIG_OF_HOSTFILE)
1153 if (sandbox_read_fdt_from_file()) {
1154 puts("Failed to read control FDT\n");
1158 # ifndef CONFIG_SPL_BUILD
1159 /* Allow the early environment to override the fdt address */
1160 gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
1161 (uintptr_t)gd->fdt_blob);
1164 return fdtdec_prepare_fdt();
1167 #endif /* !USE_HOSTCC */