2 * libfdt - Flat Device Tree manipulation
3 * Copyright (C) 2006 David Gibson, IBM Corporation.
5 * libfdt is dual licensed: you can use it either under the terms of
6 * the GPL, or the BSD license, at your option.
8 * a) This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this library; if not, write to the Free
20 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25 * b) Redistribution and use in source and binary forms, with or
26 * without modification, are permitted provided that the following
29 * 1. Redistributions of source code must retain the above
30 * copyright notice, this list of conditions and the following
32 * 2. Redistributions in binary form must reproduce the above
33 * copyright notice, this list of conditions and the following
34 * disclaimer in the documentation and/or other materials
35 * provided with the distribution.
37 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
38 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
39 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
40 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
41 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
42 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
48 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
49 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51 #include "libfdt_env.h"
60 #include "libfdt_internal.h"
62 static int _fdt_nodename_eq(const void *fdt, int offset,
63 const char *s, int len)
65 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
71 if (memcmp(p, s, len) != 0)
76 else if (!memchr(s, '@', len) && (p[len] == '@'))
82 const char *fdt_string(const void *fdt, int stroffset)
84 return (const char *)fdt + fdt_off_dt_strings(fdt) + stroffset;
87 static int _fdt_string_eq(const void *fdt, int stroffset,
88 const char *s, int len)
90 const char *p = fdt_string(fdt, stroffset);
92 return (strlen(p) == len) && (memcmp(p, s, len) == 0);
95 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size)
97 FDT_CHECK_HEADER(fdt);
98 *address = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->address);
99 *size = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->size);
103 int fdt_num_mem_rsv(const void *fdt)
107 while (fdt64_to_cpu(_fdt_mem_rsv(fdt, i)->size) != 0)
112 int fdt_subnode_offset_namelen(const void *fdt, int offset,
113 const char *name, int namelen)
117 FDT_CHECK_HEADER(fdt);
119 for (depth = 0, offset = fdt_next_node(fdt, offset, &depth);
120 (offset >= 0) && (depth > 0);
121 offset = fdt_next_node(fdt, offset, &depth)) {
123 return -FDT_ERR_NOTFOUND;
124 else if ((depth == 1)
125 && _fdt_nodename_eq(fdt, offset, name, namelen))
130 return offset; /* error */
132 return -FDT_ERR_NOTFOUND;
135 int fdt_subnode_offset(const void *fdt, int parentoffset,
138 return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name));
141 int fdt_path_offset(const void *fdt, const char *path)
143 const char *end = path + strlen(path);
144 const char *p = path;
147 FDT_CHECK_HEADER(fdt);
149 /* see if we have an alias */
151 const char *q = strchr(path, '/');
156 p = fdt_get_alias_namelen(fdt, p, q - p);
158 return -FDT_ERR_BADPATH;
159 offset = fdt_path_offset(fdt, p);
175 offset = fdt_subnode_offset_namelen(fdt, offset, p, q-p);
185 const char *fdt_get_name(const void *fdt, int nodeoffset, int *len)
187 const struct fdt_node_header *nh = _fdt_offset_ptr(fdt, nodeoffset);
190 if (((err = fdt_check_header(fdt)) != 0)
191 || ((err = _fdt_check_node_offset(fdt, nodeoffset)) < 0))
195 *len = strlen(nh->name);
205 const struct fdt_property *fdt_get_property_namelen(const void *fdt,
208 int namelen, int *lenp)
211 const struct fdt_property *prop;
213 int offset, nextoffset;
216 if (((err = fdt_check_header(fdt)) != 0)
217 || ((err = _fdt_check_node_offset(fdt, nodeoffset)) < 0))
224 tag = fdt_next_tag(fdt, offset, &nextoffset);
227 err = -FDT_ERR_TRUNCATED;
236 err = -FDT_ERR_BADSTRUCTURE;
237 prop = fdt_offset_ptr(fdt, offset, sizeof(*prop));
240 namestroff = fdt32_to_cpu(prop->nameoff);
241 if (_fdt_string_eq(fdt, namestroff, name, namelen)) {
243 int len = fdt32_to_cpu(prop->len);
244 prop = fdt_offset_ptr(fdt, offset,
257 err = -FDT_ERR_BADSTRUCTURE;
260 } while ((tag != FDT_BEGIN_NODE) && (tag != FDT_END_NODE));
262 err = -FDT_ERR_NOTFOUND;
269 const struct fdt_property *fdt_get_property(const void *fdt,
271 const char *name, int *lenp)
273 return fdt_get_property_namelen(fdt, nodeoffset, name,
277 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
278 const char *name, int namelen, int *lenp)
280 const struct fdt_property *prop;
282 prop = fdt_get_property_namelen(fdt, nodeoffset, name, namelen, lenp);
289 const void *fdt_getprop(const void *fdt, int nodeoffset,
290 const char *name, int *lenp)
292 return fdt_getprop_namelen(fdt, nodeoffset, name, strlen(name), lenp);
295 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset)
300 php = fdt_getprop(fdt, nodeoffset, "linux,phandle", &len);
301 if (!php || (len != sizeof(*php)))
304 return fdt32_to_cpu(*php);
307 const char *fdt_get_alias_namelen(const void *fdt,
308 const char *name, int namelen)
312 aliasoffset = fdt_path_offset(fdt, "/aliases");
316 return fdt_getprop_namelen(fdt, aliasoffset, name, namelen, NULL);
319 const char *fdt_get_alias(const void *fdt, const char *name)
321 return fdt_get_alias_namelen(fdt, name, strlen(name));
324 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen)
326 int pdepth = 0, p = 0;
327 int offset, depth, namelen;
330 FDT_CHECK_HEADER(fdt);
333 return -FDT_ERR_NOSPACE;
335 for (offset = 0, depth = 0;
336 (offset >= 0) && (offset <= nodeoffset);
337 offset = fdt_next_node(fdt, offset, &depth)) {
338 while (pdepth > depth) {
341 } while (buf[p-1] != '/');
345 if (pdepth >= depth) {
346 name = fdt_get_name(fdt, offset, &namelen);
349 if ((p + namelen + 1) <= buflen) {
350 memcpy(buf + p, name, namelen);
357 if (offset == nodeoffset) {
358 if (pdepth < (depth + 1))
359 return -FDT_ERR_NOSPACE;
361 if (p > 1) /* special case so that root path is "/", not "" */
368 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
369 return -FDT_ERR_BADOFFSET;
370 else if (offset == -FDT_ERR_BADOFFSET)
371 return -FDT_ERR_BADSTRUCTURE;
373 return offset; /* error from fdt_next_node() */
376 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
377 int supernodedepth, int *nodedepth)
380 int supernodeoffset = -FDT_ERR_INTERNAL;
382 FDT_CHECK_HEADER(fdt);
384 if (supernodedepth < 0)
385 return -FDT_ERR_NOTFOUND;
387 for (offset = 0, depth = 0;
388 (offset >= 0) && (offset <= nodeoffset);
389 offset = fdt_next_node(fdt, offset, &depth)) {
390 if (depth == supernodedepth)
391 supernodeoffset = offset;
393 if (offset == nodeoffset) {
397 if (supernodedepth > depth)
398 return -FDT_ERR_NOTFOUND;
400 return supernodeoffset;
404 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
405 return -FDT_ERR_BADOFFSET;
406 else if (offset == -FDT_ERR_BADOFFSET)
407 return -FDT_ERR_BADSTRUCTURE;
409 return offset; /* error from fdt_next_node() */
412 int fdt_node_depth(const void *fdt, int nodeoffset)
417 err = fdt_supernode_atdepth_offset(fdt, nodeoffset, 0, &nodedepth);
419 return (err < 0) ? err : -FDT_ERR_INTERNAL;
423 int fdt_parent_offset(const void *fdt, int nodeoffset)
425 int nodedepth = fdt_node_depth(fdt, nodeoffset);
429 return fdt_supernode_atdepth_offset(fdt, nodeoffset,
430 nodedepth - 1, NULL);
433 int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
434 const char *propname,
435 const void *propval, int proplen)
441 FDT_CHECK_HEADER(fdt);
443 /* FIXME: The algorithm here is pretty horrible: we scan each
444 * property of a node in fdt_getprop(), then if that didn't
445 * find what we want, we scan over them again making our way
446 * to the next node. Still it's the easiest to implement
447 * approach; performance can come later. */
448 for (offset = fdt_next_node(fdt, startoffset, NULL);
450 offset = fdt_next_node(fdt, offset, NULL)) {
451 val = fdt_getprop(fdt, offset, propname, &len);
452 if (val && (len == proplen)
453 && (memcmp(val, propval, len) == 0))
457 return offset; /* error from fdt_next_node() */
460 int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle)
462 if ((phandle == 0) || (phandle == -1))
463 return -FDT_ERR_BADPHANDLE;
464 phandle = cpu_to_fdt32(phandle);
465 return fdt_node_offset_by_prop_value(fdt, -1, "linux,phandle",
466 &phandle, sizeof(phandle));
469 static int _fdt_stringlist_contains(const char *strlist, int listlen,
472 int len = strlen(str);
475 while (listlen >= len) {
476 if (memcmp(str, strlist, len+1) == 0)
478 p = memchr(strlist, '\0', listlen);
480 return 0; /* malformed strlist.. */
481 listlen -= (p-strlist) + 1;
487 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
488 const char *compatible)
493 prop = fdt_getprop(fdt, nodeoffset, "compatible", &len);
496 if (_fdt_stringlist_contains(prop, len, compatible))
502 int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
503 const char *compatible)
507 FDT_CHECK_HEADER(fdt);
509 /* FIXME: The algorithm here is pretty horrible: we scan each
510 * property of a node in fdt_node_check_compatible(), then if
511 * that didn't find what we want, we scan over them again
512 * making our way to the next node. Still it's the easiest to
513 * implement approach; performance can come later. */
514 for (offset = fdt_next_node(fdt, startoffset, NULL);
516 offset = fdt_next_node(fdt, offset, NULL)) {
517 err = fdt_node_check_compatible(fdt, offset, compatible);
518 if ((err < 0) && (err != -FDT_ERR_NOTFOUND))
524 return offset; /* error from fdt_next_node() */