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