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