blob: 6b737b211d2eeead39b5337fe1de412dc762d223 [file] [log] [blame]
Gerald Van Baren35748172007-03-31 12:00:56 -04001/*
2 * libfdt - Flat Device Tree manipulation
3 * Copyright (C) 2006 David Gibson, IBM Corporation.
Roger Meier35084762013-07-27 01:12:38 +02004 * SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
Gerald Van Baren35748172007-03-31 12:00:56 -04005 */
Robert P. J. Day6feed2a2016-05-23 05:40:55 -04006#include <libfdt_env.h>
Gerald Van Baren35748172007-03-31 12:00:56 -04007
Bartlomiej Sieka8cf30802008-02-29 16:00:24 +01008#ifndef USE_HOSTCC
Gerald Van Baren35748172007-03-31 12:00:56 -04009#include <fdt.h>
10#include <libfdt.h>
Bartlomiej Sieka8cf30802008-02-29 16:00:24 +010011#else
12#include "fdt_host.h"
13#endif
Gerald Van Baren35748172007-03-31 12:00:56 -040014
15#include "libfdt_internal.h"
16
David Gibsonfc7758e2008-07-09 14:10:24 +100017static int _fdt_nodename_eq(const void *fdt, int offset,
18 const char *s, int len)
Gerald Van Baren35748172007-03-31 12:00:56 -040019{
David Gibsonae0b5902008-02-12 11:58:31 +110020 const char *p = fdt_offset_ptr(fdt, offset + FDT_TAGSIZE, len+1);
Gerald Van Baren35748172007-03-31 12:00:56 -040021
Robert P. J. Day6feed2a2016-05-23 05:40:55 -040022 if (!p)
Gerald Van Baren35748172007-03-31 12:00:56 -040023 /* short match */
24 return 0;
25
26 if (memcmp(p, s, len) != 0)
27 return 0;
28
Kumar Gala8d04f022007-10-24 11:04:22 -050029 if (p[len] == '\0')
30 return 1;
31 else if (!memchr(s, '@', len) && (p[len] == '@'))
32 return 1;
33 else
Gerald Van Baren35748172007-03-31 12:00:56 -040034 return 0;
Gerald Van Baren35748172007-03-31 12:00:56 -040035}
36
Kumar Gala8d04f022007-10-24 11:04:22 -050037const char *fdt_string(const void *fdt, int stroffset)
Gerald Van Baren35748172007-03-31 12:00:56 -040038{
David Gibsonc6683022008-07-07 10:14:15 +100039 return (const char *)fdt + fdt_off_dt_strings(fdt) + stroffset;
Gerald Van Baren35748172007-03-31 12:00:56 -040040}
41
David Gibson02193992008-08-06 14:50:49 +100042static int _fdt_string_eq(const void *fdt, int stroffset,
43 const char *s, int len)
44{
45 const char *p = fdt_string(fdt, stroffset);
46
Jon Nalleyaf67b252014-02-26 11:32:21 -050047 return (strnlen(p, len + 1) == len) && (memcmp(p, s, len) == 0);
David Gibson02193992008-08-06 14:50:49 +100048}
49
Maxime Ripard57c78092016-07-05 10:26:39 +020050uint32_t fdt_get_max_phandle(const void *fdt)
51{
52 uint32_t max_phandle = 0;
53 int offset;
54
55 for (offset = fdt_next_node(fdt, -1, NULL);;
56 offset = fdt_next_node(fdt, offset, NULL)) {
57 uint32_t phandle;
58
59 if (offset == -FDT_ERR_NOTFOUND)
60 return max_phandle;
61
62 if (offset < 0)
63 return 0;
64
65 phandle = fdt_get_phandle(fdt, offset);
66 if (phandle == (uint32_t)-1)
67 return 0;
68
69 if (phandle > max_phandle)
70 max_phandle = phandle;
71 }
72
73 return 0;
74}
75
Kumar Gala8d04f022007-10-24 11:04:22 -050076int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size)
77{
David Gibsonfc7758e2008-07-09 14:10:24 +100078 FDT_CHECK_HEADER(fdt);
Kumar Gala8d04f022007-10-24 11:04:22 -050079 *address = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->address);
80 *size = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->size);
81 return 0;
82}
83
84int fdt_num_mem_rsv(const void *fdt)
85{
86 int i = 0;
87
88 while (fdt64_to_cpu(_fdt_mem_rsv(fdt, i)->size) != 0)
89 i++;
90 return i;
91}
92
David Gibsond1c63142010-03-09 17:39:14 +110093static int _nextprop(const void *fdt, int offset)
94{
95 uint32_t tag;
96 int nextoffset;
97
98 do {
99 tag = fdt_next_tag(fdt, offset, &nextoffset);
100
101 switch (tag) {
102 case FDT_END:
103 if (nextoffset >= 0)
104 return -FDT_ERR_BADSTRUCTURE;
105 else
106 return nextoffset;
107
108 case FDT_PROP:
109 return offset;
110 }
111 offset = nextoffset;
112 } while (tag == FDT_NOP);
113
114 return -FDT_ERR_NOTFOUND;
115}
116
David Gibsonae0b5902008-02-12 11:58:31 +1100117int fdt_subnode_offset_namelen(const void *fdt, int offset,
Gerald Van Baren35748172007-03-31 12:00:56 -0400118 const char *name, int namelen)
119{
David Gibson2c0b8432009-02-06 14:01:56 +1100120 int depth;
Gerald Van Baren35748172007-03-31 12:00:56 -0400121
David Gibsonfc7758e2008-07-09 14:10:24 +1000122 FDT_CHECK_HEADER(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -0400123
David Gibson2c0b8432009-02-06 14:01:56 +1100124 for (depth = 0;
125 (offset >= 0) && (depth >= 0);
126 offset = fdt_next_node(fdt, offset, &depth))
127 if ((depth == 1)
128 && _fdt_nodename_eq(fdt, offset, name, namelen))
David Gibsonae0b5902008-02-12 11:58:31 +1100129 return offset;
Gerald Van Baren35748172007-03-31 12:00:56 -0400130
David Gibson2c0b8432009-02-06 14:01:56 +1100131 if (depth < 0)
David Gibson4bc7dee2008-10-29 23:27:45 -0500132 return -FDT_ERR_NOTFOUND;
David Gibson2c0b8432009-02-06 14:01:56 +1100133 return offset; /* error */
Gerald Van Baren35748172007-03-31 12:00:56 -0400134}
135
136int fdt_subnode_offset(const void *fdt, int parentoffset,
137 const char *name)
138{
139 return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name));
140}
141
Hans de Goede77d7fff2015-04-20 11:13:37 +0200142/*
Maxime Ripard6f5f92c2016-07-05 10:26:40 +0200143 * Find the next of path separator, note we need to search for both '/' and ':'
Robert P. J. Day6feed2a2016-05-23 05:40:55 -0400144 * and then take the first one so that we do the right thing for e.g.
Hans de Goede77d7fff2015-04-20 11:13:37 +0200145 * "foo/bar:option" and "bar:option/otheroption", both of which happen, so
146 * first searching for either ':' or '/' does not work.
147 */
Maxime Ripard6f5f92c2016-07-05 10:26:40 +0200148static const char *fdt_path_next_separator(const char *path)
Hans de Goede77d7fff2015-04-20 11:13:37 +0200149{
150 const char *sep1 = strchr(path, '/');
151 const char *sep2 = strchr(path, ':');
152
153 if (sep1 && sep2)
154 return (sep1 < sep2) ? sep1 : sep2;
155 else if (sep1)
156 return sep1;
157 else
158 return sep2;
159}
160
Kumar Gala8d04f022007-10-24 11:04:22 -0500161int fdt_path_offset(const void *fdt, const char *path)
Gerald Van Baren35748172007-03-31 12:00:56 -0400162{
163 const char *end = path + strlen(path);
164 const char *p = path;
165 int offset = 0;
166
David Gibsonfc7758e2008-07-09 14:10:24 +1000167 FDT_CHECK_HEADER(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -0400168
Kumar Galafeeca3f2008-08-14 08:28:19 -0500169 /* see if we have an alias */
170 if (*path != '/') {
Maxime Ripard6f5f92c2016-07-05 10:26:40 +0200171 const char *q = fdt_path_next_separator(path);
Kumar Galafeeca3f2008-08-14 08:28:19 -0500172
Kumar Galafeeca3f2008-08-14 08:28:19 -0500173 if (!q)
174 q = end;
175
David Gibson9a6cf732008-08-20 16:55:14 +1000176 p = fdt_get_alias_namelen(fdt, p, q - p);
Kumar Galafeeca3f2008-08-14 08:28:19 -0500177 if (!p)
178 return -FDT_ERR_BADPATH;
179 offset = fdt_path_offset(fdt, p);
180
181 p = q;
182 }
Gerald Van Baren35748172007-03-31 12:00:56 -0400183
184 while (*p) {
185 const char *q;
186
187 while (*p == '/')
188 p++;
Hans de Goede77d7fff2015-04-20 11:13:37 +0200189 if (*p == '\0' || *p == ':')
Kumar Gala8d04f022007-10-24 11:04:22 -0500190 return offset;
Maxime Ripard6f5f92c2016-07-05 10:26:40 +0200191 q = fdt_path_next_separator(p);
Robert P. J. Day6feed2a2016-05-23 05:40:55 -0400192 if (!q)
Gerald Van Baren35748172007-03-31 12:00:56 -0400193 q = end;
194
195 offset = fdt_subnode_offset_namelen(fdt, offset, p, q-p);
196 if (offset < 0)
197 return offset;
198
199 p = q;
200 }
201
Gerald Van Barenaea03c42007-03-31 14:30:53 -0400202 return offset;
Gerald Van Baren35748172007-03-31 12:00:56 -0400203}
204
Kumar Gala8d04f022007-10-24 11:04:22 -0500205const char *fdt_get_name(const void *fdt, int nodeoffset, int *len)
Gerald Van Baren35748172007-03-31 12:00:56 -0400206{
David Gibson2f08bfa2008-05-20 17:19:11 +1000207 const struct fdt_node_header *nh = _fdt_offset_ptr(fdt, nodeoffset);
Kumar Gala8d04f022007-10-24 11:04:22 -0500208 int err;
209
David Gibson2f08bfa2008-05-20 17:19:11 +1000210 if (((err = fdt_check_header(fdt)) != 0)
211 || ((err = _fdt_check_node_offset(fdt, nodeoffset)) < 0))
212 goto fail;
Kumar Gala8d04f022007-10-24 11:04:22 -0500213
214 if (len)
215 *len = strlen(nh->name);
216
217 return nh->name;
218
219 fail:
220 if (len)
221 *len = err;
222 return NULL;
223}
224
David Gibsond1c63142010-03-09 17:39:14 +1100225int fdt_first_property_offset(const void *fdt, int nodeoffset)
226{
227 int offset;
228
229 if ((offset = _fdt_check_node_offset(fdt, nodeoffset)) < 0)
230 return offset;
231
232 return _nextprop(fdt, offset);
233}
234
235int fdt_next_property_offset(const void *fdt, int offset)
236{
237 if ((offset = _fdt_check_prop_offset(fdt, offset)) < 0)
238 return offset;
239
240 return _nextprop(fdt, offset);
241}
242
243const struct fdt_property *fdt_get_property_by_offset(const void *fdt,
244 int offset,
245 int *lenp)
246{
247 int err;
248 const struct fdt_property *prop;
249
250 if ((err = _fdt_check_prop_offset(fdt, offset)) < 0) {
251 if (lenp)
252 *lenp = err;
253 return NULL;
254 }
255
256 prop = _fdt_offset_ptr(fdt, offset);
257
258 if (lenp)
259 *lenp = fdt32_to_cpu(prop->len);
260
261 return prop;
262}
263
David Gibson02193992008-08-06 14:50:49 +1000264const struct fdt_property *fdt_get_property_namelen(const void *fdt,
David Gibsond1c63142010-03-09 17:39:14 +1100265 int offset,
David Gibson02193992008-08-06 14:50:49 +1000266 const char *name,
267 int namelen, int *lenp)
Kumar Gala8d04f022007-10-24 11:04:22 -0500268{
David Gibsond1c63142010-03-09 17:39:14 +1100269 for (offset = fdt_first_property_offset(fdt, offset);
270 (offset >= 0);
271 (offset = fdt_next_property_offset(fdt, offset))) {
272 const struct fdt_property *prop;
Gerald Van Baren35748172007-03-31 12:00:56 -0400273
David Gibsond1c63142010-03-09 17:39:14 +1100274 if (!(prop = fdt_get_property_by_offset(fdt, offset, lenp))) {
275 offset = -FDT_ERR_INTERNAL;
Gerald Van Baren35748172007-03-31 12:00:56 -0400276 break;
Gerald Van Baren35748172007-03-31 12:00:56 -0400277 }
David Gibsond1c63142010-03-09 17:39:14 +1100278 if (_fdt_string_eq(fdt, fdt32_to_cpu(prop->nameoff),
279 name, namelen))
280 return prop;
281 }
Gerald Van Baren35748172007-03-31 12:00:56 -0400282
Gerald Van Baren35748172007-03-31 12:00:56 -0400283 if (lenp)
David Gibsond1c63142010-03-09 17:39:14 +1100284 *lenp = offset;
Gerald Van Baren35748172007-03-31 12:00:56 -0400285 return NULL;
286}
287
David Gibson02193992008-08-06 14:50:49 +1000288const struct fdt_property *fdt_get_property(const void *fdt,
289 int nodeoffset,
290 const char *name, int *lenp)
291{
292 return fdt_get_property_namelen(fdt, nodeoffset, name,
293 strlen(name), lenp);
294}
295
296const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
297 const char *name, int namelen, int *lenp)
Gerald Van Baren35748172007-03-31 12:00:56 -0400298{
299 const struct fdt_property *prop;
300
David Gibson02193992008-08-06 14:50:49 +1000301 prop = fdt_get_property_namelen(fdt, nodeoffset, name, namelen, lenp);
Robert P. J. Day6feed2a2016-05-23 05:40:55 -0400302 if (!prop)
Gerald Van Baren35748172007-03-31 12:00:56 -0400303 return NULL;
304
Kumar Gala8d04f022007-10-24 11:04:22 -0500305 return prop->data;
Gerald Van Baren35748172007-03-31 12:00:56 -0400306}
Gerald Van Baren3af0d582007-03-31 12:13:43 -0400307
David Gibsond1c63142010-03-09 17:39:14 +1100308const void *fdt_getprop_by_offset(const void *fdt, int offset,
309 const char **namep, int *lenp)
310{
311 const struct fdt_property *prop;
312
313 prop = fdt_get_property_by_offset(fdt, offset, lenp);
314 if (!prop)
315 return NULL;
316 if (namep)
317 *namep = fdt_string(fdt, fdt32_to_cpu(prop->nameoff));
318 return prop->data;
319}
320
David Gibson02193992008-08-06 14:50:49 +1000321const void *fdt_getprop(const void *fdt, int nodeoffset,
322 const char *name, int *lenp)
323{
324 return fdt_getprop_namelen(fdt, nodeoffset, name, strlen(name), lenp);
325}
326
Kumar Gala8d04f022007-10-24 11:04:22 -0500327uint32_t fdt_get_phandle(const void *fdt, int nodeoffset)
Gerald Van Baren3af0d582007-03-31 12:13:43 -0400328{
Kim Phillipsb2ba62a2013-01-16 13:59:50 +0000329 const fdt32_t *php;
Kumar Gala8d04f022007-10-24 11:04:22 -0500330 int len;
331
David Gibson05a22ba2009-11-26 15:37:13 +1100332 /* FIXME: This is a bit sub-optimal, since we potentially scan
333 * over all the properties twice. */
334 php = fdt_getprop(fdt, nodeoffset, "phandle", &len);
335 if (!php || (len != sizeof(*php))) {
336 php = fdt_getprop(fdt, nodeoffset, "linux,phandle", &len);
337 if (!php || (len != sizeof(*php)))
338 return 0;
339 }
Kumar Gala8d04f022007-10-24 11:04:22 -0500340
341 return fdt32_to_cpu(*php);
342}
343
David Gibson9a6cf732008-08-20 16:55:14 +1000344const char *fdt_get_alias_namelen(const void *fdt,
345 const char *name, int namelen)
346{
347 int aliasoffset;
348
349 aliasoffset = fdt_path_offset(fdt, "/aliases");
350 if (aliasoffset < 0)
351 return NULL;
352
353 return fdt_getprop_namelen(fdt, aliasoffset, name, namelen, NULL);
354}
355
356const char *fdt_get_alias(const void *fdt, const char *name)
357{
358 return fdt_get_alias_namelen(fdt, name, strlen(name));
359}
360
Kumar Gala8d04f022007-10-24 11:04:22 -0500361int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen)
362{
David Gibsonae0b5902008-02-12 11:58:31 +1100363 int pdepth = 0, p = 0;
364 int offset, depth, namelen;
Kumar Gala8d04f022007-10-24 11:04:22 -0500365 const char *name;
Gerald Van Baren3af0d582007-03-31 12:13:43 -0400366
David Gibsonfc7758e2008-07-09 14:10:24 +1000367 FDT_CHECK_HEADER(fdt);
Gerald Van Baren3af0d582007-03-31 12:13:43 -0400368
Kumar Gala8d04f022007-10-24 11:04:22 -0500369 if (buflen < 2)
Gerald Van Baren3f9f08c2007-04-14 22:46:41 -0400370 return -FDT_ERR_NOSPACE;
Kumar Gala8d04f022007-10-24 11:04:22 -0500371
David Gibsonae0b5902008-02-12 11:58:31 +1100372 for (offset = 0, depth = 0;
373 (offset >= 0) && (offset <= nodeoffset);
374 offset = fdt_next_node(fdt, offset, &depth)) {
David Gibsonae0b5902008-02-12 11:58:31 +1100375 while (pdepth > depth) {
376 do {
377 p--;
378 } while (buf[p-1] != '/');
379 pdepth--;
380 }
381
David Gibsonbbdbc7c2008-08-29 14:19:13 +1000382 if (pdepth >= depth) {
383 name = fdt_get_name(fdt, offset, &namelen);
384 if (!name)
385 return namelen;
386 if ((p + namelen + 1) <= buflen) {
387 memcpy(buf + p, name, namelen);
388 p += namelen;
389 buf[p++] = '/';
390 pdepth++;
391 }
David Gibsonae0b5902008-02-12 11:58:31 +1100392 }
Kumar Gala8d04f022007-10-24 11:04:22 -0500393
David Gibsonae0b5902008-02-12 11:58:31 +1100394 if (offset == nodeoffset) {
395 if (pdepth < (depth + 1))
396 return -FDT_ERR_NOSPACE;
397
398 if (p > 1) /* special case so that root path is "/", not "" */
Kumar Gala8d04f022007-10-24 11:04:22 -0500399 p--;
David Gibsonae0b5902008-02-12 11:58:31 +1100400 buf[p] = '\0';
David Gibsonbbdbc7c2008-08-29 14:19:13 +1000401 return 0;
Kumar Gala8d04f022007-10-24 11:04:22 -0500402 }
403 }
404
David Gibsonae0b5902008-02-12 11:58:31 +1100405 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
406 return -FDT_ERR_BADOFFSET;
407 else if (offset == -FDT_ERR_BADOFFSET)
408 return -FDT_ERR_BADSTRUCTURE;
Kumar Gala8d04f022007-10-24 11:04:22 -0500409
David Gibsonae0b5902008-02-12 11:58:31 +1100410 return offset; /* error from fdt_next_node() */
Kumar Gala8d04f022007-10-24 11:04:22 -0500411}
412
413int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
414 int supernodedepth, int *nodedepth)
415{
David Gibsonae0b5902008-02-12 11:58:31 +1100416 int offset, depth;
Kumar Gala8d04f022007-10-24 11:04:22 -0500417 int supernodeoffset = -FDT_ERR_INTERNAL;
418
David Gibsonfc7758e2008-07-09 14:10:24 +1000419 FDT_CHECK_HEADER(fdt);
Kumar Gala8d04f022007-10-24 11:04:22 -0500420
421 if (supernodedepth < 0)
422 return -FDT_ERR_NOTFOUND;
423
David Gibsonae0b5902008-02-12 11:58:31 +1100424 for (offset = 0, depth = 0;
425 (offset >= 0) && (offset <= nodeoffset);
426 offset = fdt_next_node(fdt, offset, &depth)) {
427 if (depth == supernodedepth)
428 supernodeoffset = offset;
Kumar Gala8d04f022007-10-24 11:04:22 -0500429
David Gibsonae0b5902008-02-12 11:58:31 +1100430 if (offset == nodeoffset) {
431 if (nodedepth)
432 *nodedepth = depth;
Kumar Gala8d04f022007-10-24 11:04:22 -0500433
David Gibsonae0b5902008-02-12 11:58:31 +1100434 if (supernodedepth > depth)
435 return -FDT_ERR_NOTFOUND;
436 else
437 return supernodeoffset;
Kumar Gala8d04f022007-10-24 11:04:22 -0500438 }
David Gibsonae0b5902008-02-12 11:58:31 +1100439 }
Kumar Gala8d04f022007-10-24 11:04:22 -0500440
David Gibsonae0b5902008-02-12 11:58:31 +1100441 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
442 return -FDT_ERR_BADOFFSET;
443 else if (offset == -FDT_ERR_BADOFFSET)
444 return -FDT_ERR_BADSTRUCTURE;
Kumar Gala8d04f022007-10-24 11:04:22 -0500445
David Gibsonae0b5902008-02-12 11:58:31 +1100446 return offset; /* error from fdt_next_node() */
Kumar Gala8d04f022007-10-24 11:04:22 -0500447}
448
449int fdt_node_depth(const void *fdt, int nodeoffset)
450{
451 int nodedepth;
452 int err;
453
454 err = fdt_supernode_atdepth_offset(fdt, nodeoffset, 0, &nodedepth);
455 if (err)
456 return (err < 0) ? err : -FDT_ERR_INTERNAL;
457 return nodedepth;
458}
459
460int fdt_parent_offset(const void *fdt, int nodeoffset)
461{
462 int nodedepth = fdt_node_depth(fdt, nodeoffset);
463
464 if (nodedepth < 0)
465 return nodedepth;
466 return fdt_supernode_atdepth_offset(fdt, nodeoffset,
467 nodedepth - 1, NULL);
468}
469
470int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
471 const char *propname,
472 const void *propval, int proplen)
473{
David Gibsonae0b5902008-02-12 11:58:31 +1100474 int offset;
Kumar Gala8d04f022007-10-24 11:04:22 -0500475 const void *val;
476 int len;
477
David Gibsonfc7758e2008-07-09 14:10:24 +1000478 FDT_CHECK_HEADER(fdt);
Kumar Gala8d04f022007-10-24 11:04:22 -0500479
Kumar Gala8d04f022007-10-24 11:04:22 -0500480 /* FIXME: The algorithm here is pretty horrible: we scan each
481 * property of a node in fdt_getprop(), then if that didn't
482 * find what we want, we scan over them again making our way
483 * to the next node. Still it's the easiest to implement
484 * approach; performance can come later. */
David Gibsonae0b5902008-02-12 11:58:31 +1100485 for (offset = fdt_next_node(fdt, startoffset, NULL);
486 offset >= 0;
487 offset = fdt_next_node(fdt, offset, NULL)) {
488 val = fdt_getprop(fdt, offset, propname, &len);
489 if (val && (len == proplen)
490 && (memcmp(val, propval, len) == 0))
491 return offset;
492 }
Kumar Gala8d04f022007-10-24 11:04:22 -0500493
David Gibsonae0b5902008-02-12 11:58:31 +1100494 return offset; /* error from fdt_next_node() */
Kumar Gala8d04f022007-10-24 11:04:22 -0500495}
496
497int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle)
498{
David Gibson05a22ba2009-11-26 15:37:13 +1100499 int offset;
500
Kumar Gala8d04f022007-10-24 11:04:22 -0500501 if ((phandle == 0) || (phandle == -1))
502 return -FDT_ERR_BADPHANDLE;
David Gibson05a22ba2009-11-26 15:37:13 +1100503
504 FDT_CHECK_HEADER(fdt);
505
506 /* FIXME: The algorithm here is pretty horrible: we
507 * potentially scan each property of a node in
508 * fdt_get_phandle(), then if that didn't find what
509 * we want, we scan over them again making our way to the next
510 * node. Still it's the easiest to implement approach;
511 * performance can come later. */
512 for (offset = fdt_next_node(fdt, -1, NULL);
513 offset >= 0;
514 offset = fdt_next_node(fdt, offset, NULL)) {
515 if (fdt_get_phandle(fdt, offset) == phandle)
516 return offset;
517 }
518
519 return offset; /* error from fdt_next_node() */
Kumar Gala8d04f022007-10-24 11:04:22 -0500520}
521
Simon Glasse853b322013-01-21 12:59:18 -0800522int fdt_stringlist_contains(const char *strlist, int listlen, const char *str)
Kumar Gala8d04f022007-10-24 11:04:22 -0500523{
524 int len = strlen(str);
David Gibsonef4e8ce2008-07-07 10:10:48 +1000525 const char *p;
Kumar Gala8d04f022007-10-24 11:04:22 -0500526
527 while (listlen >= len) {
528 if (memcmp(str, strlist, len+1) == 0)
529 return 1;
530 p = memchr(strlist, '\0', listlen);
531 if (!p)
532 return 0; /* malformed strlist.. */
533 listlen -= (p-strlist) + 1;
534 strlist = p + 1;
Gerald Van Baren3f9f08c2007-04-14 22:46:41 -0400535 }
536 return 0;
537}
Kumar Gala8d04f022007-10-24 11:04:22 -0500538
Thierry Redingbc4147a2014-08-26 17:33:50 +0200539int fdt_count_strings(const void *fdt, int node, const char *property)
540{
541 int length, i, count = 0;
542 const char *list;
543
544 list = fdt_getprop(fdt, node, property, &length);
545 if (!list)
Masahiro Yamada73e1e792015-07-15 01:08:44 +0900546 return length;
Thierry Redingbc4147a2014-08-26 17:33:50 +0200547
548 for (i = 0; i < length; i++) {
549 int len = strlen(list);
550
551 list += len + 1;
552 i += len;
553 count++;
554 }
555
556 return count;
557}
558
Thierry Redingfc503c12014-08-26 17:33:51 +0200559int fdt_find_string(const void *fdt, int node, const char *property,
560 const char *string)
561{
562 const char *list, *end;
563 int len, index = 0;
564
565 list = fdt_getprop(fdt, node, property, &len);
566 if (!list)
567 return len;
568
569 end = list + len;
570 len = strlen(string);
571
572 while (list < end) {
573 int l = strlen(list);
574
575 if (l == len && memcmp(list, string, len) == 0)
576 return index;
577
578 list += l + 1;
579 index++;
580 }
581
582 return -FDT_ERR_NOTFOUND;
583}
584
Thierry Reding5094eb42014-08-26 17:33:52 +0200585int fdt_get_string_index(const void *fdt, int node, const char *property,
586 int index, const char **output)
587{
588 const char *list;
589 int length, i;
590
591 list = fdt_getprop(fdt, node, property, &length);
592
593 for (i = 0; i < length; i++) {
594 int len = strlen(list);
595
596 if (index == 0) {
597 *output = list;
598 return 0;
599 }
600
601 list += len + 1;
602 i += len;
603 index--;
604 }
605
Masahiro Yamada31f334a2015-07-15 01:08:43 +0900606 return -FDT_ERR_NOTFOUND;
Thierry Reding5094eb42014-08-26 17:33:52 +0200607}
608
609int fdt_get_string(const void *fdt, int node, const char *property,
610 const char **output)
611{
612 return fdt_get_string_index(fdt, node, property, 0, output);
613}
614
Kumar Gala8d04f022007-10-24 11:04:22 -0500615int fdt_node_check_compatible(const void *fdt, int nodeoffset,
616 const char *compatible)
617{
618 const void *prop;
619 int len;
620
621 prop = fdt_getprop(fdt, nodeoffset, "compatible", &len);
622 if (!prop)
623 return len;
Simon Glasse853b322013-01-21 12:59:18 -0800624 if (fdt_stringlist_contains(prop, len, compatible))
Kumar Gala8d04f022007-10-24 11:04:22 -0500625 return 0;
626 else
627 return 1;
628}
629
630int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
631 const char *compatible)
632{
David Gibson11abe452008-02-18 18:09:04 +1100633 int offset, err;
Kumar Gala8d04f022007-10-24 11:04:22 -0500634
David Gibsonfc7758e2008-07-09 14:10:24 +1000635 FDT_CHECK_HEADER(fdt);
Kumar Gala8d04f022007-10-24 11:04:22 -0500636
Kumar Gala8d04f022007-10-24 11:04:22 -0500637 /* FIXME: The algorithm here is pretty horrible: we scan each
638 * property of a node in fdt_node_check_compatible(), then if
639 * that didn't find what we want, we scan over them again
640 * making our way to the next node. Still it's the easiest to
641 * implement approach; performance can come later. */
David Gibsonae0b5902008-02-12 11:58:31 +1100642 for (offset = fdt_next_node(fdt, startoffset, NULL);
643 offset >= 0;
644 offset = fdt_next_node(fdt, offset, NULL)) {
645 err = fdt_node_check_compatible(fdt, offset, compatible);
646 if ((err < 0) && (err != -FDT_ERR_NOTFOUND))
647 return err;
648 else if (err == 0)
649 return offset;
650 }
Kumar Gala8d04f022007-10-24 11:04:22 -0500651
David Gibsonae0b5902008-02-12 11:58:31 +1100652 return offset; /* error from fdt_next_node() */
Kumar Gala8d04f022007-10-24 11:04:22 -0500653}