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