xref: /rk3399_rockchip-uboot/common/fdt_support.c (revision 2ba7147f8008e675b31a0a5c13b8366431ea09ae)
1 /*
2  * (C) Copyright 2007
3  * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
4  *
5  * Copyright 2010-2011 Freescale Semiconductor, Inc.
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #include <common.h>
11 #include <inttypes.h>
12 #include <stdio_dev.h>
13 #include <linux/ctype.h>
14 #include <linux/types.h>
15 #include <asm/global_data.h>
16 #include <linux/libfdt.h>
17 #include <fdt_support.h>
18 #include <exports.h>
19 #include <fdtdec.h>
20 
21 /**
22  * fdt_getprop_u32_default_node - Return a node's property or a default
23  *
24  * @fdt: ptr to device tree
25  * @off: offset of node
26  * @cell: cell offset in property
27  * @prop: property name
28  * @dflt: default value if the property isn't found
29  *
30  * Convenience function to return a node's property or a default value if
31  * the property doesn't exist.
32  */
33 u32 fdt_getprop_u32_default_node(const void *fdt, int off, int cell,
34 				const char *prop, const u32 dflt)
35 {
36 	const fdt32_t *val;
37 	int len;
38 
39 	val = fdt_getprop(fdt, off, prop, &len);
40 
41 	/* Check if property exists */
42 	if (!val)
43 		return dflt;
44 
45 	/* Check if property is long enough */
46 	if (len < ((cell + 1) * sizeof(uint32_t)))
47 		return dflt;
48 
49 	return fdt32_to_cpu(*val);
50 }
51 
52 /**
53  * fdt_getprop_u32_default - Find a node and return it's property or a default
54  *
55  * @fdt: ptr to device tree
56  * @path: path of node
57  * @prop: property name
58  * @dflt: default value if the property isn't found
59  *
60  * Convenience function to find a node and return it's property or a
61  * default value if it doesn't exist.
62  */
63 u32 fdt_getprop_u32_default(const void *fdt, const char *path,
64 				const char *prop, const u32 dflt)
65 {
66 	int off;
67 
68 	off = fdt_path_offset(fdt, path);
69 	if (off < 0)
70 		return dflt;
71 
72 	return fdt_getprop_u32_default_node(fdt, off, 0, prop, dflt);
73 }
74 
75 /**
76  * fdt_find_and_setprop: Find a node and set it's property
77  *
78  * @fdt: ptr to device tree
79  * @node: path of node
80  * @prop: property name
81  * @val: ptr to new value
82  * @len: length of new property value
83  * @create: flag to create the property if it doesn't exist
84  *
85  * Convenience function to directly set a property given the path to the node.
86  */
87 int fdt_find_and_setprop(void *fdt, const char *node, const char *prop,
88 			 const void *val, int len, int create)
89 {
90 	int nodeoff = fdt_path_offset(fdt, node);
91 
92 	if (nodeoff < 0)
93 		return nodeoff;
94 
95 	if ((!create) && (fdt_get_property(fdt, nodeoff, prop, NULL) == NULL))
96 		return 0; /* create flag not set; so exit quietly */
97 
98 	return fdt_setprop(fdt, nodeoff, prop, val, len);
99 }
100 
101 /**
102  * fdt_find_or_add_subnode() - find or possibly add a subnode of a given node
103  *
104  * @fdt: pointer to the device tree blob
105  * @parentoffset: structure block offset of a node
106  * @name: name of the subnode to locate
107  *
108  * fdt_subnode_offset() finds a subnode of the node with a given name.
109  * If the subnode does not exist, it will be created.
110  */
111 int fdt_find_or_add_subnode(void *fdt, int parentoffset, const char *name)
112 {
113 	int offset;
114 
115 	offset = fdt_subnode_offset(fdt, parentoffset, name);
116 
117 	if (offset == -FDT_ERR_NOTFOUND)
118 		offset = fdt_add_subnode(fdt, parentoffset, name);
119 
120 	if (offset < 0)
121 		printf("%s: %s: %s\n", __func__, name, fdt_strerror(offset));
122 
123 	return offset;
124 }
125 
126 /* rename to CONFIG_OF_STDOUT_PATH ? */
127 #if defined(OF_STDOUT_PATH)
128 static int fdt_fixup_stdout(void *fdt, int chosenoff)
129 {
130 	return fdt_setprop(fdt, chosenoff, "linux,stdout-path",
131 			      OF_STDOUT_PATH, strlen(OF_STDOUT_PATH) + 1);
132 }
133 #elif defined(CONFIG_OF_STDOUT_VIA_ALIAS) && defined(CONFIG_CONS_INDEX)
134 static int fdt_fixup_stdout(void *fdt, int chosenoff)
135 {
136 	int err;
137 	int aliasoff;
138 	char sername[9] = { 0 };
139 	const void *path;
140 	int len;
141 	char tmp[256]; /* long enough */
142 
143 	sprintf(sername, "serial%d", CONFIG_CONS_INDEX - 1);
144 
145 	aliasoff = fdt_path_offset(fdt, "/aliases");
146 	if (aliasoff < 0) {
147 		err = aliasoff;
148 		goto noalias;
149 	}
150 
151 	path = fdt_getprop(fdt, aliasoff, sername, &len);
152 	if (!path) {
153 		err = len;
154 		goto noalias;
155 	}
156 
157 	/* fdt_setprop may break "path" so we copy it to tmp buffer */
158 	memcpy(tmp, path, len);
159 
160 	err = fdt_setprop(fdt, chosenoff, "linux,stdout-path", tmp, len);
161 	if (err < 0)
162 		printf("WARNING: could not set linux,stdout-path %s.\n",
163 		       fdt_strerror(err));
164 
165 	return err;
166 
167 noalias:
168 	printf("WARNING: %s: could not read %s alias: %s\n",
169 	       __func__, sername, fdt_strerror(err));
170 
171 	return 0;
172 }
173 #else
174 static int fdt_fixup_stdout(void *fdt, int chosenoff)
175 {
176 	return 0;
177 }
178 #endif
179 
180 static inline int fdt_setprop_uxx(void *fdt, int nodeoffset, const char *name,
181 				  uint64_t val, int is_u64)
182 {
183 	if (is_u64)
184 		return fdt_setprop_u64(fdt, nodeoffset, name, val);
185 	else
186 		return fdt_setprop_u32(fdt, nodeoffset, name, (uint32_t)val);
187 }
188 
189 int fdt_root(void *fdt)
190 {
191 	char *serial;
192 	int err;
193 
194 	err = fdt_check_header(fdt);
195 	if (err < 0) {
196 		printf("fdt_root: %s\n", fdt_strerror(err));
197 		return err;
198 	}
199 
200 	serial = env_get("serial#");
201 	if (serial) {
202 		err = fdt_setprop(fdt, 0, "serial-number", serial,
203 				  strlen(serial) + 1);
204 
205 		if (err < 0) {
206 			printf("WARNING: could not set serial-number %s.\n",
207 			       fdt_strerror(err));
208 			return err;
209 		}
210 	}
211 
212 	return 0;
213 }
214 
215 int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end)
216 {
217 	int   nodeoffset;
218 	int   err, j, total;
219 	int is_u64;
220 	uint64_t addr, size;
221 
222 	/* just return if the size of initrd is zero */
223 	if (initrd_start == initrd_end)
224 		return 0;
225 
226 	/* find or create "/chosen" node. */
227 	nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
228 	if (nodeoffset < 0)
229 		return nodeoffset;
230 
231 	total = fdt_num_mem_rsv(fdt);
232 
233 	/*
234 	 * Look for an existing entry and update it.  If we don't find
235 	 * the entry, we will j be the next available slot.
236 	 */
237 	for (j = 0; j < total; j++) {
238 		err = fdt_get_mem_rsv(fdt, j, &addr, &size);
239 		if (addr == initrd_start) {
240 			fdt_del_mem_rsv(fdt, j);
241 			break;
242 		}
243 	}
244 
245 	err = fdt_add_mem_rsv(fdt, initrd_start, initrd_end - initrd_start);
246 	if (err < 0) {
247 		printf("fdt_initrd: %s\n", fdt_strerror(err));
248 		return err;
249 	}
250 
251 	is_u64 = (fdt_address_cells(fdt, 0) == 2);
252 
253 	err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-start",
254 			      (uint64_t)initrd_start, is_u64);
255 
256 	if (err < 0) {
257 		printf("WARNING: could not set linux,initrd-start %s.\n",
258 		       fdt_strerror(err));
259 		return err;
260 	}
261 
262 	err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-end",
263 			      (uint64_t)initrd_end, is_u64);
264 
265 	if (err < 0) {
266 		printf("WARNING: could not set linux,initrd-end %s.\n",
267 		       fdt_strerror(err));
268 
269 		return err;
270 	}
271 
272 	return 0;
273 }
274 
275 int fdt_chosen(void *fdt)
276 {
277 	/*
278 	 * "bootargs_ext" is used when dtbo is applied.
279 	 */
280 	const char *arr_bootargs[] = { "bootargs", "bootargs_ext" };
281 	int   nodeoffset;
282 	int   err;
283 	int   i;
284 	char  *str;		/* used to set string properties */
285 
286 	err = fdt_check_header(fdt);
287 	if (err < 0) {
288 		printf("fdt_chosen: %s\n", fdt_strerror(err));
289 		return err;
290 	}
291 
292 	/* find or create "/chosen" node. */
293 	nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
294 	if (nodeoffset < 0)
295 		return nodeoffset;
296 
297 	str = env_get("bootargs");
298 	if (str) {
299 #ifdef CONFIG_ARCH_ROCKCHIP
300 		const char *bootargs;
301 
302 		debug("uboot bootargs: %s\n\n", str);
303 		for (i = 0; i < ARRAY_SIZE(arr_bootargs); i++) {
304 			bootargs = fdt_getprop(fdt, nodeoffset,
305 					       arr_bootargs[i], NULL);
306 			if (bootargs) {
307 				debug("kernel %s: %s\n\n", arr_bootargs[i], bootargs);
308 				/*
309 				 * Append kernel bootargs
310 				 * If use AB system, delete default "root=" which route
311 				 * to rootfs. Then the ab bootctl will choose the
312 				 * high priority system to boot and add its UUID
313 				 * to cmdline. The format is "roo=PARTUUID=xxxx...".
314 				 */
315 #ifdef CONFIG_ANDROID_AB
316 				env_update_filter("bootargs", bootargs, "root=");
317 #else
318 				env_update("bootargs", bootargs);
319 #endif
320 				/*
321 				 * Initrd fixup: remove unused "initrd=0x...,0x...",
322 				 * this for compatible with legacy parameter.txt
323 				 */
324 				env_delete("bootargs", "initrd=", 0);
325 			}
326 #endif
327 		}
328 
329 		str = env_get("bootargs");
330 		err = fdt_setprop(fdt, nodeoffset, "bootargs", str,
331 				  strlen(str) + 1);
332 		if (err < 0) {
333 			printf("WARNING: could not set bootargs %s.\n",
334 			       fdt_strerror(err));
335 			return err;
336 		}
337 	}
338 
339 	debug("merged bootargs: %s\n\n", env_get("bootargs"));
340 
341 	return fdt_fixup_stdout(fdt, nodeoffset);
342 }
343 
344 void do_fixup_by_path(void *fdt, const char *path, const char *prop,
345 		      const void *val, int len, int create)
346 {
347 #if defined(DEBUG)
348 	int i;
349 	debug("Updating property '%s/%s' = ", path, prop);
350 	for (i = 0; i < len; i++)
351 		debug(" %.2x", *(u8*)(val+i));
352 	debug("\n");
353 #endif
354 	int rc = fdt_find_and_setprop(fdt, path, prop, val, len, create);
355 	if (rc)
356 		printf("Unable to update property %s:%s, err=%s\n",
357 			path, prop, fdt_strerror(rc));
358 }
359 
360 void do_fixup_by_path_u32(void *fdt, const char *path, const char *prop,
361 			  u32 val, int create)
362 {
363 	fdt32_t tmp = cpu_to_fdt32(val);
364 	do_fixup_by_path(fdt, path, prop, &tmp, sizeof(tmp), create);
365 }
366 
367 void do_fixup_by_prop(void *fdt,
368 		      const char *pname, const void *pval, int plen,
369 		      const char *prop, const void *val, int len,
370 		      int create)
371 {
372 	int off;
373 #if defined(DEBUG)
374 	int i;
375 	debug("Updating property '%s' = ", prop);
376 	for (i = 0; i < len; i++)
377 		debug(" %.2x", *(u8*)(val+i));
378 	debug("\n");
379 #endif
380 	off = fdt_node_offset_by_prop_value(fdt, -1, pname, pval, plen);
381 	while (off != -FDT_ERR_NOTFOUND) {
382 		if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
383 			fdt_setprop(fdt, off, prop, val, len);
384 		off = fdt_node_offset_by_prop_value(fdt, off, pname, pval, plen);
385 	}
386 }
387 
388 void do_fixup_by_prop_u32(void *fdt,
389 			  const char *pname, const void *pval, int plen,
390 			  const char *prop, u32 val, int create)
391 {
392 	fdt32_t tmp = cpu_to_fdt32(val);
393 	do_fixup_by_prop(fdt, pname, pval, plen, prop, &tmp, 4, create);
394 }
395 
396 void do_fixup_by_compat(void *fdt, const char *compat,
397 			const char *prop, const void *val, int len, int create)
398 {
399 	int off = -1;
400 #if defined(DEBUG)
401 	int i;
402 	debug("Updating property '%s' = ", prop);
403 	for (i = 0; i < len; i++)
404 		debug(" %.2x", *(u8*)(val+i));
405 	debug("\n");
406 #endif
407 	off = fdt_node_offset_by_compatible(fdt, -1, compat);
408 	while (off != -FDT_ERR_NOTFOUND) {
409 		if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
410 			fdt_setprop(fdt, off, prop, val, len);
411 		off = fdt_node_offset_by_compatible(fdt, off, compat);
412 	}
413 }
414 
415 void do_fixup_by_compat_u32(void *fdt, const char *compat,
416 			    const char *prop, u32 val, int create)
417 {
418 	fdt32_t tmp = cpu_to_fdt32(val);
419 	do_fixup_by_compat(fdt, compat, prop, &tmp, 4, create);
420 }
421 
422 #ifdef CONFIG_ARCH_FIXUP_FDT_MEMORY
423 /*
424  * fdt_pack_reg - pack address and size array into the "reg"-suitable stream
425  */
426 static int fdt_pack_reg(const void *fdt, void *buf, u64 *address, u64 *size,
427 			int n)
428 {
429 	int i;
430 	int address_cells = fdt_address_cells(fdt, 0);
431 	int size_cells = fdt_size_cells(fdt, 0);
432 	char *p = buf;
433 
434 	for (i = 0; i < n; i++) {
435 		if (address_cells == 2)
436 			*(fdt64_t *)p = cpu_to_fdt64(address[i]);
437 		else
438 			*(fdt32_t *)p = cpu_to_fdt32(address[i]);
439 		p += 4 * address_cells;
440 
441 		if (size_cells == 2)
442 			*(fdt64_t *)p = cpu_to_fdt64(size[i]);
443 		else
444 			*(fdt32_t *)p = cpu_to_fdt32(size[i]);
445 		p += 4 * size_cells;
446 	}
447 
448 	return p - (char *)buf;
449 }
450 
451 int fdt_record_loadable(void *blob, u32 index, const char *name,
452 			uintptr_t load_addr, u32 size, uintptr_t entry_point,
453 			const char *type, const char *os)
454 {
455 	int err, node;
456 
457 	err = fdt_check_header(blob);
458 	if (err < 0) {
459 		printf("%s: %s\n", __func__, fdt_strerror(err));
460 		return err;
461 	}
462 
463 	/* find or create "/fit-images" node */
464 	node = fdt_find_or_add_subnode(blob, 0, "fit-images");
465 	if (node < 0)
466 			return node;
467 
468 	/* find or create "/fit-images/<name>" node */
469 	node = fdt_find_or_add_subnode(blob, node, name);
470 	if (node < 0)
471 		return node;
472 
473 	/*
474 	 * We record these as 32bit entities, possibly truncating addresses.
475 	 * However, spl_fit.c is not 64bit safe either: i.e. we should not
476 	 * have an issue here.
477 	 */
478 	fdt_setprop_u32(blob, node, "load-addr", load_addr);
479 	if (entry_point != -1)
480 		fdt_setprop_u32(blob, node, "entry-point", entry_point);
481 	fdt_setprop_u32(blob, node, "size", size);
482 	if (type)
483 		fdt_setprop_string(blob, node, "type", type);
484 	if (os)
485 		fdt_setprop_string(blob, node, "os", os);
486 
487 	return node;
488 }
489 
490 #ifdef CONFIG_NR_DRAM_BANKS
491 #define MEMORY_BANKS_MAX CONFIG_NR_DRAM_BANKS
492 #else
493 #define MEMORY_BANKS_MAX 4
494 #endif
495 int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
496 {
497 	int err, nodeoffset;
498 	int len;
499 	u8 tmp[MEMORY_BANKS_MAX * 16]; /* Up to 64-bit address + 64-bit size */
500 
501 	if (banks > MEMORY_BANKS_MAX) {
502 		printf("%s: num banks %d exceeds hardcoded limit %d."
503 		       " Recompile with higher MEMORY_BANKS_MAX?\n",
504 		       __FUNCTION__, banks, MEMORY_BANKS_MAX);
505 		return -1;
506 	}
507 
508 	err = fdt_check_header(blob);
509 	if (err < 0) {
510 		printf("%s: %s\n", __FUNCTION__, fdt_strerror(err));
511 		return err;
512 	}
513 
514 	/* find or create "/memory" node. */
515 	nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
516 	if (nodeoffset < 0)
517 			return nodeoffset;
518 
519 	err = fdt_setprop(blob, nodeoffset, "device_type", "memory",
520 			sizeof("memory"));
521 	if (err < 0) {
522 		printf("WARNING: could not set %s %s.\n", "device_type",
523 				fdt_strerror(err));
524 		return err;
525 	}
526 
527 	if (!banks)
528 		return 0;
529 
530 	len = fdt_pack_reg(blob, tmp, start, size, banks);
531 
532 	err = fdt_setprop(blob, nodeoffset, "reg", tmp, len);
533 	if (err < 0) {
534 		printf("WARNING: could not set %s %s.\n",
535 				"reg", fdt_strerror(err));
536 		return err;
537 	}
538 	return 0;
539 }
540 #endif
541 
542 int fdt_fixup_memory(void *blob, u64 start, u64 size)
543 {
544 	return fdt_fixup_memory_banks(blob, &start, &size, 1);
545 }
546 
547 int fdt_update_reserved_memory(void *blob, char *name, u64 start, u64 size)
548 {
549 	int nodeoffset, len, err;
550 	u8 tmp[16]; /* Up to 64-bit address + 64-bit size */
551 
552 #if 0
553 	/*name is rockchip_logo*/
554 	nodeoffset = fdt_find_or_add_subnode(blob, 0, "reserved-memory");
555 	if (nodeoffset < 0)
556 		return nodeoffset;
557 	printf("hjc>>reserved-memory>>%s, nodeoffset:%d\n", __func__, nodeoffset);
558 	nodeoffset = fdt_find_or_add_subnode(blob, nodeoffset, name);
559 	if (nodeoffset < 0)
560 		return nodeoffset;
561 #else
562 	nodeoffset = fdt_node_offset_by_compatible(blob, 0, name);
563 	if (nodeoffset < 0)
564 		debug("Can't find nodeoffset: %d\n", nodeoffset);
565 #endif
566 	len = fdt_pack_reg(blob, tmp, &start, &size, 1);
567 	err = fdt_setprop(blob, nodeoffset, "reg", tmp, len);
568 	if (err < 0) {
569 		printf("WARNING: could not set %s %s.\n",
570 				"reg", fdt_strerror(err));
571 		return err;
572 	}
573 
574 	return nodeoffset;
575 }
576 
577 void fdt_fixup_ethernet(void *fdt)
578 {
579 	int i = 0, j, prop;
580 	char *tmp, *end;
581 	char mac[16];
582 	const char *path;
583 	unsigned char mac_addr[ARP_HLEN];
584 	int offset;
585 #ifdef FDT_SEQ_MACADDR_FROM_ENV
586 	int nodeoff;
587 	const struct fdt_property *fdt_prop;
588 #endif
589 
590 	if (fdt_path_offset(fdt, "/aliases") < 0)
591 		return;
592 
593 	/* Cycle through all aliases */
594 	for (prop = 0; ; prop++) {
595 		const char *name;
596 
597 		/* FDT might have been edited, recompute the offset */
598 		offset = fdt_first_property_offset(fdt,
599 			fdt_path_offset(fdt, "/aliases"));
600 		/* Select property number 'prop' */
601 		for (j = 0; j < prop; j++)
602 			offset = fdt_next_property_offset(fdt, offset);
603 
604 		if (offset < 0)
605 			break;
606 
607 		path = fdt_getprop_by_offset(fdt, offset, &name, NULL);
608 		if (!strncmp(name, "ethernet", 8)) {
609 			/* Treat plain "ethernet" same as "ethernet0". */
610 			if (!strcmp(name, "ethernet")
611 #ifdef FDT_SEQ_MACADDR_FROM_ENV
612 			 || !strcmp(name, "ethernet0")
613 #endif
614 			)
615 				i = 0;
616 #ifndef FDT_SEQ_MACADDR_FROM_ENV
617 			else
618 				i = trailing_strtol(name);
619 #endif
620 			if (i != -1) {
621 				if (i == 0)
622 					strcpy(mac, "ethaddr");
623 				else
624 					sprintf(mac, "eth%daddr", i);
625 			} else {
626 				continue;
627 			}
628 #ifdef FDT_SEQ_MACADDR_FROM_ENV
629 			nodeoff = fdt_path_offset(fdt, path);
630 			fdt_prop = fdt_get_property(fdt, nodeoff, "status",
631 						    NULL);
632 			if (fdt_prop && !strcmp(fdt_prop->data, "disabled"))
633 				continue;
634 			i++;
635 #endif
636 			tmp = env_get(mac);
637 			if (!tmp)
638 				continue;
639 
640 			for (j = 0; j < 6; j++) {
641 				mac_addr[j] = tmp ?
642 					      simple_strtoul(tmp, &end, 16) : 0;
643 				if (tmp)
644 					tmp = (*end) ? end + 1 : end;
645 			}
646 
647 			do_fixup_by_path(fdt, path, "mac-address",
648 					 &mac_addr, 6, 0);
649 			do_fixup_by_path(fdt, path, "local-mac-address",
650 					 &mac_addr, 6, 1);
651 		}
652 	}
653 }
654 
655 /* Resize the fdt to its actual size + a bit of padding */
656 int fdt_shrink_to_minimum(void *blob, uint extrasize)
657 {
658 	int i;
659 	uint64_t addr, size;
660 	int total, ret;
661 	uint actualsize;
662 
663 	if (!blob)
664 		return 0;
665 
666 	total = fdt_num_mem_rsv(blob);
667 	for (i = 0; i < total; i++) {
668 		fdt_get_mem_rsv(blob, i, &addr, &size);
669 		if (addr == (uintptr_t)blob) {
670 			fdt_del_mem_rsv(blob, i);
671 			break;
672 		}
673 	}
674 
675 	/*
676 	 * Calculate the actual size of the fdt
677 	 * plus the size needed for 5 fdt_add_mem_rsv, one
678 	 * for the fdt itself and 4 for a possible initrd
679 	 * ((initrd-start + initrd-end) * 2 (name & value))
680 	 */
681 	actualsize = fdt_off_dt_strings(blob) +
682 		fdt_size_dt_strings(blob) + 5 * sizeof(struct fdt_reserve_entry);
683 
684 	actualsize += extrasize;
685 	/* Make it so the fdt ends on a page boundary */
686 	actualsize = ALIGN(actualsize + ((uintptr_t)blob & 0xfff), 0x1000);
687 	actualsize = actualsize - ((uintptr_t)blob & 0xfff);
688 
689 	/* Change the fdt header to reflect the correct size */
690 	fdt_set_totalsize(blob, actualsize);
691 
692 	/* Add the new reservation */
693 	ret = fdt_add_mem_rsv(blob, (uintptr_t)blob, actualsize);
694 	if (ret < 0)
695 		return ret;
696 
697 	return actualsize;
698 }
699 
700 #ifdef CONFIG_PCI
701 #define CONFIG_SYS_PCI_NR_INBOUND_WIN 4
702 
703 #define FDT_PCI_PREFETCH	(0x40000000)
704 #define FDT_PCI_MEM32		(0x02000000)
705 #define FDT_PCI_IO		(0x01000000)
706 #define FDT_PCI_MEM64		(0x03000000)
707 
708 int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose) {
709 
710 	int addrcell, sizecell, len, r;
711 	u32 *dma_range;
712 	/* sized based on pci addr cells, size-cells, & address-cells */
713 	u32 dma_ranges[(3 + 2 + 2) * CONFIG_SYS_PCI_NR_INBOUND_WIN];
714 
715 	addrcell = fdt_getprop_u32_default(blob, "/", "#address-cells", 1);
716 	sizecell = fdt_getprop_u32_default(blob, "/", "#size-cells", 1);
717 
718 	dma_range = &dma_ranges[0];
719 	for (r = 0; r < hose->region_count; r++) {
720 		u64 bus_start, phys_start, size;
721 
722 		/* skip if !PCI_REGION_SYS_MEMORY */
723 		if (!(hose->regions[r].flags & PCI_REGION_SYS_MEMORY))
724 			continue;
725 
726 		bus_start = (u64)hose->regions[r].bus_start;
727 		phys_start = (u64)hose->regions[r].phys_start;
728 		size = (u64)hose->regions[r].size;
729 
730 		dma_range[0] = 0;
731 		if (size >= 0x100000000ull)
732 			dma_range[0] |= FDT_PCI_MEM64;
733 		else
734 			dma_range[0] |= FDT_PCI_MEM32;
735 		if (hose->regions[r].flags & PCI_REGION_PREFETCH)
736 			dma_range[0] |= FDT_PCI_PREFETCH;
737 #ifdef CONFIG_SYS_PCI_64BIT
738 		dma_range[1] = bus_start >> 32;
739 #else
740 		dma_range[1] = 0;
741 #endif
742 		dma_range[2] = bus_start & 0xffffffff;
743 
744 		if (addrcell == 2) {
745 			dma_range[3] = phys_start >> 32;
746 			dma_range[4] = phys_start & 0xffffffff;
747 		} else {
748 			dma_range[3] = phys_start & 0xffffffff;
749 		}
750 
751 		if (sizecell == 2) {
752 			dma_range[3 + addrcell + 0] = size >> 32;
753 			dma_range[3 + addrcell + 1] = size & 0xffffffff;
754 		} else {
755 			dma_range[3 + addrcell + 0] = size & 0xffffffff;
756 		}
757 
758 		dma_range += (3 + addrcell + sizecell);
759 	}
760 
761 	len = dma_range - &dma_ranges[0];
762 	if (len)
763 		fdt_setprop(blob, phb_off, "dma-ranges", &dma_ranges[0], len*4);
764 
765 	return 0;
766 }
767 #endif
768 
769 int fdt_increase_size(void *fdt, int add_len)
770 {
771 	int newlen;
772 
773 	newlen = fdt_totalsize(fdt) + add_len;
774 
775 	/* Open in place with a new len */
776 	return fdt_open_into(fdt, fdt, newlen);
777 }
778 
779 #ifdef CONFIG_FDT_FIXUP_PARTITIONS
780 #include <jffs2/load_kernel.h>
781 #include <mtd_node.h>
782 
783 struct reg_cell {
784 	unsigned int r0;
785 	unsigned int r1;
786 };
787 
788 int fdt_del_subnodes(const void *blob, int parent_offset)
789 {
790 	int off, ndepth;
791 	int ret;
792 
793 	for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth);
794 	     (off >= 0) && (ndepth > 0);
795 	     off = fdt_next_node(blob, off, &ndepth)) {
796 		if (ndepth == 1) {
797 			debug("delete %s: offset: %x\n",
798 				fdt_get_name(blob, off, 0), off);
799 			ret = fdt_del_node((void *)blob, off);
800 			if (ret < 0) {
801 				printf("Can't delete node: %s\n",
802 					fdt_strerror(ret));
803 				return ret;
804 			} else {
805 				ndepth = 0;
806 				off = parent_offset;
807 			}
808 		}
809 	}
810 	return 0;
811 }
812 
813 int fdt_del_partitions(void *blob, int parent_offset)
814 {
815 	const void *prop;
816 	int ndepth = 0;
817 	int off;
818 	int ret;
819 
820 	off = fdt_next_node(blob, parent_offset, &ndepth);
821 	if (off > 0 && ndepth == 1) {
822 		prop = fdt_getprop(blob, off, "label", NULL);
823 		if (prop == NULL) {
824 			/*
825 			 * Could not find label property, nand {}; node?
826 			 * Check subnode, delete partitions there if any.
827 			 */
828 			return fdt_del_partitions(blob, off);
829 		} else {
830 			ret = fdt_del_subnodes(blob, parent_offset);
831 			if (ret < 0) {
832 				printf("Can't remove subnodes: %s\n",
833 					fdt_strerror(ret));
834 				return ret;
835 			}
836 		}
837 	}
838 	return 0;
839 }
840 
841 int fdt_node_set_part_info(void *blob, int parent_offset,
842 			   struct mtd_device *dev)
843 {
844 	struct list_head *pentry;
845 	struct part_info *part;
846 	struct reg_cell cell;
847 	int off, ndepth = 0;
848 	int part_num, ret;
849 	char buf[64];
850 
851 	ret = fdt_del_partitions(blob, parent_offset);
852 	if (ret < 0)
853 		return ret;
854 
855 	/*
856 	 * Check if it is nand {}; subnode, adjust
857 	 * the offset in this case
858 	 */
859 	off = fdt_next_node(blob, parent_offset, &ndepth);
860 	if (off > 0 && ndepth == 1)
861 		parent_offset = off;
862 
863 	part_num = 0;
864 	list_for_each_prev(pentry, &dev->parts) {
865 		int newoff;
866 
867 		part = list_entry(pentry, struct part_info, link);
868 
869 		debug("%2d: %-20s0x%08llx\t0x%08llx\t%d\n",
870 			part_num, part->name, part->size,
871 			part->offset, part->mask_flags);
872 
873 		sprintf(buf, "partition@%llx", part->offset);
874 add_sub:
875 		ret = fdt_add_subnode(blob, parent_offset, buf);
876 		if (ret == -FDT_ERR_NOSPACE) {
877 			ret = fdt_increase_size(blob, 512);
878 			if (!ret)
879 				goto add_sub;
880 			else
881 				goto err_size;
882 		} else if (ret < 0) {
883 			printf("Can't add partition node: %s\n",
884 				fdt_strerror(ret));
885 			return ret;
886 		}
887 		newoff = ret;
888 
889 		/* Check MTD_WRITEABLE_CMD flag */
890 		if (part->mask_flags & 1) {
891 add_ro:
892 			ret = fdt_setprop(blob, newoff, "read_only", NULL, 0);
893 			if (ret == -FDT_ERR_NOSPACE) {
894 				ret = fdt_increase_size(blob, 512);
895 				if (!ret)
896 					goto add_ro;
897 				else
898 					goto err_size;
899 			} else if (ret < 0)
900 				goto err_prop;
901 		}
902 
903 		cell.r0 = cpu_to_fdt32(part->offset);
904 		cell.r1 = cpu_to_fdt32(part->size);
905 add_reg:
906 		ret = fdt_setprop(blob, newoff, "reg", &cell, sizeof(cell));
907 		if (ret == -FDT_ERR_NOSPACE) {
908 			ret = fdt_increase_size(blob, 512);
909 			if (!ret)
910 				goto add_reg;
911 			else
912 				goto err_size;
913 		} else if (ret < 0)
914 			goto err_prop;
915 
916 add_label:
917 		ret = fdt_setprop_string(blob, newoff, "label", part->name);
918 		if (ret == -FDT_ERR_NOSPACE) {
919 			ret = fdt_increase_size(blob, 512);
920 			if (!ret)
921 				goto add_label;
922 			else
923 				goto err_size;
924 		} else if (ret < 0)
925 			goto err_prop;
926 
927 		part_num++;
928 	}
929 	return 0;
930 err_size:
931 	printf("Can't increase blob size: %s\n", fdt_strerror(ret));
932 	return ret;
933 err_prop:
934 	printf("Can't add property: %s\n", fdt_strerror(ret));
935 	return ret;
936 }
937 
938 /*
939  * Update partitions in nor/nand nodes using info from
940  * mtdparts environment variable. The nodes to update are
941  * specified by node_info structure which contains mtd device
942  * type and compatible string: E. g. the board code in
943  * ft_board_setup() could use:
944  *
945  *	struct node_info nodes[] = {
946  *		{ "fsl,mpc5121-nfc",    MTD_DEV_TYPE_NAND, },
947  *		{ "cfi-flash",          MTD_DEV_TYPE_NOR,  },
948  *	};
949  *
950  *	fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
951  */
952 void fdt_fixup_mtdparts(void *blob, void *node_info, int node_info_size)
953 {
954 	struct node_info *ni = node_info;
955 	struct mtd_device *dev;
956 	int i, idx;
957 	int noff;
958 
959 	if (mtdparts_init() != 0)
960 		return;
961 
962 	for (i = 0; i < node_info_size; i++) {
963 		idx = 0;
964 		noff = fdt_node_offset_by_compatible(blob, -1, ni[i].compat);
965 		while (noff != -FDT_ERR_NOTFOUND) {
966 			debug("%s: %s, mtd dev type %d\n",
967 				fdt_get_name(blob, noff, 0),
968 				ni[i].compat, ni[i].type);
969 			dev = device_find(ni[i].type, idx++);
970 			if (dev) {
971 				if (fdt_node_set_part_info(blob, noff, dev))
972 					return; /* return on error */
973 			}
974 
975 			/* Jump to next flash node */
976 			noff = fdt_node_offset_by_compatible(blob, noff,
977 							     ni[i].compat);
978 		}
979 	}
980 }
981 #endif
982 
983 void fdt_del_node_and_alias(void *blob, const char *alias)
984 {
985 	int off = fdt_path_offset(blob, alias);
986 
987 	if (off < 0)
988 		return;
989 
990 	fdt_del_node(blob, off);
991 
992 	off = fdt_path_offset(blob, "/aliases");
993 	fdt_delprop(blob, off, alias);
994 }
995 
996 /* Max address size we deal with */
997 #define OF_MAX_ADDR_CELLS	4
998 #define OF_BAD_ADDR	FDT_ADDR_T_NONE
999 #define OF_CHECK_COUNTS(na, ns)	((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \
1000 			(ns) > 0)
1001 
1002 /* Debug utility */
1003 #ifdef DEBUG
1004 static void of_dump_addr(const char *s, const fdt32_t *addr, int na)
1005 {
1006 	printf("%s", s);
1007 	while(na--)
1008 		printf(" %08x", *(addr++));
1009 	printf("\n");
1010 }
1011 #else
1012 static void of_dump_addr(const char *s, const fdt32_t *addr, int na) { }
1013 #endif
1014 
1015 /**
1016  * struct of_bus - Callbacks for bus specific translators
1017  * @name:	A string used to identify this bus in debug output.
1018  * @addresses:	The name of the DT property from which addresses are
1019  *		to be read, typically "reg".
1020  * @match:	Return non-zero if the node whose parent is at
1021  *		parentoffset in the FDT blob corresponds to a bus
1022  *		of this type, otherwise return zero. If NULL a match
1023  *		is assumed.
1024  * @count_cells:Count how many cells (be32 values) a node whose parent
1025  *		is at parentoffset in the FDT blob will require to
1026  *		represent its address (written to *addrc) & size
1027  *		(written to *sizec).
1028  * @map:	Map the address addr from the address space of this
1029  *		bus to that of its parent, making use of the ranges
1030  *		read from DT to an array at range. na and ns are the
1031  *		number of cells (be32 values) used to hold and address
1032  *		or size, respectively, for this bus. pna is the number
1033  *		of cells used to hold an address for the parent bus.
1034  *		Returns the address in the address space of the parent
1035  *		bus.
1036  * @translate:	Update the value of the address cells at addr within an
1037  *		FDT by adding offset to it. na specifies the number of
1038  *		cells used to hold the address being translated. Returns
1039  *		zero on success, non-zero on error.
1040  *
1041  * Each bus type will include a struct of_bus in the of_busses array,
1042  * providing implementations of some or all of the functions used to
1043  * match the bus & handle address translation for its children.
1044  */
1045 struct of_bus {
1046 	const char	*name;
1047 	const char	*addresses;
1048 	int		(*match)(const void *blob, int parentoffset);
1049 	void		(*count_cells)(const void *blob, int parentoffset,
1050 				int *addrc, int *sizec);
1051 	u64		(*map)(fdt32_t *addr, const fdt32_t *range,
1052 				int na, int ns, int pna);
1053 	int		(*translate)(fdt32_t *addr, u64 offset, int na);
1054 };
1055 
1056 /* Default translator (generic bus) */
1057 void fdt_support_default_count_cells(const void *blob, int parentoffset,
1058 					int *addrc, int *sizec)
1059 {
1060 	const fdt32_t *prop;
1061 
1062 	if (addrc)
1063 		*addrc = fdt_address_cells(blob, parentoffset);
1064 
1065 	if (sizec) {
1066 		prop = fdt_getprop(blob, parentoffset, "#size-cells", NULL);
1067 		if (prop)
1068 			*sizec = be32_to_cpup(prop);
1069 		else
1070 			*sizec = 1;
1071 	}
1072 }
1073 
1074 static u64 of_bus_default_map(fdt32_t *addr, const fdt32_t *range,
1075 		int na, int ns, int pna)
1076 {
1077 	u64 cp, s, da;
1078 
1079 	cp = fdt_read_number(range, na);
1080 	s  = fdt_read_number(range + na + pna, ns);
1081 	da = fdt_read_number(addr, na);
1082 
1083 	debug("OF: default map, cp=%" PRIu64 ", s=%" PRIu64
1084 	      ", da=%" PRIu64 "\n", cp, s, da);
1085 
1086 	if (da < cp || da >= (cp + s))
1087 		return OF_BAD_ADDR;
1088 	return da - cp;
1089 }
1090 
1091 static int of_bus_default_translate(fdt32_t *addr, u64 offset, int na)
1092 {
1093 	u64 a = fdt_read_number(addr, na);
1094 	memset(addr, 0, na * 4);
1095 	a += offset;
1096 	if (na > 1)
1097 		addr[na - 2] = cpu_to_fdt32(a >> 32);
1098 	addr[na - 1] = cpu_to_fdt32(a & 0xffffffffu);
1099 
1100 	return 0;
1101 }
1102 
1103 #ifdef CONFIG_OF_ISA_BUS
1104 
1105 /* ISA bus translator */
1106 static int of_bus_isa_match(const void *blob, int parentoffset)
1107 {
1108 	const char *name;
1109 
1110 	name = fdt_get_name(blob, parentoffset, NULL);
1111 	if (!name)
1112 		return 0;
1113 
1114 	return !strcmp(name, "isa");
1115 }
1116 
1117 static void of_bus_isa_count_cells(const void *blob, int parentoffset,
1118 				   int *addrc, int *sizec)
1119 {
1120 	if (addrc)
1121 		*addrc = 2;
1122 	if (sizec)
1123 		*sizec = 1;
1124 }
1125 
1126 static u64 of_bus_isa_map(fdt32_t *addr, const fdt32_t *range,
1127 			  int na, int ns, int pna)
1128 {
1129 	u64 cp, s, da;
1130 
1131 	/* Check address type match */
1132 	if ((addr[0] ^ range[0]) & cpu_to_be32(1))
1133 		return OF_BAD_ADDR;
1134 
1135 	cp = fdt_read_number(range + 1, na - 1);
1136 	s  = fdt_read_number(range + na + pna, ns);
1137 	da = fdt_read_number(addr + 1, na - 1);
1138 
1139 	debug("OF: ISA map, cp=%" PRIu64 ", s=%" PRIu64
1140 	      ", da=%" PRIu64 "\n", cp, s, da);
1141 
1142 	if (da < cp || da >= (cp + s))
1143 		return OF_BAD_ADDR;
1144 	return da - cp;
1145 }
1146 
1147 static int of_bus_isa_translate(fdt32_t *addr, u64 offset, int na)
1148 {
1149 	return of_bus_default_translate(addr + 1, offset, na - 1);
1150 }
1151 
1152 #endif /* CONFIG_OF_ISA_BUS */
1153 
1154 /* Array of bus specific translators */
1155 static struct of_bus of_busses[] = {
1156 #ifdef CONFIG_OF_ISA_BUS
1157 	/* ISA */
1158 	{
1159 		.name = "isa",
1160 		.addresses = "reg",
1161 		.match = of_bus_isa_match,
1162 		.count_cells = of_bus_isa_count_cells,
1163 		.map = of_bus_isa_map,
1164 		.translate = of_bus_isa_translate,
1165 	},
1166 #endif /* CONFIG_OF_ISA_BUS */
1167 	/* Default */
1168 	{
1169 		.name = "default",
1170 		.addresses = "reg",
1171 		.count_cells = fdt_support_default_count_cells,
1172 		.map = of_bus_default_map,
1173 		.translate = of_bus_default_translate,
1174 	},
1175 };
1176 
1177 static struct of_bus *of_match_bus(const void *blob, int parentoffset)
1178 {
1179 	struct of_bus *bus;
1180 
1181 	if (ARRAY_SIZE(of_busses) == 1)
1182 		return of_busses;
1183 
1184 	for (bus = of_busses; bus; bus++) {
1185 		if (!bus->match || bus->match(blob, parentoffset))
1186 			return bus;
1187 	}
1188 
1189 	/*
1190 	 * We should always have matched the default bus at least, since
1191 	 * it has a NULL match field. If we didn't then it somehow isn't
1192 	 * in the of_busses array or something equally catastrophic has
1193 	 * gone wrong.
1194 	 */
1195 	assert(0);
1196 	return NULL;
1197 }
1198 
1199 static int of_translate_one(const void *blob, int parent, struct of_bus *bus,
1200 			    struct of_bus *pbus, fdt32_t *addr,
1201 			    int na, int ns, int pna, const char *rprop)
1202 {
1203 	const fdt32_t *ranges;
1204 	int rlen;
1205 	int rone;
1206 	u64 offset = OF_BAD_ADDR;
1207 
1208 	/* Normally, an absence of a "ranges" property means we are
1209 	 * crossing a non-translatable boundary, and thus the addresses
1210 	 * below the current not cannot be converted to CPU physical ones.
1211 	 * Unfortunately, while this is very clear in the spec, it's not
1212 	 * what Apple understood, and they do have things like /uni-n or
1213 	 * /ht nodes with no "ranges" property and a lot of perfectly
1214 	 * useable mapped devices below them. Thus we treat the absence of
1215 	 * "ranges" as equivalent to an empty "ranges" property which means
1216 	 * a 1:1 translation at that level. It's up to the caller not to try
1217 	 * to translate addresses that aren't supposed to be translated in
1218 	 * the first place. --BenH.
1219 	 */
1220 	ranges = fdt_getprop(blob, parent, rprop, &rlen);
1221 	if (ranges == NULL || rlen == 0) {
1222 		offset = fdt_read_number(addr, na);
1223 		memset(addr, 0, pna * 4);
1224 		debug("OF: no ranges, 1:1 translation\n");
1225 		goto finish;
1226 	}
1227 
1228 	debug("OF: walking ranges...\n");
1229 
1230 	/* Now walk through the ranges */
1231 	rlen /= 4;
1232 	rone = na + pna + ns;
1233 	for (; rlen >= rone; rlen -= rone, ranges += rone) {
1234 		offset = bus->map(addr, ranges, na, ns, pna);
1235 		if (offset != OF_BAD_ADDR)
1236 			break;
1237 	}
1238 	if (offset == OF_BAD_ADDR) {
1239 		debug("OF: not found !\n");
1240 		return 1;
1241 	}
1242 	memcpy(addr, ranges + na, 4 * pna);
1243 
1244  finish:
1245 	of_dump_addr("OF: parent translation for:", addr, pna);
1246 	debug("OF: with offset: %" PRIu64 "\n", offset);
1247 
1248 	/* Translate it into parent bus space */
1249 	return pbus->translate(addr, offset, pna);
1250 }
1251 
1252 /*
1253  * Translate an address from the device-tree into a CPU physical address,
1254  * this walks up the tree and applies the various bus mappings on the
1255  * way.
1256  *
1257  * Note: We consider that crossing any level with #size-cells == 0 to mean
1258  * that translation is impossible (that is we are not dealing with a value
1259  * that can be mapped to a cpu physical address). This is not really specified
1260  * that way, but this is traditionally the way IBM at least do things
1261  */
1262 static u64 __of_translate_address(const void *blob, int node_offset,
1263 				  const fdt32_t *in_addr, const char *rprop)
1264 {
1265 	int parent;
1266 	struct of_bus *bus, *pbus;
1267 	fdt32_t addr[OF_MAX_ADDR_CELLS];
1268 	int na, ns, pna, pns;
1269 	u64 result = OF_BAD_ADDR;
1270 
1271 	debug("OF: ** translation for device %s **\n",
1272 		fdt_get_name(blob, node_offset, NULL));
1273 
1274 	/* Get parent & match bus type */
1275 	parent = fdt_parent_offset(blob, node_offset);
1276 	if (parent < 0)
1277 		goto bail;
1278 	bus = of_match_bus(blob, parent);
1279 
1280 	/* Cound address cells & copy address locally */
1281 	bus->count_cells(blob, parent, &na, &ns);
1282 	if (!OF_CHECK_COUNTS(na, ns)) {
1283 		printf("%s: Bad cell count for %s\n", __FUNCTION__,
1284 		       fdt_get_name(blob, node_offset, NULL));
1285 		goto bail;
1286 	}
1287 	memcpy(addr, in_addr, na * 4);
1288 
1289 	debug("OF: bus is %s (na=%d, ns=%d) on %s\n",
1290 	    bus->name, na, ns, fdt_get_name(blob, parent, NULL));
1291 	of_dump_addr("OF: translating address:", addr, na);
1292 
1293 	/* Translate */
1294 	for (;;) {
1295 		/* Switch to parent bus */
1296 		node_offset = parent;
1297 		parent = fdt_parent_offset(blob, node_offset);
1298 
1299 		/* If root, we have finished */
1300 		if (parent < 0) {
1301 			debug("OF: reached root node\n");
1302 			result = fdt_read_number(addr, na);
1303 			break;
1304 		}
1305 
1306 		/* Get new parent bus and counts */
1307 		pbus = of_match_bus(blob, parent);
1308 		pbus->count_cells(blob, parent, &pna, &pns);
1309 		if (!OF_CHECK_COUNTS(pna, pns)) {
1310 			printf("%s: Bad cell count for %s\n", __FUNCTION__,
1311 				fdt_get_name(blob, node_offset, NULL));
1312 			break;
1313 		}
1314 
1315 		debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
1316 		    pbus->name, pna, pns, fdt_get_name(blob, parent, NULL));
1317 
1318 		/* Apply bus translation */
1319 		if (of_translate_one(blob, node_offset, bus, pbus,
1320 					addr, na, ns, pna, rprop))
1321 			break;
1322 
1323 		/* Complete the move up one level */
1324 		na = pna;
1325 		ns = pns;
1326 		bus = pbus;
1327 
1328 		of_dump_addr("OF: one level translation:", addr, na);
1329 	}
1330  bail:
1331 
1332 	return result;
1333 }
1334 
1335 u64 fdt_translate_address(const void *blob, int node_offset,
1336 			  const fdt32_t *in_addr)
1337 {
1338 	return __of_translate_address(blob, node_offset, in_addr, "ranges");
1339 }
1340 
1341 /**
1342  * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and
1343  * who's reg property matches a physical cpu address
1344  *
1345  * @blob: ptr to device tree
1346  * @compat: compatiable string to match
1347  * @compat_off: property name
1348  *
1349  */
1350 int fdt_node_offset_by_compat_reg(void *blob, const char *compat,
1351 					phys_addr_t compat_off)
1352 {
1353 	int len, off = fdt_node_offset_by_compatible(blob, -1, compat);
1354 	while (off != -FDT_ERR_NOTFOUND) {
1355 		const fdt32_t *reg = fdt_getprop(blob, off, "reg", &len);
1356 		if (reg) {
1357 			if (compat_off == fdt_translate_address(blob, off, reg))
1358 				return off;
1359 		}
1360 		off = fdt_node_offset_by_compatible(blob, off, compat);
1361 	}
1362 
1363 	return -FDT_ERR_NOTFOUND;
1364 }
1365 
1366 /**
1367  * fdt_alloc_phandle: Return next free phandle value
1368  *
1369  * @blob: ptr to device tree
1370  */
1371 int fdt_alloc_phandle(void *blob)
1372 {
1373 	int offset;
1374 	uint32_t phandle = 0;
1375 
1376 	for (offset = fdt_next_node(blob, -1, NULL); offset >= 0;
1377 	     offset = fdt_next_node(blob, offset, NULL)) {
1378 		phandle = max(phandle, fdt_get_phandle(blob, offset));
1379 	}
1380 
1381 	return phandle + 1;
1382 }
1383 
1384 /*
1385  * fdt_set_phandle: Create a phandle property for the given node
1386  *
1387  * @fdt: ptr to device tree
1388  * @nodeoffset: node to update
1389  * @phandle: phandle value to set (must be unique)
1390  */
1391 int fdt_set_phandle(void *fdt, int nodeoffset, uint32_t phandle)
1392 {
1393 	int ret;
1394 
1395 #ifdef DEBUG
1396 	int off = fdt_node_offset_by_phandle(fdt, phandle);
1397 
1398 	if ((off >= 0) && (off != nodeoffset)) {
1399 		char buf[64];
1400 
1401 		fdt_get_path(fdt, nodeoffset, buf, sizeof(buf));
1402 		printf("Trying to update node %s with phandle %u ",
1403 		       buf, phandle);
1404 
1405 		fdt_get_path(fdt, off, buf, sizeof(buf));
1406 		printf("that already exists in node %s.\n", buf);
1407 		return -FDT_ERR_BADPHANDLE;
1408 	}
1409 #endif
1410 
1411 	ret = fdt_setprop_cell(fdt, nodeoffset, "phandle", phandle);
1412 	if (ret < 0)
1413 		return ret;
1414 
1415 	/*
1416 	 * For now, also set the deprecated "linux,phandle" property, so that we
1417 	 * don't break older kernels.
1418 	 */
1419 	ret = fdt_setprop_cell(fdt, nodeoffset, "linux,phandle", phandle);
1420 
1421 	return ret;
1422 }
1423 
1424 /*
1425  * fdt_create_phandle: Create a phandle property for the given node
1426  *
1427  * @fdt: ptr to device tree
1428  * @nodeoffset: node to update
1429  */
1430 unsigned int fdt_create_phandle(void *fdt, int nodeoffset)
1431 {
1432 	/* see if there is a phandle already */
1433 	int phandle = fdt_get_phandle(fdt, nodeoffset);
1434 
1435 	/* if we got 0, means no phandle so create one */
1436 	if (phandle == 0) {
1437 		int ret;
1438 
1439 		phandle = fdt_alloc_phandle(fdt);
1440 		ret = fdt_set_phandle(fdt, nodeoffset, phandle);
1441 		if (ret < 0) {
1442 			printf("Can't set phandle %u: %s\n", phandle,
1443 			       fdt_strerror(ret));
1444 			return 0;
1445 		}
1446 	}
1447 
1448 	return phandle;
1449 }
1450 
1451 /*
1452  * fdt_set_node_status: Set status for the given node
1453  *
1454  * @fdt: ptr to device tree
1455  * @nodeoffset: node to update
1456  * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED,
1457  *	    FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE
1458  * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE
1459  */
1460 int fdt_set_node_status(void *fdt, int nodeoffset,
1461 			enum fdt_status status, unsigned int error_code)
1462 {
1463 	char buf[16];
1464 	int ret = 0;
1465 
1466 	if (nodeoffset < 0)
1467 		return nodeoffset;
1468 
1469 	switch (status) {
1470 	case FDT_STATUS_OKAY:
1471 		ret = fdt_setprop_string(fdt, nodeoffset, "status", "okay");
1472 		break;
1473 	case FDT_STATUS_DISABLED:
1474 		ret = fdt_setprop_string(fdt, nodeoffset, "status", "disabled");
1475 		break;
1476 	case FDT_STATUS_FAIL:
1477 		ret = fdt_setprop_string(fdt, nodeoffset, "status", "fail");
1478 		break;
1479 	case FDT_STATUS_FAIL_ERROR_CODE:
1480 		sprintf(buf, "fail-%d", error_code);
1481 		ret = fdt_setprop_string(fdt, nodeoffset, "status", buf);
1482 		break;
1483 	default:
1484 		printf("Invalid fdt status: %x\n", status);
1485 		ret = -1;
1486 		break;
1487 	}
1488 
1489 	return ret;
1490 }
1491 
1492 /*
1493  * fdt_set_status_by_alias: Set status for the given node given an alias
1494  *
1495  * @fdt: ptr to device tree
1496  * @alias: alias of node to update
1497  * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED,
1498  *	    FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE
1499  * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE
1500  */
1501 int fdt_set_status_by_alias(void *fdt, const char* alias,
1502 			    enum fdt_status status, unsigned int error_code)
1503 {
1504 	int offset = fdt_path_offset(fdt, alias);
1505 
1506 	return fdt_set_node_status(fdt, offset, status, error_code);
1507 }
1508 
1509 #if defined(CONFIG_VIDEO) || defined(CONFIG_LCD)
1510 int fdt_add_edid(void *blob, const char *compat, unsigned char *edid_buf)
1511 {
1512 	int noff;
1513 	int ret;
1514 
1515 	noff = fdt_node_offset_by_compatible(blob, -1, compat);
1516 	if (noff != -FDT_ERR_NOTFOUND) {
1517 		debug("%s: %s\n", fdt_get_name(blob, noff, 0), compat);
1518 add_edid:
1519 		ret = fdt_setprop(blob, noff, "edid", edid_buf, 128);
1520 		if (ret == -FDT_ERR_NOSPACE) {
1521 			ret = fdt_increase_size(blob, 512);
1522 			if (!ret)
1523 				goto add_edid;
1524 			else
1525 				goto err_size;
1526 		} else if (ret < 0) {
1527 			printf("Can't add property: %s\n", fdt_strerror(ret));
1528 			return ret;
1529 		}
1530 	}
1531 	return 0;
1532 err_size:
1533 	printf("Can't increase blob size: %s\n", fdt_strerror(ret));
1534 	return ret;
1535 }
1536 #endif
1537 
1538 /*
1539  * Verify the physical address of device tree node for a given alias
1540  *
1541  * This function locates the device tree node of a given alias, and then
1542  * verifies that the physical address of that device matches the given
1543  * parameter.  It displays a message if there is a mismatch.
1544  *
1545  * Returns 1 on success, 0 on failure
1546  */
1547 int fdt_verify_alias_address(void *fdt, int anode, const char *alias, u64 addr)
1548 {
1549 	const char *path;
1550 	const fdt32_t *reg;
1551 	int node, len;
1552 	u64 dt_addr;
1553 
1554 	path = fdt_getprop(fdt, anode, alias, NULL);
1555 	if (!path) {
1556 		/* If there's no such alias, then it's not a failure */
1557 		return 1;
1558 	}
1559 
1560 	node = fdt_path_offset(fdt, path);
1561 	if (node < 0) {
1562 		printf("Warning: device tree alias '%s' points to invalid "
1563 		       "node %s.\n", alias, path);
1564 		return 0;
1565 	}
1566 
1567 	reg = fdt_getprop(fdt, node, "reg", &len);
1568 	if (!reg) {
1569 		printf("Warning: device tree node '%s' has no address.\n",
1570 		       path);
1571 		return 0;
1572 	}
1573 
1574 	dt_addr = fdt_translate_address(fdt, node, reg);
1575 	if (addr != dt_addr) {
1576 		printf("Warning: U-Boot configured device %s at address %"
1577 		       PRIx64 ",\n but the device tree has it address %"
1578 		       PRIx64 ".\n", alias, addr, dt_addr);
1579 		return 0;
1580 	}
1581 
1582 	return 1;
1583 }
1584 
1585 /*
1586  * Returns the base address of an SOC or PCI node
1587  */
1588 u64 fdt_get_base_address(const void *fdt, int node)
1589 {
1590 	int size;
1591 	const fdt32_t *prop;
1592 
1593 	prop = fdt_getprop(fdt, node, "reg", &size);
1594 
1595 	return prop ? fdt_translate_address(fdt, node, prop) : 0;
1596 }
1597 
1598 /*
1599  * Read a property of size <prop_len>. Currently only supports 1 or 2 cells.
1600  */
1601 static int fdt_read_prop(const fdt32_t *prop, int prop_len, int cell_off,
1602 			 uint64_t *val, int cells)
1603 {
1604 	const fdt32_t *prop32 = &prop[cell_off];
1605 	const fdt64_t *prop64 = (const fdt64_t *)&prop[cell_off];
1606 
1607 	if ((cell_off + cells) > prop_len)
1608 		return -FDT_ERR_NOSPACE;
1609 
1610 	switch (cells) {
1611 	case 1:
1612 		*val = fdt32_to_cpu(*prop32);
1613 		break;
1614 	case 2:
1615 		*val = fdt64_to_cpu(*prop64);
1616 		break;
1617 	default:
1618 		return -FDT_ERR_NOSPACE;
1619 	}
1620 
1621 	return 0;
1622 }
1623 
1624 /**
1625  * fdt_read_range - Read a node's n'th range property
1626  *
1627  * @fdt: ptr to device tree
1628  * @node: offset of node
1629  * @n: range index
1630  * @child_addr: pointer to storage for the "child address" field
1631  * @addr: pointer to storage for the CPU view translated physical start
1632  * @len: pointer to storage for the range length
1633  *
1634  * Convenience function that reads and interprets a specific range out of
1635  * a number of the "ranges" property array.
1636  */
1637 int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr,
1638 		   uint64_t *addr, uint64_t *len)
1639 {
1640 	int pnode = fdt_parent_offset(fdt, node);
1641 	const fdt32_t *ranges;
1642 	int pacells;
1643 	int acells;
1644 	int scells;
1645 	int ranges_len;
1646 	int cell = 0;
1647 	int r = 0;
1648 
1649 	/*
1650 	 * The "ranges" property is an array of
1651 	 * { <child address> <parent address> <size in child address space> }
1652 	 *
1653 	 * All 3 elements can span a diffent number of cells. Fetch their size.
1654 	 */
1655 	pacells = fdt_getprop_u32_default_node(fdt, pnode, 0, "#address-cells", 1);
1656 	acells = fdt_getprop_u32_default_node(fdt, node, 0, "#address-cells", 1);
1657 	scells = fdt_getprop_u32_default_node(fdt, node, 0, "#size-cells", 1);
1658 
1659 	/* Now try to get the ranges property */
1660 	ranges = fdt_getprop(fdt, node, "ranges", &ranges_len);
1661 	if (!ranges)
1662 		return -FDT_ERR_NOTFOUND;
1663 	ranges_len /= sizeof(uint32_t);
1664 
1665 	/* Jump to the n'th entry */
1666 	cell = n * (pacells + acells + scells);
1667 
1668 	/* Read <child address> */
1669 	if (child_addr) {
1670 		r = fdt_read_prop(ranges, ranges_len, cell, child_addr,
1671 				  acells);
1672 		if (r)
1673 			return r;
1674 	}
1675 	cell += acells;
1676 
1677 	/* Read <parent address> */
1678 	if (addr)
1679 		*addr = fdt_translate_address(fdt, node, ranges + cell);
1680 	cell += pacells;
1681 
1682 	/* Read <size in child address space> */
1683 	if (len) {
1684 		r = fdt_read_prop(ranges, ranges_len, cell, len, scells);
1685 		if (r)
1686 			return r;
1687 	}
1688 
1689 	return 0;
1690 }
1691 
1692 /**
1693  * fdt_setup_simplefb_node - Fill and enable a simplefb node
1694  *
1695  * @fdt: ptr to device tree
1696  * @node: offset of the simplefb node
1697  * @base_address: framebuffer base address
1698  * @width: width in pixels
1699  * @height: height in pixels
1700  * @stride: bytes per line
1701  * @format: pixel format string
1702  *
1703  * Convenience function to fill and enable a simplefb node.
1704  */
1705 int fdt_setup_simplefb_node(void *fdt, int node, u64 base_address, u32 width,
1706 			    u32 height, u32 stride, const char *format)
1707 {
1708 	char name[32];
1709 	fdt32_t cells[4];
1710 	int i, addrc, sizec, ret;
1711 
1712 	fdt_support_default_count_cells(fdt, fdt_parent_offset(fdt, node),
1713 					&addrc, &sizec);
1714 	i = 0;
1715 	if (addrc == 2)
1716 		cells[i++] = cpu_to_fdt32(base_address >> 32);
1717 	cells[i++] = cpu_to_fdt32(base_address);
1718 	if (sizec == 2)
1719 		cells[i++] = 0;
1720 	cells[i++] = cpu_to_fdt32(height * stride);
1721 
1722 	ret = fdt_setprop(fdt, node, "reg", cells, sizeof(cells[0]) * i);
1723 	if (ret < 0)
1724 		return ret;
1725 
1726 	snprintf(name, sizeof(name), "framebuffer@%" PRIx64, base_address);
1727 	ret = fdt_set_name(fdt, node, name);
1728 	if (ret < 0)
1729 		return ret;
1730 
1731 	ret = fdt_setprop_u32(fdt, node, "width", width);
1732 	if (ret < 0)
1733 		return ret;
1734 
1735 	ret = fdt_setprop_u32(fdt, node, "height", height);
1736 	if (ret < 0)
1737 		return ret;
1738 
1739 	ret = fdt_setprop_u32(fdt, node, "stride", stride);
1740 	if (ret < 0)
1741 		return ret;
1742 
1743 	ret = fdt_setprop_string(fdt, node, "format", format);
1744 	if (ret < 0)
1745 		return ret;
1746 
1747 	ret = fdt_setprop_string(fdt, node, "status", "okay");
1748 	if (ret < 0)
1749 		return ret;
1750 
1751 	return 0;
1752 }
1753 
1754 /*
1755  * Update native-mode in display-timings from display environment variable.
1756  * The node to update are specified by path.
1757  */
1758 int fdt_fixup_display(void *blob, const char *path, const char *display)
1759 {
1760 	int off, toff;
1761 
1762 	if (!display || !path)
1763 		return -FDT_ERR_NOTFOUND;
1764 
1765 	toff = fdt_path_offset(blob, path);
1766 	if (toff >= 0)
1767 		toff = fdt_subnode_offset(blob, toff, "display-timings");
1768 	if (toff < 0)
1769 		return toff;
1770 
1771 	for (off = fdt_first_subnode(blob, toff);
1772 	     off >= 0;
1773 	     off = fdt_next_subnode(blob, off)) {
1774 		uint32_t h = fdt_get_phandle(blob, off);
1775 		debug("%s:0x%x\n", fdt_get_name(blob, off, NULL),
1776 		      fdt32_to_cpu(h));
1777 		if (strcasecmp(fdt_get_name(blob, off, NULL), display) == 0)
1778 			return fdt_setprop_u32(blob, toff, "native-mode", h);
1779 	}
1780 	return toff;
1781 }
1782 
1783 #ifdef CONFIG_OF_LIBFDT_OVERLAY
1784 /**
1785  * fdt_overlay_apply_verbose - Apply an overlay with verbose error reporting
1786  *
1787  * @fdt: ptr to device tree
1788  * @fdto: ptr to device tree overlay
1789  *
1790  * Convenience function to apply an overlay and display helpful messages
1791  * in the case of an error
1792  */
1793 int fdt_overlay_apply_verbose(void *fdt, void *fdto)
1794 {
1795 	int err;
1796 	bool has_symbols;
1797 
1798 	err = fdt_path_offset(fdt, "/__symbols__");
1799 	has_symbols = err >= 0;
1800 
1801 	err = fdt_overlay_apply(fdt, fdto);
1802 	if (err < 0) {
1803 		printf("failed on fdt_overlay_apply(): %s\n",
1804 				fdt_strerror(err));
1805 		if (!has_symbols) {
1806 			printf("base fdt does did not have a /__symbols__ node\n");
1807 			printf("make sure you've compiled with -@\n");
1808 		}
1809 	}
1810 	return err;
1811 }
1812 #endif
1813