blob: 951cc740b3f4e895e59b0c3b1fd3d69c80ea1f23 [file] [log] [blame]
David Gibson3da0f9a2006-11-27 16:21:28 +11001/*
2 * libfdt - Flat Device Tree manipulation
3 * Copyright (C) 2006 David Gibson, IBM Corporation.
4 *
David Gibson94816052007-06-13 16:30:48 +10005 * libfdt is dual licensed: you can use it either under the terms of
6 * the GPL, or the BSD license, at your option.
David Gibson3da0f9a2006-11-27 16:21:28 +11007 *
David Gibson94816052007-06-13 16:30:48 +10008 * 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.
David Gibson3da0f9a2006-11-27 16:21:28 +110012 *
David Gibson94816052007-06-13 16:30:48 +100013 * 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.
17 *
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,
21 * MA 02110-1301 USA
22 *
23 * Alternatively,
24 *
25 * b) Redistribution and use in source and binary forms, with or
26 * without modification, are permitted provided that the following
27 * conditions are met:
28 *
29 * 1. Redistributions of source code must retain the above
30 * copyright notice, this list of conditions and the following
31 * disclaimer.
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.
36 *
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.
David Gibson3da0f9a2006-11-27 16:21:28 +110050 */
51#include "libfdt_env.h"
52
53#include <fdt.h>
54#include <libfdt.h>
55
56#include "libfdt_internal.h"
57
David Gibsonb6d80a22008-07-09 14:10:24 +100058static int _fdt_nodename_eq(const void *fdt, int offset,
59 const char *s, int len)
David Gibson3da0f9a2006-11-27 16:21:28 +110060{
David Gibsonfc9769a2008-02-12 11:58:31 +110061 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
David Gibson3da0f9a2006-11-27 16:21:28 +110062
63 if (! p)
64 /* short match */
65 return 0;
66
67 if (memcmp(p, s, len) != 0)
68 return 0;
69
David Gibsond2a9da02007-09-28 15:51:04 +100070 if (p[len] == '\0')
71 return 1;
72 else if (!memchr(s, '@', len) && (p[len] == '@'))
73 return 1;
74 else
David Gibson3da0f9a2006-11-27 16:21:28 +110075 return 0;
David Gibson3da0f9a2006-11-27 16:21:28 +110076}
77
David Gibson11d53022007-10-18 12:10:42 +100078const char *fdt_string(const void *fdt, int stroffset)
David Gibson3aa4cfd2006-11-29 16:34:30 +110079{
David Gibson14090972008-07-07 10:14:15 +100080 return (const char *)fdt + fdt_off_dt_strings(fdt) + stroffset;
David Gibson3aa4cfd2006-11-29 16:34:30 +110081}
82
David Gibsoncb650ae2008-08-06 14:50:49 +100083static int _fdt_string_eq(const void *fdt, int stroffset,
84 const char *s, int len)
85{
86 const char *p = fdt_string(fdt, stroffset);
87
88 return (strlen(p) == len) && (memcmp(p, s, len) == 0);
89}
90
David Gibsonfd1bf3a2007-10-10 17:12:12 +100091int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size)
92{
David Gibsonb6d80a22008-07-09 14:10:24 +100093 FDT_CHECK_HEADER(fdt);
David Gibsonfd1bf3a2007-10-10 17:12:12 +100094 *address = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->address);
95 *size = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->size);
96 return 0;
97}
98
99int fdt_num_mem_rsv(const void *fdt)
100{
101 int i = 0;
102
103 while (fdt64_to_cpu(_fdt_mem_rsv(fdt, i)->size) != 0)
104 i++;
105 return i;
106}
107
David Gibsonfc9769a2008-02-12 11:58:31 +1100108int fdt_subnode_offset_namelen(const void *fdt, int offset,
David Gibson3da0f9a2006-11-27 16:21:28 +1100109 const char *name, int namelen)
110{
David Gibsonce4d9c02009-02-06 14:01:56 +1100111 int depth;
David Gibson3da0f9a2006-11-27 16:21:28 +1100112
David Gibsonb6d80a22008-07-09 14:10:24 +1000113 FDT_CHECK_HEADER(fdt);
David Gibson3da0f9a2006-11-27 16:21:28 +1100114
David Gibsonce4d9c02009-02-06 14:01:56 +1100115 for (depth = 0;
116 (offset >= 0) && (depth >= 0);
117 offset = fdt_next_node(fdt, offset, &depth))
118 if ((depth == 1)
119 && _fdt_nodename_eq(fdt, offset, name, namelen))
David Gibsonfc9769a2008-02-12 11:58:31 +1100120 return offset;
David Gibson3da0f9a2006-11-27 16:21:28 +1100121
David Gibsonce4d9c02009-02-06 14:01:56 +1100122 if (depth < 0)
David Gibsonf99cd152008-10-30 13:41:08 +1100123 return -FDT_ERR_NOTFOUND;
David Gibsonce4d9c02009-02-06 14:01:56 +1100124 return offset; /* error */
David Gibson3da0f9a2006-11-27 16:21:28 +1100125}
126
David Gibson73d60922006-12-15 15:12:47 +1100127int fdt_subnode_offset(const void *fdt, int parentoffset,
David Gibson3da0f9a2006-11-27 16:21:28 +1100128 const char *name)
129{
130 return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name));
131}
132
David Gibson73d60922006-12-15 15:12:47 +1100133int fdt_path_offset(const void *fdt, const char *path)
David Gibson3da0f9a2006-11-27 16:21:28 +1100134{
135 const char *end = path + strlen(path);
136 const char *p = path;
137 int offset = 0;
138
David Gibsonb6d80a22008-07-09 14:10:24 +1000139 FDT_CHECK_HEADER(fdt);
David Gibson3da0f9a2006-11-27 16:21:28 +1100140
Kumar Gala02cc8352008-08-14 08:28:19 -0500141 /* see if we have an alias */
142 if (*path != '/') {
David Gibson9c831152008-08-20 16:55:14 +1000143 const char *q = strchr(path, '/');
Kumar Gala02cc8352008-08-14 08:28:19 -0500144
Kumar Gala02cc8352008-08-14 08:28:19 -0500145 if (!q)
146 q = end;
147
David Gibson9c831152008-08-20 16:55:14 +1000148 p = fdt_get_alias_namelen(fdt, p, q - p);
Kumar Gala02cc8352008-08-14 08:28:19 -0500149 if (!p)
150 return -FDT_ERR_BADPATH;
151 offset = fdt_path_offset(fdt, p);
152
153 p = q;
154 }
David Gibson3da0f9a2006-11-27 16:21:28 +1100155
156 while (*p) {
157 const char *q;
158
159 while (*p == '/')
160 p++;
161 if (! *p)
David Gibsonbd2ae2f2007-08-29 12:22:50 +1000162 return offset;
David Gibson3da0f9a2006-11-27 16:21:28 +1100163 q = strchr(p, '/');
164 if (! q)
165 q = end;
166
167 offset = fdt_subnode_offset_namelen(fdt, offset, p, q-p);
David Gibson9a9fdf52006-12-15 15:12:51 +1100168 if (offset < 0)
David Gibson3da0f9a2006-11-27 16:21:28 +1100169 return offset;
170
171 p = q;
172 }
173
David Gibson63dc9c72007-09-18 11:44:04 +1000174 return offset;
David Gibson3da0f9a2006-11-27 16:21:28 +1100175}
176
David Gibson9d26eab2007-08-30 14:54:04 +1000177const char *fdt_get_name(const void *fdt, int nodeoffset, int *len)
178{
David Gibsonaa1baab2008-05-20 17:19:11 +1000179 const struct fdt_node_header *nh = _fdt_offset_ptr(fdt, nodeoffset);
David Gibson9d26eab2007-08-30 14:54:04 +1000180 int err;
181
David Gibsonaa1baab2008-05-20 17:19:11 +1000182 if (((err = fdt_check_header(fdt)) != 0)
183 || ((err = _fdt_check_node_offset(fdt, nodeoffset)) < 0))
184 goto fail;
David Gibson9d26eab2007-08-30 14:54:04 +1000185
186 if (len)
187 *len = strlen(nh->name);
188
189 return nh->name;
190
191 fail:
192 if (len)
193 *len = err;
194 return NULL;
195}
196
David Gibsoncb650ae2008-08-06 14:50:49 +1000197const struct fdt_property *fdt_get_property_namelen(const void *fdt,
198 int nodeoffset,
199 const char *name,
200 int namelen, int *lenp)
David Gibson3da0f9a2006-11-27 16:21:28 +1100201{
David Gibson94993f42006-12-11 16:15:34 +1100202 uint32_t tag;
David Gibsona6c76f92007-06-13 14:18:10 +1000203 const struct fdt_property *prop;
David Gibson94993f42006-12-11 16:15:34 +1100204 int offset, nextoffset;
David Gibsona7ee95d2006-12-15 15:12:49 +1100205 int err;
David Gibson3da0f9a2006-11-27 16:21:28 +1100206
David Gibsonaa1baab2008-05-20 17:19:11 +1000207 if (((err = fdt_check_header(fdt)) != 0)
208 || ((err = _fdt_check_node_offset(fdt, nodeoffset)) < 0))
209 goto fail;
David Gibson3da0f9a2006-11-27 16:21:28 +1100210
David Gibsonaa1baab2008-05-20 17:19:11 +1000211 nextoffset = err;
David Gibson94993f42006-12-11 16:15:34 +1100212 do {
213 offset = nextoffset;
David Gibson94993f42006-12-11 16:15:34 +1100214
David Gibson3c44c872007-10-24 11:06:09 +1000215 tag = fdt_next_tag(fdt, offset, &nextoffset);
David Gibson94993f42006-12-11 16:15:34 +1100216 switch (tag) {
217 case FDT_END:
David Gibson1a020e42009-02-06 14:03:24 +1100218 if (nextoffset < 0)
219 err = nextoffset;
220 else
221 /* FDT_END tag with unclosed nodes */
222 err = -FDT_ERR_BADSTRUCTURE;
David Gibsona7ee95d2006-12-15 15:12:49 +1100223 goto fail;
David Gibson94993f42006-12-11 16:15:34 +1100224
David Gibson94993f42006-12-11 16:15:34 +1100225 case FDT_PROP:
David Gibson1a020e42009-02-06 14:03:24 +1100226 prop = _fdt_offset_ptr(fdt, offset);
227 if (_fdt_string_eq(fdt, fdt32_to_cpu(prop->nameoff),
228 name, namelen)) {
David Gibson94993f42006-12-11 16:15:34 +1100229 /* Found it! */
David Gibson94993f42006-12-11 16:15:34 +1100230 if (lenp)
David Gibson1a020e42009-02-06 14:03:24 +1100231 *lenp = fdt32_to_cpu(prop->len);
David Gibson63dc9c72007-09-18 11:44:04 +1000232
David Gibson94993f42006-12-11 16:15:34 +1100233 return prop;
234 }
235 break;
David Gibson94993f42006-12-11 16:15:34 +1100236 }
David Gibson592ea582007-09-04 10:43:03 +1000237 } while ((tag != FDT_BEGIN_NODE) && (tag != FDT_END_NODE));
David Gibson94993f42006-12-11 16:15:34 +1100238
David Gibson9a9fdf52006-12-15 15:12:51 +1100239 err = -FDT_ERR_NOTFOUND;
David Gibsona7ee95d2006-12-15 15:12:49 +1100240 fail:
241 if (lenp)
David Gibson9a9fdf52006-12-15 15:12:51 +1100242 *lenp = err;
David Gibsona7ee95d2006-12-15 15:12:49 +1100243 return NULL;
David Gibson3da0f9a2006-11-27 16:21:28 +1100244}
245
David Gibsoncb650ae2008-08-06 14:50:49 +1000246const struct fdt_property *fdt_get_property(const void *fdt,
247 int nodeoffset,
248 const char *name, int *lenp)
249{
250 return fdt_get_property_namelen(fdt, nodeoffset, name,
251 strlen(name), lenp);
252}
253
254const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
255 const char *name, int namelen, int *lenp)
David Gibson3da0f9a2006-11-27 16:21:28 +1100256{
257 const struct fdt_property *prop;
David Gibson3da0f9a2006-11-27 16:21:28 +1100258
David Gibsoncb650ae2008-08-06 14:50:49 +1000259 prop = fdt_get_property_namelen(fdt, nodeoffset, name, namelen, lenp);
David Gibsona7ee95d2006-12-15 15:12:49 +1100260 if (! prop)
261 return NULL;
David Gibson3da0f9a2006-11-27 16:21:28 +1100262
263 return prop->data;
264}
David Gibson037db262007-08-30 14:54:04 +1000265
David Gibsoncb650ae2008-08-06 14:50:49 +1000266const void *fdt_getprop(const void *fdt, int nodeoffset,
267 const char *name, int *lenp)
268{
269 return fdt_getprop_namelen(fdt, nodeoffset, name, strlen(name), lenp);
270}
271
David Gibson73468582007-11-13 09:59:38 +1100272uint32_t fdt_get_phandle(const void *fdt, int nodeoffset)
273{
274 const uint32_t *php;
275 int len;
276
David Gibsond75b33a2009-11-26 15:37:13 +1100277 /* FIXME: This is a bit sub-optimal, since we potentially scan
278 * over all the properties twice. */
279 php = fdt_getprop(fdt, nodeoffset, "phandle", &len);
280 if (!php || (len != sizeof(*php))) {
281 php = fdt_getprop(fdt, nodeoffset, "linux,phandle", &len);
282 if (!php || (len != sizeof(*php)))
283 return 0;
284 }
David Gibson73468582007-11-13 09:59:38 +1100285
286 return fdt32_to_cpu(*php);
287}
288
David Gibson9c831152008-08-20 16:55:14 +1000289const char *fdt_get_alias_namelen(const void *fdt,
290 const char *name, int namelen)
291{
292 int aliasoffset;
293
294 aliasoffset = fdt_path_offset(fdt, "/aliases");
295 if (aliasoffset < 0)
296 return NULL;
297
298 return fdt_getprop_namelen(fdt, aliasoffset, name, namelen, NULL);
299}
300
301const char *fdt_get_alias(const void *fdt, const char *name)
302{
303 return fdt_get_alias_namelen(fdt, name, strlen(name));
304}
305
David Gibson037db262007-08-30 14:54:04 +1000306int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen)
307{
David Gibsonfc9769a2008-02-12 11:58:31 +1100308 int pdepth = 0, p = 0;
309 int offset, depth, namelen;
David Gibson037db262007-08-30 14:54:04 +1000310 const char *name;
311
David Gibsonb6d80a22008-07-09 14:10:24 +1000312 FDT_CHECK_HEADER(fdt);
David Gibson037db262007-08-30 14:54:04 +1000313
David Gibson037db262007-08-30 14:54:04 +1000314 if (buflen < 2)
315 return -FDT_ERR_NOSPACE;
David Gibson037db262007-08-30 14:54:04 +1000316
David Gibsonfc9769a2008-02-12 11:58:31 +1100317 for (offset = 0, depth = 0;
318 (offset >= 0) && (offset <= nodeoffset);
319 offset = fdt_next_node(fdt, offset, &depth)) {
David Gibsonfc9769a2008-02-12 11:58:31 +1100320 while (pdepth > depth) {
321 do {
322 p--;
323 } while (buf[p-1] != '/');
324 pdepth--;
325 }
326
David Gibson8daae142008-08-29 14:19:13 +1000327 if (pdepth >= depth) {
328 name = fdt_get_name(fdt, offset, &namelen);
329 if (!name)
330 return namelen;
331 if ((p + namelen + 1) <= buflen) {
332 memcpy(buf + p, name, namelen);
333 p += namelen;
334 buf[p++] = '/';
335 pdepth++;
336 }
David Gibsonfc9769a2008-02-12 11:58:31 +1100337 }
David Gibson037db262007-08-30 14:54:04 +1000338
David Gibsonfc9769a2008-02-12 11:58:31 +1100339 if (offset == nodeoffset) {
340 if (pdepth < (depth + 1))
341 return -FDT_ERR_NOSPACE;
342
343 if (p > 1) /* special case so that root path is "/", not "" */
David Gibson037db262007-08-30 14:54:04 +1000344 p--;
David Gibsonfc9769a2008-02-12 11:58:31 +1100345 buf[p] = '\0';
David Gibson8daae142008-08-29 14:19:13 +1000346 return 0;
David Gibson037db262007-08-30 14:54:04 +1000347 }
348 }
349
David Gibsonfc9769a2008-02-12 11:58:31 +1100350 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
351 return -FDT_ERR_BADOFFSET;
352 else if (offset == -FDT_ERR_BADOFFSET)
353 return -FDT_ERR_BADSTRUCTURE;
David Gibson037db262007-08-30 14:54:04 +1000354
David Gibsonfc9769a2008-02-12 11:58:31 +1100355 return offset; /* error from fdt_next_node() */
David Gibson037db262007-08-30 14:54:04 +1000356}
David Gibson12482372007-08-30 14:54:04 +1000357
358int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
359 int supernodedepth, int *nodedepth)
360{
David Gibsonfc9769a2008-02-12 11:58:31 +1100361 int offset, depth;
David Gibson12482372007-08-30 14:54:04 +1000362 int supernodeoffset = -FDT_ERR_INTERNAL;
363
David Gibsonb6d80a22008-07-09 14:10:24 +1000364 FDT_CHECK_HEADER(fdt);
David Gibson12482372007-08-30 14:54:04 +1000365
366 if (supernodedepth < 0)
367 return -FDT_ERR_NOTFOUND;
368
David Gibsonfc9769a2008-02-12 11:58:31 +1100369 for (offset = 0, depth = 0;
370 (offset >= 0) && (offset <= nodeoffset);
371 offset = fdt_next_node(fdt, offset, &depth)) {
372 if (depth == supernodedepth)
373 supernodeoffset = offset;
David Gibson12482372007-08-30 14:54:04 +1000374
David Gibsonfc9769a2008-02-12 11:58:31 +1100375 if (offset == nodeoffset) {
376 if (nodedepth)
377 *nodedepth = depth;
David Gibson12482372007-08-30 14:54:04 +1000378
David Gibsonfc9769a2008-02-12 11:58:31 +1100379 if (supernodedepth > depth)
380 return -FDT_ERR_NOTFOUND;
381 else
382 return supernodeoffset;
David Gibson12482372007-08-30 14:54:04 +1000383 }
David Gibsonfc9769a2008-02-12 11:58:31 +1100384 }
David Gibson12482372007-08-30 14:54:04 +1000385
David Gibsonfc9769a2008-02-12 11:58:31 +1100386 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
387 return -FDT_ERR_BADOFFSET;
388 else if (offset == -FDT_ERR_BADOFFSET)
389 return -FDT_ERR_BADSTRUCTURE;
David Gibson12482372007-08-30 14:54:04 +1000390
David Gibsonfc9769a2008-02-12 11:58:31 +1100391 return offset; /* error from fdt_next_node() */
David Gibson12482372007-08-30 14:54:04 +1000392}
393
394int fdt_node_depth(const void *fdt, int nodeoffset)
395{
396 int nodedepth;
397 int err;
398
399 err = fdt_supernode_atdepth_offset(fdt, nodeoffset, 0, &nodedepth);
400 if (err)
401 return (err < 0) ? err : -FDT_ERR_INTERNAL;
402 return nodedepth;
403}
404
405int fdt_parent_offset(const void *fdt, int nodeoffset)
406{
407 int nodedepth = fdt_node_depth(fdt, nodeoffset);
408
409 if (nodedepth < 0)
410 return nodedepth;
411 return fdt_supernode_atdepth_offset(fdt, nodeoffset,
412 nodedepth - 1, NULL);
413}
David Gibsonae1454b2007-09-17 14:28:34 +1000414
415int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
416 const char *propname,
417 const void *propval, int proplen)
418{
David Gibsonfc9769a2008-02-12 11:58:31 +1100419 int offset;
David Gibsonae1454b2007-09-17 14:28:34 +1000420 const void *val;
421 int len;
422
David Gibsonb6d80a22008-07-09 14:10:24 +1000423 FDT_CHECK_HEADER(fdt);
David Gibsonae1454b2007-09-17 14:28:34 +1000424
David Gibsonae1454b2007-09-17 14:28:34 +1000425 /* FIXME: The algorithm here is pretty horrible: we scan each
426 * property of a node in fdt_getprop(), then if that didn't
427 * find what we want, we scan over them again making our way
428 * to the next node. Still it's the easiest to implement
429 * approach; performance can come later. */
David Gibsonfc9769a2008-02-12 11:58:31 +1100430 for (offset = fdt_next_node(fdt, startoffset, NULL);
431 offset >= 0;
432 offset = fdt_next_node(fdt, offset, NULL)) {
433 val = fdt_getprop(fdt, offset, propname, &len);
434 if (val && (len == proplen)
435 && (memcmp(val, propval, len) == 0))
436 return offset;
437 }
David Gibsonae1454b2007-09-17 14:28:34 +1000438
David Gibsonfc9769a2008-02-12 11:58:31 +1100439 return offset; /* error from fdt_next_node() */
David Gibsonae1454b2007-09-17 14:28:34 +1000440}
David Gibson333542f2007-10-16 13:58:25 +1000441
David Gibson73468582007-11-13 09:59:38 +1100442int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle)
443{
David Gibsond75b33a2009-11-26 15:37:13 +1100444 int offset;
445
David Gibson73468582007-11-13 09:59:38 +1100446 if ((phandle == 0) || (phandle == -1))
447 return -FDT_ERR_BADPHANDLE;
David Gibsond75b33a2009-11-26 15:37:13 +1100448
449 FDT_CHECK_HEADER(fdt);
450
451 /* FIXME: The algorithm here is pretty horrible: we
452 * potentially scan each property of a node in
453 * fdt_get_phandle(), then if that didn't find what
454 * we want, we scan over them again making our way to the next
455 * node. Still it's the easiest to implement approach;
456 * performance can come later. */
457 for (offset = fdt_next_node(fdt, -1, NULL);
458 offset >= 0;
459 offset = fdt_next_node(fdt, offset, NULL)) {
460 if (fdt_get_phandle(fdt, offset) == phandle)
461 return offset;
462 }
463
464 return offset; /* error from fdt_next_node() */
David Gibson73468582007-11-13 09:59:38 +1100465}
466
David Gibsond5653612008-07-29 14:51:22 +1000467static int _fdt_stringlist_contains(const char *strlist, int listlen,
468 const char *str)
David Gibson333542f2007-10-16 13:58:25 +1000469{
470 int len = strlen(str);
David Gibson36786db2008-07-07 10:10:48 +1000471 const char *p;
David Gibson333542f2007-10-16 13:58:25 +1000472
473 while (listlen >= len) {
474 if (memcmp(str, strlist, len+1) == 0)
475 return 1;
476 p = memchr(strlist, '\0', listlen);
477 if (!p)
478 return 0; /* malformed strlist.. */
479 listlen -= (p-strlist) + 1;
480 strlist = p + 1;
481 }
482 return 0;
483}
484
485int fdt_node_check_compatible(const void *fdt, int nodeoffset,
486 const char *compatible)
487{
488 const void *prop;
489 int len;
490
491 prop = fdt_getprop(fdt, nodeoffset, "compatible", &len);
492 if (!prop)
493 return len;
David Gibsond5653612008-07-29 14:51:22 +1000494 if (_fdt_stringlist_contains(prop, len, compatible))
David Gibson333542f2007-10-16 13:58:25 +1000495 return 0;
496 else
497 return 1;
498}
499
500int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
501 const char *compatible)
502{
David Gibson2512a7e2008-02-18 18:09:04 +1100503 int offset, err;
David Gibson333542f2007-10-16 13:58:25 +1000504
David Gibsonb6d80a22008-07-09 14:10:24 +1000505 FDT_CHECK_HEADER(fdt);
David Gibson333542f2007-10-16 13:58:25 +1000506
David Gibson333542f2007-10-16 13:58:25 +1000507 /* FIXME: The algorithm here is pretty horrible: we scan each
508 * property of a node in fdt_node_check_compatible(), then if
509 * that didn't find what we want, we scan over them again
510 * making our way to the next node. Still it's the easiest to
511 * implement approach; performance can come later. */
David Gibsonfc9769a2008-02-12 11:58:31 +1100512 for (offset = fdt_next_node(fdt, startoffset, NULL);
513 offset >= 0;
514 offset = fdt_next_node(fdt, offset, NULL)) {
515 err = fdt_node_check_compatible(fdt, offset, compatible);
516 if ((err < 0) && (err != -FDT_ERR_NOTFOUND))
517 return err;
518 else if (err == 0)
519 return offset;
520 }
David Gibson333542f2007-10-16 13:58:25 +1000521
David Gibsonfc9769a2008-02-12 11:58:31 +1100522 return offset; /* error from fdt_next_node() */
David Gibson333542f2007-10-16 13:58:25 +1000523}