1 // SPDX-License-Identifier: GPL-2.0+
4 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
6 * Copyright 2010-2011 Freescale Semiconductor, Inc.
14 #include <stdio_dev.h>
15 #include <linux/ctype.h>
16 #include <linux/types.h>
17 #include <asm/global_data.h>
18 #include <linux/libfdt.h>
19 #include <fdt_support.h>
24 * fdt_getprop_u32_default_node - Return a node's property or a default
26 * @fdt: ptr to device tree
27 * @off: offset of node
28 * @cell: cell offset in property
29 * @prop: property name
30 * @dflt: default value if the property isn't found
32 * Convenience function to return a node's property or a default value if
33 * the property doesn't exist.
35 u32 fdt_getprop_u32_default_node(const void *fdt, int off, int cell,
36 const char *prop, const u32 dflt)
41 val = fdt_getprop(fdt, off, prop, &len);
43 /* Check if property exists */
47 /* Check if property is long enough */
48 if (len < ((cell + 1) * sizeof(uint32_t)))
51 return fdt32_to_cpu(*val);
55 * fdt_getprop_u32_default - Find a node and return it's property or a default
57 * @fdt: ptr to device tree
59 * @prop: property name
60 * @dflt: default value if the property isn't found
62 * Convenience function to find a node and return it's property or a
63 * default value if it doesn't exist.
65 u32 fdt_getprop_u32_default(const void *fdt, const char *path,
66 const char *prop, const u32 dflt)
70 off = fdt_path_offset(fdt, path);
74 return fdt_getprop_u32_default_node(fdt, off, 0, prop, dflt);
78 * fdt_find_and_setprop: Find a node and set it's property
80 * @fdt: ptr to device tree
82 * @prop: property name
83 * @val: ptr to new value
84 * @len: length of new property value
85 * @create: flag to create the property if it doesn't exist
87 * Convenience function to directly set a property given the path to the node.
89 int fdt_find_and_setprop(void *fdt, const char *node, const char *prop,
90 const void *val, int len, int create)
92 int nodeoff = fdt_path_offset(fdt, node);
97 if ((!create) && (fdt_get_property(fdt, nodeoff, prop, NULL) == NULL))
98 return 0; /* create flag not set; so exit quietly */
100 return fdt_setprop(fdt, nodeoff, prop, val, len);
104 * fdt_find_or_add_subnode() - find or possibly add a subnode of a given node
106 * @fdt: pointer to the device tree blob
107 * @parentoffset: structure block offset of a node
108 * @name: name of the subnode to locate
110 * fdt_subnode_offset() finds a subnode of the node with a given name.
111 * If the subnode does not exist, it will be created.
113 int fdt_find_or_add_subnode(void *fdt, int parentoffset, const char *name)
117 offset = fdt_subnode_offset(fdt, parentoffset, name);
119 if (offset == -FDT_ERR_NOTFOUND)
120 offset = fdt_add_subnode(fdt, parentoffset, name);
123 printf("%s: %s: %s\n", __func__, name, fdt_strerror(offset));
128 #if defined(CONFIG_OF_STDOUT_VIA_ALIAS) && defined(CONFIG_CONS_INDEX)
129 static int fdt_fixup_stdout(void *fdt, int chosenoff)
133 char sername[9] = { 0 };
136 char tmp[256]; /* long enough */
138 sprintf(sername, "serial%d", CONFIG_CONS_INDEX - 1);
140 aliasoff = fdt_path_offset(fdt, "/aliases");
146 path = fdt_getprop(fdt, aliasoff, sername, &len);
152 /* fdt_setprop may break "path" so we copy it to tmp buffer */
153 memcpy(tmp, path, len);
155 err = fdt_setprop(fdt, chosenoff, "linux,stdout-path", tmp, len);
157 printf("WARNING: could not set linux,stdout-path %s.\n",
163 printf("WARNING: %s: could not read %s alias: %s\n",
164 __func__, sername, fdt_strerror(err));
169 static int fdt_fixup_stdout(void *fdt, int chosenoff)
175 static inline int fdt_setprop_uxx(void *fdt, int nodeoffset, const char *name,
176 uint64_t val, int is_u64)
179 return fdt_setprop_u64(fdt, nodeoffset, name, val);
181 return fdt_setprop_u32(fdt, nodeoffset, name, (uint32_t)val);
184 int fdt_root(void *fdt)
189 err = fdt_check_header(fdt);
191 printf("fdt_root: %s\n", fdt_strerror(err));
195 serial = env_get("serial#");
197 err = fdt_setprop(fdt, 0, "serial-number", serial,
201 printf("WARNING: could not set serial-number %s.\n",
210 int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end)
217 /* just return if the size of initrd is zero */
218 if (initrd_start == initrd_end)
221 /* find or create "/chosen" node. */
222 nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
226 total = fdt_num_mem_rsv(fdt);
229 * Look for an existing entry and update it. If we don't find
230 * the entry, we will j be the next available slot.
232 for (j = 0; j < total; j++) {
233 err = fdt_get_mem_rsv(fdt, j, &addr, &size);
234 if (addr == initrd_start) {
235 fdt_del_mem_rsv(fdt, j);
240 err = fdt_add_mem_rsv(fdt, initrd_start, initrd_end - initrd_start);
242 printf("fdt_initrd: %s\n", fdt_strerror(err));
246 is_u64 = (fdt_address_cells(fdt, 0) == 2);
248 err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-start",
249 (uint64_t)initrd_start, is_u64);
252 printf("WARNING: could not set linux,initrd-start %s.\n",
257 err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-end",
258 (uint64_t)initrd_end, is_u64);
261 printf("WARNING: could not set linux,initrd-end %s.\n",
271 * board_fdt_chosen_bootargs - boards may override this function to use
272 * alternative kernel command line arguments
274 __weak char *board_fdt_chosen_bootargs(void)
276 return env_get("bootargs");
279 int fdt_chosen(void *fdt)
283 char *str; /* used to set string properties */
285 err = fdt_check_header(fdt);
287 printf("fdt_chosen: %s\n", fdt_strerror(err));
291 /* find or create "/chosen" node. */
292 nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
296 str = board_fdt_chosen_bootargs();
299 err = fdt_setprop(fdt, nodeoffset, "bootargs", str,
302 printf("WARNING: could not set bootargs %s.\n",
308 return fdt_fixup_stdout(fdt, nodeoffset);
311 void do_fixup_by_path(void *fdt, const char *path, const char *prop,
312 const void *val, int len, int create)
316 debug("Updating property '%s/%s' = ", path, prop);
317 for (i = 0; i < len; i++)
318 debug(" %.2x", *(u8*)(val+i));
321 int rc = fdt_find_and_setprop(fdt, path, prop, val, len, create);
323 printf("Unable to update property %s:%s, err=%s\n",
324 path, prop, fdt_strerror(rc));
327 void do_fixup_by_path_u32(void *fdt, const char *path, const char *prop,
330 fdt32_t tmp = cpu_to_fdt32(val);
331 do_fixup_by_path(fdt, path, prop, &tmp, sizeof(tmp), create);
334 void do_fixup_by_prop(void *fdt,
335 const char *pname, const void *pval, int plen,
336 const char *prop, const void *val, int len,
342 debug("Updating property '%s' = ", prop);
343 for (i = 0; i < len; i++)
344 debug(" %.2x", *(u8*)(val+i));
347 off = fdt_node_offset_by_prop_value(fdt, -1, pname, pval, plen);
348 while (off != -FDT_ERR_NOTFOUND) {
349 if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
350 fdt_setprop(fdt, off, prop, val, len);
351 off = fdt_node_offset_by_prop_value(fdt, off, pname, pval, plen);
355 void do_fixup_by_prop_u32(void *fdt,
356 const char *pname, const void *pval, int plen,
357 const char *prop, u32 val, int create)
359 fdt32_t tmp = cpu_to_fdt32(val);
360 do_fixup_by_prop(fdt, pname, pval, plen, prop, &tmp, 4, create);
363 void do_fixup_by_compat(void *fdt, const char *compat,
364 const char *prop, const void *val, int len, int create)
369 debug("Updating property '%s' = ", prop);
370 for (i = 0; i < len; i++)
371 debug(" %.2x", *(u8*)(val+i));
374 off = fdt_node_offset_by_compatible(fdt, -1, compat);
375 while (off != -FDT_ERR_NOTFOUND) {
376 if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
377 fdt_setprop(fdt, off, prop, val, len);
378 off = fdt_node_offset_by_compatible(fdt, off, compat);
382 void do_fixup_by_compat_u32(void *fdt, const char *compat,
383 const char *prop, u32 val, int create)
385 fdt32_t tmp = cpu_to_fdt32(val);
386 do_fixup_by_compat(fdt, compat, prop, &tmp, 4, create);
389 #ifdef CONFIG_ARCH_FIXUP_FDT_MEMORY
391 * fdt_pack_reg - pack address and size array into the "reg"-suitable stream
393 static int fdt_pack_reg(const void *fdt, void *buf, u64 *address, u64 *size,
397 int address_cells = fdt_address_cells(fdt, 0);
398 int size_cells = fdt_size_cells(fdt, 0);
401 for (i = 0; i < n; i++) {
402 if (address_cells == 2)
403 *(fdt64_t *)p = cpu_to_fdt64(address[i]);
405 *(fdt32_t *)p = cpu_to_fdt32(address[i]);
406 p += 4 * address_cells;
409 *(fdt64_t *)p = cpu_to_fdt64(size[i]);
411 *(fdt32_t *)p = cpu_to_fdt32(size[i]);
415 return p - (char *)buf;
418 #if CONFIG_NR_DRAM_BANKS > 4
419 #define MEMORY_BANKS_MAX CONFIG_NR_DRAM_BANKS
421 #define MEMORY_BANKS_MAX 4
425 * fdt_fixup_memory_banks - Update DT memory node
426 * @blob: Pointer to DT blob
427 * @start: Pointer to memory start addresses array
428 * @size: Pointer to memory sizes array
429 * @banks: Number of memory banks
431 * Return: 0 on success, negative value on failure
433 * Based on the passed number of banks and arrays, the function is able to
434 * update existing DT memory nodes to match run time detected/changed memory
435 * configuration. Implementation is handling one specific case with only one
436 * memory node where multiple tuples could be added/updated.
437 * The case where multiple memory nodes with a single tuple (base, size) are
438 * used, this function is only updating the first memory node without removing
441 int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
445 u8 tmp[MEMORY_BANKS_MAX * 16]; /* Up to 64-bit address + 64-bit size */
447 if (banks > MEMORY_BANKS_MAX) {
448 printf("%s: num banks %d exceeds hardcoded limit %d."
449 " Recompile with higher MEMORY_BANKS_MAX?\n",
450 __FUNCTION__, banks, MEMORY_BANKS_MAX);
454 err = fdt_check_header(blob);
456 printf("%s: %s\n", __FUNCTION__, fdt_strerror(err));
460 /* find or create "/memory" node. */
461 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
465 err = fdt_setprop(blob, nodeoffset, "device_type", "memory",
468 printf("WARNING: could not set %s %s.\n", "device_type",
473 for (i = 0; i < banks; i++) {
474 if (start[i] == 0 && size[i] == 0)
483 len = fdt_pack_reg(blob, tmp, start, size, banks);
485 err = fdt_setprop(blob, nodeoffset, "reg", tmp, len);
487 printf("WARNING: could not set %s %s.\n",
488 "reg", fdt_strerror(err));
494 int fdt_set_usable_memory(void *blob, u64 start[], u64 size[], int areas)
498 u8 tmp[8 * 16]; /* Up to 64-bit address + 64-bit size */
501 printf("%s: num areas %d exceeds hardcoded limit %d\n",
506 err = fdt_check_header(blob);
508 printf("%s: %s\n", __func__, fdt_strerror(err));
512 /* find or create "/memory" node. */
513 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
517 len = fdt_pack_reg(blob, tmp, start, size, areas);
519 err = fdt_setprop(blob, nodeoffset, "linux,usable-memory", tmp, len);
521 printf("WARNING: could not set %s %s.\n",
522 "reg", fdt_strerror(err));
530 int fdt_fixup_memory(void *blob, u64 start, u64 size)
532 return fdt_fixup_memory_banks(blob, &start, &size, 1);
535 void fdt_fixup_ethernet(void *fdt)
541 unsigned char mac_addr[ARP_HLEN];
543 #ifdef FDT_SEQ_MACADDR_FROM_ENV
545 const struct fdt_property *fdt_prop;
548 if (fdt_path_offset(fdt, "/aliases") < 0)
551 /* Cycle through all aliases */
552 for (prop = 0; ; prop++) {
555 /* FDT might have been edited, recompute the offset */
556 offset = fdt_first_property_offset(fdt,
557 fdt_path_offset(fdt, "/aliases"));
558 /* Select property number 'prop' */
559 for (j = 0; j < prop; j++)
560 offset = fdt_next_property_offset(fdt, offset);
565 path = fdt_getprop_by_offset(fdt, offset, &name, NULL);
566 if (!strncmp(name, "ethernet", 8)) {
567 /* Treat plain "ethernet" same as "ethernet0". */
568 if (!strcmp(name, "ethernet")
569 #ifdef FDT_SEQ_MACADDR_FROM_ENV
570 || !strcmp(name, "ethernet0")
574 #ifndef FDT_SEQ_MACADDR_FROM_ENV
576 i = trailing_strtol(name);
580 strcpy(mac, "ethaddr");
582 sprintf(mac, "eth%daddr", i);
586 #ifdef FDT_SEQ_MACADDR_FROM_ENV
587 nodeoff = fdt_path_offset(fdt, path);
588 fdt_prop = fdt_get_property(fdt, nodeoff, "status",
590 if (fdt_prop && !strcmp(fdt_prop->data, "disabled"))
598 for (j = 0; j < 6; j++) {
600 hextoul(tmp, &end) : 0;
602 tmp = (*end) ? end + 1 : end;
605 do_fixup_by_path(fdt, path, "mac-address",
607 do_fixup_by_path(fdt, path, "local-mac-address",
613 int fdt_record_loadable(void *blob, u32 index, const char *name,
614 uintptr_t load_addr, u32 size, uintptr_t entry_point,
615 const char *type, const char *os, const char *arch)
619 err = fdt_check_header(blob);
621 printf("%s: %s\n", __func__, fdt_strerror(err));
625 /* find or create "/fit-images" node */
626 node = fdt_find_or_add_subnode(blob, 0, "fit-images");
630 /* find or create "/fit-images/<name>" node */
631 node = fdt_find_or_add_subnode(blob, node, name);
635 fdt_setprop_u64(blob, node, "load", load_addr);
636 if (entry_point != -1)
637 fdt_setprop_u64(blob, node, "entry", entry_point);
638 fdt_setprop_u32(blob, node, "size", size);
640 fdt_setprop_string(blob, node, "type", type);
642 fdt_setprop_string(blob, node, "os", os);
644 fdt_setprop_string(blob, node, "arch", arch);
649 /* Resize the fdt to its actual size + a bit of padding */
650 int fdt_shrink_to_minimum(void *blob, uint extrasize)
661 total = fdt_num_mem_rsv(blob);
662 for (i = 0; i < total; i++) {
663 fdt_get_mem_rsv(blob, i, &addr, &size);
664 if (addr == (uintptr_t)blob) {
665 fdt_del_mem_rsv(blob, i);
672 * Calculate the actual size of the fdt
673 * plus the size needed for 5 fdt_add_mem_rsv, one
674 * for the fdt itself and 4 for a possible initrd
675 * ((initrd-start + initrd-end) * 2 (name & value))
677 actualsize = fdt_off_dt_strings(blob) +
678 fdt_size_dt_strings(blob) + 5 * sizeof(struct fdt_reserve_entry);
680 actualsize += extrasize;
681 /* Make it so the fdt ends on a page boundary */
682 actualsize = ALIGN(actualsize + ((uintptr_t)blob & 0xfff), 0x1000);
683 actualsize = actualsize - ((uintptr_t)blob & 0xfff);
685 /* Change the fdt header to reflect the correct size */
686 fdt_set_totalsize(blob, actualsize);
689 /* Add the new reservation */
690 ret = fdt_add_mem_rsv(blob, map_to_sysmem(blob), actualsize);
699 * fdt_delete_disabled_nodes: Delete all nodes with status == "disabled"
701 * @blob: ptr to device tree
703 int fdt_delete_disabled_nodes(void *blob)
708 offset = fdt_node_offset_by_prop_value(blob, -1, "status",
713 ret = fdt_del_node(blob, offset);
722 #define CONFIG_SYS_PCI_NR_INBOUND_WIN 4
724 #define FDT_PCI_PREFETCH (0x40000000)
725 #define FDT_PCI_MEM32 (0x02000000)
726 #define FDT_PCI_IO (0x01000000)
727 #define FDT_PCI_MEM64 (0x03000000)
729 int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose) {
731 int addrcell, sizecell, len, r;
733 /* sized based on pci addr cells, size-cells, & address-cells */
734 u32 dma_ranges[(3 + 2 + 2) * CONFIG_SYS_PCI_NR_INBOUND_WIN];
736 addrcell = fdt_getprop_u32_default(blob, "/", "#address-cells", 1);
737 sizecell = fdt_getprop_u32_default(blob, "/", "#size-cells", 1);
739 dma_range = &dma_ranges[0];
740 for (r = 0; r < hose->region_count; r++) {
741 u64 bus_start, phys_start, size;
743 /* skip if !PCI_REGION_SYS_MEMORY */
744 if (!(hose->regions[r].flags & PCI_REGION_SYS_MEMORY))
747 bus_start = (u64)hose->regions[r].bus_start;
748 phys_start = (u64)hose->regions[r].phys_start;
749 size = (u64)hose->regions[r].size;
752 if (size >= 0x100000000ull)
753 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM64);
755 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM32);
756 if (hose->regions[r].flags & PCI_REGION_PREFETCH)
757 dma_range[0] |= cpu_to_fdt32(FDT_PCI_PREFETCH);
758 #ifdef CONFIG_SYS_PCI_64BIT
759 dma_range[1] = cpu_to_fdt32(bus_start >> 32);
763 dma_range[2] = cpu_to_fdt32(bus_start & 0xffffffff);
766 dma_range[3] = cpu_to_fdt32(phys_start >> 32);
767 dma_range[4] = cpu_to_fdt32(phys_start & 0xffffffff);
769 dma_range[3] = cpu_to_fdt32(phys_start & 0xffffffff);
773 dma_range[3 + addrcell + 0] =
774 cpu_to_fdt32(size >> 32);
775 dma_range[3 + addrcell + 1] =
776 cpu_to_fdt32(size & 0xffffffff);
778 dma_range[3 + addrcell + 0] =
779 cpu_to_fdt32(size & 0xffffffff);
782 dma_range += (3 + addrcell + sizecell);
785 len = dma_range - &dma_ranges[0];
787 fdt_setprop(blob, phb_off, "dma-ranges", &dma_ranges[0], len*4);
793 int fdt_increase_size(void *fdt, int add_len)
797 newlen = fdt_totalsize(fdt) + add_len;
799 /* Open in place with a new len */
800 return fdt_open_into(fdt, fdt, newlen);
803 #ifdef CONFIG_FDT_FIXUP_PARTITIONS
804 #include <jffs2/load_kernel.h>
805 #include <mtd_node.h>
807 static int fdt_del_subnodes(const void *blob, int parent_offset)
812 for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth);
813 (off >= 0) && (ndepth > 0);
814 off = fdt_next_node(blob, off, &ndepth)) {
816 debug("delete %s: offset: %x\n",
817 fdt_get_name(blob, off, 0), off);
818 ret = fdt_del_node((void *)blob, off);
820 printf("Can't delete node: %s\n",
832 static int fdt_del_partitions(void *blob, int parent_offset)
839 off = fdt_next_node(blob, parent_offset, &ndepth);
840 if (off > 0 && ndepth == 1) {
841 prop = fdt_getprop(blob, off, "label", NULL);
844 * Could not find label property, nand {}; node?
845 * Check subnode, delete partitions there if any.
847 return fdt_del_partitions(blob, off);
849 ret = fdt_del_subnodes(blob, parent_offset);
851 printf("Can't remove subnodes: %s\n",
860 static int fdt_node_set_part_info(void *blob, int parent_offset,
861 struct mtd_device *dev)
863 struct list_head *pentry;
864 struct part_info *part;
870 ret = fdt_del_partitions(blob, parent_offset);
875 * Check if size/address is 1 or 2 cells.
876 * We assume #address-cells and #size-cells have same value.
878 sizecell = fdt_getprop_u32_default_node(blob, parent_offset,
879 0, "#size-cells", 1);
882 * Check if it is nand {}; subnode, adjust
883 * the offset in this case
885 off = fdt_next_node(blob, parent_offset, &ndepth);
886 if (off > 0 && ndepth == 1)
890 list_for_each_prev(pentry, &dev->parts) {
893 part = list_entry(pentry, struct part_info, link);
895 debug("%2d: %-20s0x%08llx\t0x%08llx\t%d\n",
896 part_num, part->name, part->size,
897 part->offset, part->mask_flags);
899 sprintf(buf, "partition@%llx", part->offset);
901 ret = fdt_add_subnode(blob, parent_offset, buf);
902 if (ret == -FDT_ERR_NOSPACE) {
903 ret = fdt_increase_size(blob, 512);
908 } else if (ret < 0) {
909 printf("Can't add partition node: %s\n",
915 /* Check MTD_WRITEABLE_CMD flag */
916 if (part->mask_flags & 1) {
918 ret = fdt_setprop(blob, newoff, "read_only", NULL, 0);
919 if (ret == -FDT_ERR_NOSPACE) {
920 ret = fdt_increase_size(blob, 512);
931 ret = fdt_setprop_u64(blob, newoff,
932 "reg", part->offset);
934 ret = fdt_appendprop_u64(blob, newoff,
937 ret = fdt_setprop_u32(blob, newoff,
938 "reg", part->offset);
940 ret = fdt_appendprop_u32(blob, newoff,
944 if (ret == -FDT_ERR_NOSPACE) {
945 ret = fdt_increase_size(blob, 512);
954 ret = fdt_setprop_string(blob, newoff, "label", part->name);
955 if (ret == -FDT_ERR_NOSPACE) {
956 ret = fdt_increase_size(blob, 512);
968 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
971 printf("Can't add property: %s\n", fdt_strerror(ret));
976 * Update partitions in nor/nand nodes using info from
977 * mtdparts environment variable. The nodes to update are
978 * specified by node_info structure which contains mtd device
979 * type and compatible string: E. g. the board code in
980 * ft_board_setup() could use:
982 * struct node_info nodes[] = {
983 * { "fsl,mpc5121-nfc", MTD_DEV_TYPE_NAND, },
984 * { "cfi-flash", MTD_DEV_TYPE_NOR, },
987 * fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
989 void fdt_fixup_mtdparts(void *blob, const struct node_info *node_info,
992 struct mtd_device *dev;
997 for (i = 0; i < node_info_size; i++) {
1001 while ((noff = fdt_node_offset_by_compatible(blob, noff,
1002 node_info[i].compat)) >= 0) {
1005 prop = fdt_getprop(blob, noff, "status", NULL);
1006 if (prop && !strcmp(prop, "disabled"))
1009 debug("%s: %s, mtd dev type %d\n",
1010 fdt_get_name(blob, noff, 0),
1011 node_info[i].compat, node_info[i].type);
1014 if (mtdparts_init() != 0)
1019 dev = device_find(node_info[i].type, idx++);
1021 if (fdt_node_set_part_info(blob, noff, dev))
1022 return; /* return on error */
1029 void fdt_del_node_and_alias(void *blob, const char *alias)
1031 int off = fdt_path_offset(blob, alias);
1036 fdt_del_node(blob, off);
1038 off = fdt_path_offset(blob, "/aliases");
1039 fdt_delprop(blob, off, alias);
1042 /* Max address size we deal with */
1043 #define OF_MAX_ADDR_CELLS 4
1044 #define OF_BAD_ADDR FDT_ADDR_T_NONE
1045 #define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \
1050 static void of_dump_addr(const char *s, const fdt32_t *addr, int na)
1054 printf(" %08x", *(addr++));
1058 static void of_dump_addr(const char *s, const fdt32_t *addr, int na) { }
1062 * struct of_bus - Callbacks for bus specific translators
1063 * @name: A string used to identify this bus in debug output.
1064 * @addresses: The name of the DT property from which addresses are
1065 * to be read, typically "reg".
1066 * @match: Return non-zero if the node whose parent is at
1067 * parentoffset in the FDT blob corresponds to a bus
1068 * of this type, otherwise return zero. If NULL a match
1070 * @count_cells:Count how many cells (be32 values) a node whose parent
1071 * is at parentoffset in the FDT blob will require to
1072 * represent its address (written to *addrc) & size
1073 * (written to *sizec).
1074 * @map: Map the address addr from the address space of this
1075 * bus to that of its parent, making use of the ranges
1076 * read from DT to an array at range. na and ns are the
1077 * number of cells (be32 values) used to hold and address
1078 * or size, respectively, for this bus. pna is the number
1079 * of cells used to hold an address for the parent bus.
1080 * Returns the address in the address space of the parent
1082 * @translate: Update the value of the address cells at addr within an
1083 * FDT by adding offset to it. na specifies the number of
1084 * cells used to hold the address being translated. Returns
1085 * zero on success, non-zero on error.
1087 * Each bus type will include a struct of_bus in the of_busses array,
1088 * providing implementations of some or all of the functions used to
1089 * match the bus & handle address translation for its children.
1093 const char *addresses;
1094 int (*match)(const void *blob, int parentoffset);
1095 void (*count_cells)(const void *blob, int parentoffset,
1096 int *addrc, int *sizec);
1097 u64 (*map)(fdt32_t *addr, const fdt32_t *range,
1098 int na, int ns, int pna);
1099 int (*translate)(fdt32_t *addr, u64 offset, int na);
1102 /* Default translator (generic bus) */
1103 void fdt_support_default_count_cells(const void *blob, int parentoffset,
1104 int *addrc, int *sizec)
1106 const fdt32_t *prop;
1109 *addrc = fdt_address_cells(blob, parentoffset);
1112 prop = fdt_getprop(blob, parentoffset, "#size-cells", NULL);
1114 *sizec = be32_to_cpup(prop);
1120 static u64 of_bus_default_map(fdt32_t *addr, const fdt32_t *range,
1121 int na, int ns, int pna)
1125 cp = fdt_read_number(range, na);
1126 s = fdt_read_number(range + na + pna, ns);
1127 da = fdt_read_number(addr, na);
1129 debug("OF: default map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
1131 if (da < cp || da >= (cp + s))
1136 static int of_bus_default_translate(fdt32_t *addr, u64 offset, int na)
1138 u64 a = fdt_read_number(addr, na);
1139 memset(addr, 0, na * 4);
1142 addr[na - 2] = cpu_to_fdt32(a >> 32);
1143 addr[na - 1] = cpu_to_fdt32(a & 0xffffffffu);
1148 #ifdef CONFIG_OF_ISA_BUS
1150 /* ISA bus translator */
1151 static int of_bus_isa_match(const void *blob, int parentoffset)
1155 name = fdt_get_name(blob, parentoffset, NULL);
1159 return !strcmp(name, "isa");
1162 static void of_bus_isa_count_cells(const void *blob, int parentoffset,
1163 int *addrc, int *sizec)
1171 static u64 of_bus_isa_map(fdt32_t *addr, const fdt32_t *range,
1172 int na, int ns, int pna)
1176 /* Check address type match */
1177 if ((addr[0] ^ range[0]) & cpu_to_be32(1))
1180 cp = fdt_read_number(range + 1, na - 1);
1181 s = fdt_read_number(range + na + pna, ns);
1182 da = fdt_read_number(addr + 1, na - 1);
1184 debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
1186 if (da < cp || da >= (cp + s))
1191 static int of_bus_isa_translate(fdt32_t *addr, u64 offset, int na)
1193 return of_bus_default_translate(addr + 1, offset, na - 1);
1196 #endif /* CONFIG_OF_ISA_BUS */
1198 /* Array of bus specific translators */
1199 static struct of_bus of_busses[] = {
1200 #ifdef CONFIG_OF_ISA_BUS
1205 .match = of_bus_isa_match,
1206 .count_cells = of_bus_isa_count_cells,
1207 .map = of_bus_isa_map,
1208 .translate = of_bus_isa_translate,
1210 #endif /* CONFIG_OF_ISA_BUS */
1215 .count_cells = fdt_support_default_count_cells,
1216 .map = of_bus_default_map,
1217 .translate = of_bus_default_translate,
1221 static struct of_bus *of_match_bus(const void *blob, int parentoffset)
1225 if (ARRAY_SIZE(of_busses) == 1)
1228 for (bus = of_busses; bus; bus++) {
1229 if (!bus->match || bus->match(blob, parentoffset))
1234 * We should always have matched the default bus at least, since
1235 * it has a NULL match field. If we didn't then it somehow isn't
1236 * in the of_busses array or something equally catastrophic has
1243 static int of_translate_one(const void *blob, int parent, struct of_bus *bus,
1244 struct of_bus *pbus, fdt32_t *addr,
1245 int na, int ns, int pna, const char *rprop)
1247 const fdt32_t *ranges;
1250 u64 offset = OF_BAD_ADDR;
1252 /* Normally, an absence of a "ranges" property means we are
1253 * crossing a non-translatable boundary, and thus the addresses
1254 * below the current not cannot be converted to CPU physical ones.
1255 * Unfortunately, while this is very clear in the spec, it's not
1256 * what Apple understood, and they do have things like /uni-n or
1257 * /ht nodes with no "ranges" property and a lot of perfectly
1258 * useable mapped devices below them. Thus we treat the absence of
1259 * "ranges" as equivalent to an empty "ranges" property which means
1260 * a 1:1 translation at that level. It's up to the caller not to try
1261 * to translate addresses that aren't supposed to be translated in
1262 * the first place. --BenH.
1264 ranges = fdt_getprop(blob, parent, rprop, &rlen);
1265 if (ranges == NULL || rlen == 0) {
1266 offset = fdt_read_number(addr, na);
1267 memset(addr, 0, pna * 4);
1268 debug("OF: no ranges, 1:1 translation\n");
1272 debug("OF: walking ranges...\n");
1274 /* Now walk through the ranges */
1276 rone = na + pna + ns;
1277 for (; rlen >= rone; rlen -= rone, ranges += rone) {
1278 offset = bus->map(addr, ranges, na, ns, pna);
1279 if (offset != OF_BAD_ADDR)
1282 if (offset == OF_BAD_ADDR) {
1283 debug("OF: not found !\n");
1286 memcpy(addr, ranges + na, 4 * pna);
1289 of_dump_addr("OF: parent translation for:", addr, pna);
1290 debug("OF: with offset: %llu\n", offset);
1292 /* Translate it into parent bus space */
1293 return pbus->translate(addr, offset, pna);
1297 * Translate an address from the device-tree into a CPU physical address,
1298 * this walks up the tree and applies the various bus mappings on the
1301 * Note: We consider that crossing any level with #size-cells == 0 to mean
1302 * that translation is impossible (that is we are not dealing with a value
1303 * that can be mapped to a cpu physical address). This is not really specified
1304 * that way, but this is traditionally the way IBM at least do things
1306 static u64 __of_translate_address(const void *blob, int node_offset,
1307 const fdt32_t *in_addr, const char *rprop)
1310 struct of_bus *bus, *pbus;
1311 fdt32_t addr[OF_MAX_ADDR_CELLS];
1312 int na, ns, pna, pns;
1313 u64 result = OF_BAD_ADDR;
1315 debug("OF: ** translation for device %s **\n",
1316 fdt_get_name(blob, node_offset, NULL));
1318 /* Get parent & match bus type */
1319 parent = fdt_parent_offset(blob, node_offset);
1322 bus = of_match_bus(blob, parent);
1324 /* Cound address cells & copy address locally */
1325 bus->count_cells(blob, parent, &na, &ns);
1326 if (!OF_CHECK_COUNTS(na, ns)) {
1327 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1328 fdt_get_name(blob, node_offset, NULL));
1331 memcpy(addr, in_addr, na * 4);
1333 debug("OF: bus is %s (na=%d, ns=%d) on %s\n",
1334 bus->name, na, ns, fdt_get_name(blob, parent, NULL));
1335 of_dump_addr("OF: translating address:", addr, na);
1339 /* Switch to parent bus */
1340 node_offset = parent;
1341 parent = fdt_parent_offset(blob, node_offset);
1343 /* If root, we have finished */
1345 debug("OF: reached root node\n");
1346 result = fdt_read_number(addr, na);
1350 /* Get new parent bus and counts */
1351 pbus = of_match_bus(blob, parent);
1352 pbus->count_cells(blob, parent, &pna, &pns);
1353 if (!OF_CHECK_COUNTS(pna, pns)) {
1354 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1355 fdt_get_name(blob, node_offset, NULL));
1359 debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
1360 pbus->name, pna, pns, fdt_get_name(blob, parent, NULL));
1362 /* Apply bus translation */
1363 if (of_translate_one(blob, node_offset, bus, pbus,
1364 addr, na, ns, pna, rprop))
1367 /* Complete the move up one level */
1372 of_dump_addr("OF: one level translation:", addr, na);
1379 u64 fdt_translate_address(const void *blob, int node_offset,
1380 const fdt32_t *in_addr)
1382 return __of_translate_address(blob, node_offset, in_addr, "ranges");
1385 u64 fdt_translate_dma_address(const void *blob, int node_offset,
1386 const fdt32_t *in_addr)
1388 return __of_translate_address(blob, node_offset, in_addr, "dma-ranges");
1391 int fdt_get_dma_range(const void *blob, int node, phys_addr_t *cpu,
1392 dma_addr_t *bus, u64 *size)
1394 bool found_dma_ranges = false;
1395 struct of_bus *bus_node;
1396 const fdt32_t *ranges;
1397 int na, ns, pna, pns;
1402 /* Find the closest dma-ranges property */
1403 while (parent >= 0) {
1404 ranges = fdt_getprop(blob, parent, "dma-ranges", &len);
1406 /* Ignore empty ranges, they imply no translation required */
1407 if (ranges && len > 0)
1410 /* Once we find 'dma-ranges', then a missing one is an error */
1411 if (found_dma_ranges && !ranges) {
1417 found_dma_ranges = true;
1419 parent = fdt_parent_offset(blob, parent);
1422 if (!ranges || parent < 0) {
1423 debug("no dma-ranges found for node %s\n",
1424 fdt_get_name(blob, node, NULL));
1429 /* switch to that node */
1431 parent = fdt_parent_offset(blob, node);
1433 printf("Found dma-ranges in root node, shoudln't happen\n");
1438 /* Get the address sizes both for the bus and its parent */
1439 bus_node = of_match_bus(blob, node);
1440 bus_node->count_cells(blob, node, &na, &ns);
1441 if (!OF_CHECK_COUNTS(na, ns)) {
1442 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1443 fdt_get_name(blob, node, NULL));
1448 bus_node = of_match_bus(blob, parent);
1449 bus_node->count_cells(blob, parent, &pna, &pns);
1450 if (!OF_CHECK_COUNTS(pna, pns)) {
1451 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1452 fdt_get_name(blob, parent, NULL));
1457 *bus = fdt_read_number(ranges, na);
1458 *cpu = fdt_translate_dma_address(blob, node, ranges + na);
1459 *size = fdt_read_number(ranges + na + pna, ns);
1465 * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and
1466 * who's reg property matches a physical cpu address
1468 * @blob: ptr to device tree
1469 * @compat: compatiable string to match
1470 * @compat_off: property name
1473 int fdt_node_offset_by_compat_reg(void *blob, const char *compat,
1474 phys_addr_t compat_off)
1476 int len, off = fdt_node_offset_by_compatible(blob, -1, compat);
1477 while (off != -FDT_ERR_NOTFOUND) {
1478 const fdt32_t *reg = fdt_getprop(blob, off, "reg", &len);
1480 if (compat_off == fdt_translate_address(blob, off, reg))
1483 off = fdt_node_offset_by_compatible(blob, off, compat);
1486 return -FDT_ERR_NOTFOUND;
1489 static int vnode_offset_by_pathf(void *blob, const char *fmt, va_list ap)
1494 len = vsnprintf(path, sizeof(path), fmt, ap);
1495 if (len < 0 || len + 1 > sizeof(path))
1496 return -FDT_ERR_NOSPACE;
1498 return fdt_path_offset(blob, path);
1502 * fdt_node_offset_by_pathf: Find node offset by sprintf formatted path
1504 * @blob: ptr to device tree
1506 * @ap: vsnprintf arguments
1508 int fdt_node_offset_by_pathf(void *blob, const char *fmt, ...)
1514 res = vnode_offset_by_pathf(blob, fmt, ap);
1521 * fdt_set_phandle: Create a phandle property for the given node
1523 * @fdt: ptr to device tree
1524 * @nodeoffset: node to update
1525 * @phandle: phandle value to set (must be unique)
1527 int fdt_set_phandle(void *fdt, int nodeoffset, uint32_t phandle)
1532 int off = fdt_node_offset_by_phandle(fdt, phandle);
1534 if ((off >= 0) && (off != nodeoffset)) {
1537 fdt_get_path(fdt, nodeoffset, buf, sizeof(buf));
1538 printf("Trying to update node %s with phandle %u ",
1541 fdt_get_path(fdt, off, buf, sizeof(buf));
1542 printf("that already exists in node %s.\n", buf);
1543 return -FDT_ERR_BADPHANDLE;
1547 ret = fdt_setprop_cell(fdt, nodeoffset, "phandle", phandle);
1552 * For now, also set the deprecated "linux,phandle" property, so that we
1553 * don't break older kernels.
1555 ret = fdt_setprop_cell(fdt, nodeoffset, "linux,phandle", phandle);
1561 * fdt_create_phandle: Get or create a phandle property for the given node
1563 * @fdt: ptr to device tree
1564 * @nodeoffset: node to update
1566 unsigned int fdt_create_phandle(void *fdt, int nodeoffset)
1568 /* see if there is a phandle already */
1569 uint32_t phandle = fdt_get_phandle(fdt, nodeoffset);
1571 /* if we got 0, means no phandle so create one */
1575 ret = fdt_generate_phandle(fdt, &phandle);
1577 printf("Can't generate phandle: %s\n",
1582 ret = fdt_set_phandle(fdt, nodeoffset, phandle);
1584 printf("Can't set phandle %u: %s\n", phandle,
1594 * fdt_create_phandle_by_compatible: Get or create a phandle for first node with
1597 * @fdt: ptr to device tree
1598 * @compat: node's compatible string
1600 unsigned int fdt_create_phandle_by_compatible(void *fdt, const char *compat)
1602 int offset = fdt_node_offset_by_compatible(fdt, -1, compat);
1605 printf("Can't find node with compatible \"%s\": %s\n", compat,
1606 fdt_strerror(offset));
1610 return fdt_create_phandle(fdt, offset);
1614 * fdt_create_phandle_by_pathf: Get or create a phandle for node given by
1615 * sprintf-formatted path
1617 * @fdt: ptr to device tree
1618 * @fmt, ...: path format string and arguments to pass to sprintf
1620 unsigned int fdt_create_phandle_by_pathf(void *fdt, const char *fmt, ...)
1626 offset = vnode_offset_by_pathf(fdt, fmt, ap);
1630 printf("Can't find node by given path: %s\n",
1631 fdt_strerror(offset));
1635 return fdt_create_phandle(fdt, offset);
1639 * fdt_set_node_status: Set status for the given node
1641 * @fdt: ptr to device tree
1642 * @nodeoffset: node to update
1643 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
1645 int fdt_set_node_status(void *fdt, int nodeoffset, enum fdt_status status)
1653 case FDT_STATUS_OKAY:
1654 ret = fdt_setprop_string(fdt, nodeoffset, "status", "okay");
1656 case FDT_STATUS_DISABLED:
1657 ret = fdt_setprop_string(fdt, nodeoffset, "status", "disabled");
1659 case FDT_STATUS_FAIL:
1660 ret = fdt_setprop_string(fdt, nodeoffset, "status", "fail");
1663 printf("Invalid fdt status: %x\n", status);
1672 * fdt_set_status_by_alias: Set status for the given node given an alias
1674 * @fdt: ptr to device tree
1675 * @alias: alias of node to update
1676 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
1678 int fdt_set_status_by_alias(void *fdt, const char* alias,
1679 enum fdt_status status)
1681 int offset = fdt_path_offset(fdt, alias);
1683 return fdt_set_node_status(fdt, offset, status);
1687 * fdt_set_status_by_compatible: Set node status for first node with given
1690 * @fdt: ptr to device tree
1691 * @compat: node's compatible string
1692 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
1694 int fdt_set_status_by_compatible(void *fdt, const char *compat,
1695 enum fdt_status status)
1697 int offset = fdt_node_offset_by_compatible(fdt, -1, compat);
1702 return fdt_set_node_status(fdt, offset, status);
1706 * fdt_set_status_by_pathf: Set node status for node given by sprintf-formatted
1709 * @fdt: ptr to device tree
1710 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
1711 * @fmt, ...: path format string and arguments to pass to sprintf
1713 int fdt_set_status_by_pathf(void *fdt, enum fdt_status status, const char *fmt,
1720 offset = vnode_offset_by_pathf(fdt, fmt, ap);
1726 return fdt_set_node_status(fdt, offset, status);
1729 #if defined(CONFIG_VIDEO) || defined(CONFIG_LCD)
1730 int fdt_add_edid(void *blob, const char *compat, unsigned char *edid_buf)
1735 noff = fdt_node_offset_by_compatible(blob, -1, compat);
1736 if (noff != -FDT_ERR_NOTFOUND) {
1737 debug("%s: %s\n", fdt_get_name(blob, noff, 0), compat);
1739 ret = fdt_setprop(blob, noff, "edid", edid_buf, 128);
1740 if (ret == -FDT_ERR_NOSPACE) {
1741 ret = fdt_increase_size(blob, 512);
1746 } else if (ret < 0) {
1747 printf("Can't add property: %s\n", fdt_strerror(ret));
1753 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
1759 * Verify the physical address of device tree node for a given alias
1761 * This function locates the device tree node of a given alias, and then
1762 * verifies that the physical address of that device matches the given
1763 * parameter. It displays a message if there is a mismatch.
1765 * Returns 1 on success, 0 on failure
1767 int fdt_verify_alias_address(void *fdt, int anode, const char *alias, u64 addr)
1774 path = fdt_getprop(fdt, anode, alias, NULL);
1776 /* If there's no such alias, then it's not a failure */
1780 node = fdt_path_offset(fdt, path);
1782 printf("Warning: device tree alias '%s' points to invalid "
1783 "node %s.\n", alias, path);
1787 reg = fdt_getprop(fdt, node, "reg", &len);
1789 printf("Warning: device tree node '%s' has no address.\n",
1794 dt_addr = fdt_translate_address(fdt, node, reg);
1795 if (addr != dt_addr) {
1796 printf("Warning: U-Boot configured device %s at address %llu,\n"
1797 "but the device tree has it address %llx.\n",
1798 alias, addr, dt_addr);
1806 * Returns the base address of an SOC or PCI node
1808 u64 fdt_get_base_address(const void *fdt, int node)
1811 const fdt32_t *prop;
1813 prop = fdt_getprop(fdt, node, "reg", &size);
1815 return prop ? fdt_translate_address(fdt, node, prop) : OF_BAD_ADDR;
1819 * Read a property of size <prop_len>. Currently only supports 1 or 2 cells,
1820 * or 3 cells specially for a PCI address.
1822 static int fdt_read_prop(const fdt32_t *prop, int prop_len, int cell_off,
1823 uint64_t *val, int cells)
1825 const fdt32_t *prop32;
1826 const unaligned_fdt64_t *prop64;
1828 if ((cell_off + cells) > prop_len)
1829 return -FDT_ERR_NOSPACE;
1831 prop32 = &prop[cell_off];
1834 * Special handling for PCI address in PCI bus <ranges>
1836 * PCI child address is made up of 3 cells. Advance the cell offset
1837 * by 1 so that the PCI child address can be correctly read.
1841 prop64 = (const fdt64_t *)&prop[cell_off];
1845 *val = fdt32_to_cpu(*prop32);
1849 *val = fdt64_to_cpu(*prop64);
1852 return -FDT_ERR_NOSPACE;
1859 * fdt_read_range - Read a node's n'th range property
1861 * @fdt: ptr to device tree
1862 * @node: offset of node
1864 * @child_addr: pointer to storage for the "child address" field
1865 * @addr: pointer to storage for the CPU view translated physical start
1866 * @len: pointer to storage for the range length
1868 * Convenience function that reads and interprets a specific range out of
1869 * a number of the "ranges" property array.
1871 int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr,
1872 uint64_t *addr, uint64_t *len)
1874 int pnode = fdt_parent_offset(fdt, node);
1875 const fdt32_t *ranges;
1884 * The "ranges" property is an array of
1885 * { <child address> <parent address> <size in child address space> }
1887 * All 3 elements can span a diffent number of cells. Fetch their size.
1889 pacells = fdt_getprop_u32_default_node(fdt, pnode, 0, "#address-cells", 1);
1890 acells = fdt_getprop_u32_default_node(fdt, node, 0, "#address-cells", 1);
1891 scells = fdt_getprop_u32_default_node(fdt, node, 0, "#size-cells", 1);
1893 /* Now try to get the ranges property */
1894 ranges = fdt_getprop(fdt, node, "ranges", &ranges_len);
1896 return -FDT_ERR_NOTFOUND;
1897 ranges_len /= sizeof(uint32_t);
1899 /* Jump to the n'th entry */
1900 cell = n * (pacells + acells + scells);
1902 /* Read <child address> */
1904 r = fdt_read_prop(ranges, ranges_len, cell, child_addr,
1911 /* Read <parent address> */
1913 *addr = fdt_translate_address(fdt, node, ranges + cell);
1916 /* Read <size in child address space> */
1918 r = fdt_read_prop(ranges, ranges_len, cell, len, scells);
1927 * fdt_setup_simplefb_node - Fill and enable a simplefb node
1929 * @fdt: ptr to device tree
1930 * @node: offset of the simplefb node
1931 * @base_address: framebuffer base address
1932 * @width: width in pixels
1933 * @height: height in pixels
1934 * @stride: bytes per line
1935 * @format: pixel format string
1937 * Convenience function to fill and enable a simplefb node.
1939 int fdt_setup_simplefb_node(void *fdt, int node, u64 base_address, u32 width,
1940 u32 height, u32 stride, const char *format)
1944 int i, addrc, sizec, ret;
1946 fdt_support_default_count_cells(fdt, fdt_parent_offset(fdt, node),
1950 cells[i++] = cpu_to_fdt32(base_address >> 32);
1951 cells[i++] = cpu_to_fdt32(base_address);
1954 cells[i++] = cpu_to_fdt32(height * stride);
1956 ret = fdt_setprop(fdt, node, "reg", cells, sizeof(cells[0]) * i);
1960 snprintf(name, sizeof(name), "framebuffer@%llx", base_address);
1961 ret = fdt_set_name(fdt, node, name);
1965 ret = fdt_setprop_u32(fdt, node, "width", width);
1969 ret = fdt_setprop_u32(fdt, node, "height", height);
1973 ret = fdt_setprop_u32(fdt, node, "stride", stride);
1977 ret = fdt_setprop_string(fdt, node, "format", format);
1981 ret = fdt_setprop_string(fdt, node, "status", "okay");
1989 * Update native-mode in display-timings from display environment variable.
1990 * The node to update are specified by path.
1992 int fdt_fixup_display(void *blob, const char *path, const char *display)
1996 if (!display || !path)
1997 return -FDT_ERR_NOTFOUND;
1999 toff = fdt_path_offset(blob, path);
2001 toff = fdt_subnode_offset(blob, toff, "display-timings");
2005 for (off = fdt_first_subnode(blob, toff);
2007 off = fdt_next_subnode(blob, off)) {
2008 uint32_t h = fdt_get_phandle(blob, off);
2009 debug("%s:0x%x\n", fdt_get_name(blob, off, NULL),
2011 if (strcasecmp(fdt_get_name(blob, off, NULL), display) == 0)
2012 return fdt_setprop_u32(blob, toff, "native-mode", h);
2017 #ifdef CONFIG_OF_LIBFDT_OVERLAY
2019 * fdt_overlay_apply_verbose - Apply an overlay with verbose error reporting
2021 * @fdt: ptr to device tree
2022 * @fdto: ptr to device tree overlay
2024 * Convenience function to apply an overlay and display helpful messages
2025 * in the case of an error
2027 int fdt_overlay_apply_verbose(void *fdt, void *fdto)
2032 err = fdt_path_offset(fdt, "/__symbols__");
2033 has_symbols = err >= 0;
2035 err = fdt_overlay_apply(fdt, fdto);
2037 printf("failed on fdt_overlay_apply(): %s\n",
2040 printf("base fdt does did not have a /__symbols__ node\n");
2041 printf("make sure you've compiled with -@\n");
2049 * fdt_valid() - Check if an FDT is valid. If not, change it to NULL
2051 * @blobp: Pointer to FDT pointer
2052 * @return 1 if OK, 0 if bad (in which case *blobp is set to NULL)
2054 int fdt_valid(struct fdt_header **blobp)
2056 const void *blob = *blobp;
2060 printf("The address of the fdt is invalid (NULL).\n");
2064 err = fdt_check_header(blob);
2066 return 1; /* valid */
2069 printf("libfdt fdt_check_header(): %s", fdt_strerror(err));
2071 * Be more informative on bad version.
2073 if (err == -FDT_ERR_BADVERSION) {
2074 if (fdt_version(blob) <
2075 FDT_FIRST_SUPPORTED_VERSION) {
2076 printf(" - too old, fdt %d < %d",
2078 FDT_FIRST_SUPPORTED_VERSION);
2080 if (fdt_last_comp_version(blob) >
2081 FDT_LAST_SUPPORTED_VERSION) {
2082 printf(" - too new, fdt %d > %d",
2084 FDT_LAST_SUPPORTED_VERSION);