]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/libfdt.h
Merge branch 'master' of /home/wd/git/u-boot/master/
[karo-tx-uboot.git] / include / libfdt.h
1 #ifndef _LIBFDT_H
2 #define _LIBFDT_H
3 /*
4  * libfdt - Flat Device Tree manipulation
5  * Copyright (C) 2006 David Gibson, IBM Corporation.
6  *
7  * libfdt is dual licensed: you can use it either under the terms of
8  * the GPL, or the BSD license, at your option.
9  *
10  *  a) This library is free software; you can redistribute it and/or
11  *     modify it under the terms of the GNU General Public License as
12  *     published by the Free Software Foundation; either version 2 of the
13  *     License, or (at your option) any later version.
14  *
15  *     This library is distributed in the hope that it will be useful,
16  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *     GNU General Public License for more details.
19  *
20  *     You should have received a copy of the GNU General Public
21  *     License along with this library; if not, write to the Free
22  *     Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
23  *     MA 02110-1301 USA
24  *
25  * Alternatively,
26  *
27  *  b) Redistribution and use in source and binary forms, with or
28  *     without modification, are permitted provided that the following
29  *     conditions are met:
30  *
31  *     1. Redistributions of source code must retain the above
32  *        copyright notice, this list of conditions and the following
33  *        disclaimer.
34  *     2. Redistributions in binary form must reproduce the above
35  *        copyright notice, this list of conditions and the following
36  *        disclaimer in the documentation and/or other materials
37  *        provided with the distribution.
38  *
39  *     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
40  *     CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
41  *     INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
42  *     MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
43  *     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
44  *     CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  *     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  *     NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  *     LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  *     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
49  *     CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
50  *     OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
51  *     EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52  */
53
54 #include <libfdt_env.h>
55 #include <fdt.h>
56
57 #define FDT_FIRST_SUPPORTED_VERSION     0x10
58 #define FDT_LAST_SUPPORTED_VERSION      0x11
59
60 /* Error codes: informative error codes */
61 #define FDT_ERR_NOTFOUND        1
62         /* FDT_ERR_NOTFOUND: The requested node or property does not exist */
63 #define FDT_ERR_EXISTS          2
64         /* FDT_ERR_EXISTS: Attemped to create a node or property which
65          * already exists */
66 #define FDT_ERR_NOSPACE         3
67         /* FDT_ERR_NOSPACE: Operation needed to expand the device
68          * tree, but its buffer did not have sufficient space to
69          * contain the expanded tree. Use fdt_open_into() to move the
70          * device tree to a buffer with more space. */
71
72 /* Error codes: codes for bad parameters */
73 #define FDT_ERR_BADOFFSET       4
74         /* FDT_ERR_BADOFFSET: Function was passed a structure block
75          * offset which is out-of-bounds, or which points to an
76          * unsuitable part of the structure for the operation. */
77 #define FDT_ERR_BADPATH         5
78         /* FDT_ERR_BADPATH: Function was passed a badly formatted path
79          * (e.g. missing a leading / for a function which requires an
80          * absolute path) */
81 #define FDT_ERR_BADPHANDLE      6
82         /* FDT_ERR_BADPHANDLE: Function was passed an invalid phandle
83          * value.  phandle values of 0 and -1 are not permitted. */
84 #define FDT_ERR_BADSTATE        7
85         /* FDT_ERR_BADSTATE: Function was passed an incomplete device
86          * tree created by the sequential-write functions, which is
87          * not sufficiently complete for the requested operation. */
88
89 /* Error codes: codes for bad device tree blobs */
90 #define FDT_ERR_TRUNCATED       8
91         /* FDT_ERR_TRUNCATED: Structure block of the given device tree
92          * ends without an FDT_END tag. */
93 #define FDT_ERR_BADMAGIC        9
94         /* FDT_ERR_BADMAGIC: Given "device tree" appears not to be a
95          * device tree at all - it is missing the flattened device
96          * tree magic number. */
97 #define FDT_ERR_BADVERSION      10
98         /* FDT_ERR_BADVERSION: Given device tree has a version which
99          * can't be handled by the requested operation.  For
100          * read-write functions, this may mean that fdt_open_into() is
101          * required to convert the tree to the expected version. */
102 #define FDT_ERR_BADSTRUCTURE    11
103         /* FDT_ERR_BADSTRUCTURE: Given device tree has a corrupt
104          * structure block or other serious error (e.g. misnested
105          * nodes, or subnodes preceding properties). */
106 #define FDT_ERR_BADLAYOUT       12
107         /* FDT_ERR_BADLAYOUT: For read-write functions, the given
108          * device tree has it's sub-blocks in an order that the
109          * function can't handle (memory reserve map, then structure,
110          * then strings).  Use fdt_open_into() to reorganize the tree
111          * into a form suitable for the read-write operations. */
112
113 /* "Can't happen" error indicating a bug in libfdt */
114 #define FDT_ERR_INTERNAL        13
115         /* FDT_ERR_INTERNAL: libfdt has failed an internal assertion.
116          * Should never be returned, if it is, it indicates a bug in
117          * libfdt itself. */
118
119 #define FDT_ERR_MAX             13
120
121 /**********************************************************************/
122 /* Low-level functions (you probably don't need these)                */
123 /**********************************************************************/
124
125 const void *fdt_offset_ptr(const void *fdt, int offset, int checklen);
126 static inline void *fdt_offset_ptr_w(void *fdt, int offset, int checklen)
127 {
128         return (void *)fdt_offset_ptr(fdt, offset, checklen);
129 }
130
131 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
132
133 /**********************************************************************/
134 /* General functions                                                  */
135 /**********************************************************************/
136
137 #define fdt_get_header(fdt, field) \
138         (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
139 #define fdt_magic(fdt)                  (fdt_get_header(fdt, magic))
140 #define fdt_totalsize(fdt)              (fdt_get_header(fdt, totalsize))
141 #define fdt_off_dt_struct(fdt)          (fdt_get_header(fdt, off_dt_struct))
142 #define fdt_off_dt_strings(fdt)         (fdt_get_header(fdt, off_dt_strings))
143 #define fdt_off_mem_rsvmap(fdt)         (fdt_get_header(fdt, off_mem_rsvmap))
144 #define fdt_version(fdt)                (fdt_get_header(fdt, version))
145 #define fdt_last_comp_version(fdt)      (fdt_get_header(fdt, last_comp_version))
146 #define fdt_boot_cpuid_phys(fdt)        (fdt_get_header(fdt, boot_cpuid_phys))
147 #define fdt_size_dt_strings(fdt)        (fdt_get_header(fdt, size_dt_strings))
148 #define fdt_size_dt_struct(fdt)         (fdt_get_header(fdt, size_dt_struct))
149
150 #define __fdt_set_hdr(name) \
151         static inline void fdt_set_##name(void *fdt, uint32_t val) \
152         { \
153                 struct fdt_header *fdth = fdt; \
154                 fdth->name = cpu_to_fdt32(val); \
155         }
156 __fdt_set_hdr(magic);
157 __fdt_set_hdr(totalsize);
158 __fdt_set_hdr(off_dt_struct);
159 __fdt_set_hdr(off_dt_strings);
160 __fdt_set_hdr(off_mem_rsvmap);
161 __fdt_set_hdr(version);
162 __fdt_set_hdr(last_comp_version);
163 __fdt_set_hdr(boot_cpuid_phys);
164 __fdt_set_hdr(size_dt_strings);
165 __fdt_set_hdr(size_dt_struct);
166 #undef __fdt_set_hdr
167
168 /**
169  * fdt_check_header - sanity check a device tree or possible device tree
170  * @fdt: pointer to data which might be a flattened device tree
171  *
172  * fdt_check_header() checks that the given buffer contains what
173  * appears to be a flattened device tree with sane information in its
174  * header.
175  *
176  * returns:
177  *     0, if the buffer appears to contain a valid device tree
178  *     -FDT_ERR_BADMAGIC,
179  *     -FDT_ERR_BADVERSION,
180  *     -FDT_ERR_BADSTATE, standard meanings, as above
181  */
182 int fdt_check_header(const void *fdt);
183
184 /**
185  * fdt_move - move a device tree around in memory
186  * @fdt: pointer to the device tree to move
187  * @buf: pointer to memory where the device is to be moved
188  * @bufsize: size of the memory space at buf
189  *
190  * fdt_move() relocates, if possible, the device tree blob located at
191  * fdt to the buffer at buf of size bufsize.  The buffer may overlap
192  * with the existing device tree blob at fdt.  Therefore,
193  *     fdt_move(fdt, fdt, fdt_totalsize(fdt))
194  * should always succeed.
195  *
196  * returns:
197  *     0, on success
198  *     -FDT_ERR_NOSPACE, bufsize is insufficient to contain the device tree
199  *     -FDT_ERR_BADMAGIC,
200  *     -FDT_ERR_BADVERSION,
201  *     -FDT_ERR_BADSTATE, standard meanings
202  */
203 int fdt_move(const void *fdt, void *buf, int bufsize);
204
205 /**********************************************************************/
206 /* Read-only functions                                                */
207 /**********************************************************************/
208
209 /**
210  * fdt_string - retreive a string from the strings block of a device tree
211  * @fdt: pointer to the device tree blob
212  * @stroffset: offset of the string within the strings block (native endian)
213  *
214  * fdt_string() retrieves a pointer to a single string from the
215  * strings block of the device tree blob at fdt.
216  *
217  * returns:
218  *     a pointer to the string, on success
219  *     NULL, if stroffset is out of bounds
220  */
221 const char *fdt_string(const void *fdt, int stroffset);
222
223 /**
224  * fdt_num_mem_rsv - retreive the number of memory reserve map entries
225  * @fdt: pointer to the device tree blob
226  *
227  * Returns the number of entries in the device tree blob's memory
228  * reservation map.  This does not include the terminating 0,0 entry
229  * or any other (0,0) entries reserved for expansion.
230  *
231  * returns:
232  *     the number of entries
233  */
234 int fdt_num_mem_rsv(const void *fdt);
235
236 /**
237  * fdt_get_mem_rsv - retreive one memory reserve map entry
238  * @fdt: pointer to the device tree blob
239  * @address, @size: pointers to 64-bit variables
240  *
241  * On success, *address and *size will contain the address and size of
242  * the n-th reserve map entry from the device tree blob, in
243  * native-endian format.
244  *
245  * returns:
246  *     0, on success
247  *     -FDT_ERR_BADMAGIC,
248  *     -FDT_ERR_BADVERSION,
249  *     -FDT_ERR_BADSTATE, standard meanings
250  */
251 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size);
252
253 /**
254  * fdt_subnode_offset_namelen - find a subnode based on substring
255  * @fdt: pointer to the device tree blob
256  * @parentoffset: structure block offset of a node
257  * @name: name of the subnode to locate
258  * @namelen: number of characters of name to consider
259  *
260  * Identical to fdt_subnode_offset(), but only examine the first
261  * namelen characters of name for matching the subnode name.  This is
262  * useful for finding subnodes based on a portion of a larger string,
263  * such as a full path.
264  */
265 int fdt_subnode_offset_namelen(const void *fdt, int parentoffset,
266                                const char *name, int namelen);
267 /**
268  * fdt_subnode_offset - find a subnode of a given node
269  * @fdt: pointer to the device tree blob
270  * @parentoffset: structure block offset of a node
271  * @name: name of the subnode to locate
272  *
273  * fdt_subnode_offset() finds a subnode of the node at structure block
274  * offset parentoffset with the given name.  name may include a unit
275  * address, in which case fdt_subnode_offset() will find the subnode
276  * with that unit address, or the unit address may be omitted, in
277  * which case fdt_subnode_offset() will find an arbitrary subnode
278  * whose name excluding unit address matches the given name.
279  *
280  * returns:
281  *      structure block offset of the requested subnode (>=0), on success
282  *      -FDT_ERR_NOTFOUND, if the requested subnode does not exist
283  *      -FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE tag
284  *      -FDT_ERR_BADMAGIC,
285  *      -FDT_ERR_BADVERSION,
286  *      -FDT_ERR_BADSTATE,
287  *      -FDT_ERR_BADSTRUCTURE,
288  *      -FDT_ERR_TRUNCATED, standard meanings.
289  */
290 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
291
292 /**
293  * fdt_path_offset - find a tree node by its full path
294  * @fdt: pointer to the device tree blob
295  * @path: full path of the node to locate
296  *
297  * fdt_path_offset() finds a node of a given path in the device tree.
298  * Each path component may omit the unit address portion, but the
299  * results of this are undefined if any such path component is
300  * ambiguous (that is if there are multiple nodes at the relevant
301  * level matching the given component, differentiated only by unit
302  * address).
303  *
304  * returns:
305  *      structure block offset of the node with the requested path (>=0), on success
306  *      -FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
307  *      -FDT_ERR_NOTFOUND, if the requested node does not exist
308  *      -FDT_ERR_BADMAGIC,
309  *      -FDT_ERR_BADVERSION,
310  *      -FDT_ERR_BADSTATE,
311  *      -FDT_ERR_BADSTRUCTURE,
312  *      -FDT_ERR_TRUNCATED, standard meanings.
313  */
314 int fdt_path_offset(const void *fdt, const char *path);
315
316 /**
317  * fdt_get_name - retreive the name of a given node
318  * @fdt: pointer to the device tree blob
319  * @nodeoffset: structure block offset of the starting node
320  * @lenp: pointer to an integer variable (will be overwritten) or NULL
321  *
322  * fdt_get_name() retrieves the name (including unit address) of the
323  * device tree node at structure block offset nodeoffset.  If lenp is
324  * non-NULL, the length of this name is also returned, in the integer
325  * pointed to by lenp.
326  *
327  * returns:
328  *      pointer to the node's name, on success
329  *              If lenp is non-NULL, *lenp contains the length of that name (>=0)
330  *      NULL, on error
331  *              if lenp is non-NULL *lenp contains an error code (<0):
332  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
333  *              -FDT_ERR_BADMAGIC,
334  *              -FDT_ERR_BADVERSION,
335  *              -FDT_ERR_BADSTATE, standard meanings
336  */
337 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
338
339 /**
340  * fdt_get_property - find a given property in a given node
341  * @fdt: pointer to the device tree blob
342  * @nodeoffset: offset of the node whose property to find
343  * @name: name of the property to find
344  * @lenp: pointer to an integer variable (will be overwritten) or NULL
345  *
346  * fdt_get_property() retrieves a pointer to the fdt_property
347  * structure within the device tree blob corresponding to the property
348  * named 'name' of the node at offset nodeoffset.  If lenp is
349  * non-NULL, the length of the property value also returned, in the
350  * integer pointed to by lenp.
351  *
352  * returns:
353  *      pointer to the structure representing the property
354  *              if lenp is non-NULL, *lenp contains the length of the property
355  *              value (>=0)
356  *      NULL, on error
357  *              if lenp is non-NULL, *lenp contains an error code (<0):
358  *              -FDT_ERR_NOTFOUND, node does not have named property
359  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
360  *              -FDT_ERR_BADMAGIC,
361  *              -FDT_ERR_BADVERSION,
362  *              -FDT_ERR_BADSTATE,
363  *              -FDT_ERR_BADSTRUCTURE,
364  *              -FDT_ERR_TRUNCATED, standard meanings
365  */
366 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
367                                             const char *name, int *lenp);
368 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset,
369                                                       const char *name,
370                                                       int *lenp)
371 {
372         return (struct fdt_property *)fdt_get_property(fdt, nodeoffset,
373                                                        name, lenp);
374 }
375
376 /**
377  * fdt_getprop - retrieve the value of a given property
378  * @fdt: pointer to the device tree blob
379  * @nodeoffset: offset of the node whose property to find
380  * @name: name of the property to find
381  * @lenp: pointer to an integer variable (will be overwritten) or NULL
382  *
383  * fdt_getprop() retrieves a pointer to the value of the property
384  * named 'name' of the node at offset nodeoffset (this will be a
385  * pointer to within the device blob itself, not a copy of the value).
386  * If lenp is non-NULL, the length of the property value also
387  * returned, in the integer pointed to by lenp.
388  *
389  * returns:
390  *      pointer to the property's value
391  *              if lenp is non-NULL, *lenp contains the length of the property
392  *              value (>=0)
393  *      NULL, on error
394  *              if lenp is non-NULL, *lenp contains an error code (<0):
395  *              -FDT_ERR_NOTFOUND, node does not have named property
396  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
397  *              -FDT_ERR_BADMAGIC,
398  *              -FDT_ERR_BADVERSION,
399  *              -FDT_ERR_BADSTATE,
400  *              -FDT_ERR_BADSTRUCTURE,
401  *              -FDT_ERR_TRUNCATED, standard meanings
402  */
403 const void *fdt_getprop(const void *fdt, int nodeoffset,
404                         const char *name, int *lenp);
405 static inline void *fdt_getprop_w(void *fdt, int nodeoffset,
406                                   const char *name, int *lenp)
407 {
408         return (void *)fdt_getprop(fdt, nodeoffset, name, lenp);
409 }
410
411 /**
412  * fdt_get_phandle - retreive the phandle of a given node
413  * @fdt: pointer to the device tree blob
414  * @nodeoffset: structure block offset of the node
415  *
416  * fdt_get_phandle() retrieves the phandle of the device tree node at
417  * structure block offset nodeoffset.
418  *
419  * returns:
420  *      the phandle of the node at nodeoffset, on succes (!= 0, != -1)
421  *      0, if the node has no phandle, or another error occurs
422  */
423 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
424
425 /**
426  * fdt_get_path - determine the full path of a node
427  * @fdt: pointer to the device tree blob
428  * @nodeoffset: offset of the node whose path to find
429  * @buf: character buffer to contain the returned path (will be overwritten)
430  * @buflen: size of the character buffer at buf
431  *
432  * fdt_get_path() computes the full path of the node at offset
433  * nodeoffset, and records that path in the buffer at buf.
434  *
435  * NOTE: This function is expensive, as it must scan the device tree
436  * structure from the start to nodeoffset.
437  *
438  * returns:
439  *      0, on success
440  *              buf contains the absolute path of the node at
441  *              nodeoffset, as a NUL-terminated string.
442  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
443  *      -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
444  *              characters and will not fit in the given buffer.
445  *      -FDT_ERR_BADMAGIC,
446  *      -FDT_ERR_BADVERSION,
447  *      -FDT_ERR_BADSTATE,
448  *      -FDT_ERR_BADSTRUCTURE, standard meanings
449  */
450 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
451
452 /**
453  * fdt_supernode_atdepth_offset - find a specific ancestor of a node
454  * @fdt: pointer to the device tree blob
455  * @nodeoffset: offset of the node whose parent to find
456  * @supernodedepth: depth of the ancestor to find
457  * @nodedepth: pointer to an integer variable (will be overwritten) or NULL
458  *
459  * fdt_supernode_atdepth_offset() finds an ancestor of the given node
460  * at a specific depth from the root (where the root itself has depth
461  * 0, its immediate subnodes depth 1 and so forth).  So
462  *      fdt_supernode_atdepth_offset(fdt, nodeoffset, 0, NULL);
463  * will always return 0, the offset of the root node.  If the node at
464  * nodeoffset has depth D, then:
465  *      fdt_supernode_atdepth_offset(fdt, nodeoffset, D, NULL);
466  * will return nodeoffset itself.
467  *
468  * NOTE: This function is expensive, as it must scan the device tree
469  * structure from the start to nodeoffset.
470  *
471  * returns:
472
473  *      structure block offset of the node at node offset's ancestor
474  *              of depth supernodedepth (>=0), on success
475  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
476 *       -FDT_ERR_NOTFOUND, supernodedepth was greater than the depth of nodeoffset
477  *      -FDT_ERR_BADMAGIC,
478  *      -FDT_ERR_BADVERSION,
479  *      -FDT_ERR_BADSTATE,
480  *      -FDT_ERR_BADSTRUCTURE, standard meanings
481  */
482 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
483                                  int supernodedepth, int *nodedepth);
484
485 /**
486  * fdt_node_depth - find the depth of a given node
487  * @fdt: pointer to the device tree blob
488  * @nodeoffset: offset of the node whose parent to find
489  *
490  * fdt_node_depth() finds the depth of a given node.  The root node
491  * has depth 0, its immediate subnodes depth 1 and so forth.
492  *
493  * NOTE: This function is expensive, as it must scan the device tree
494  * structure from the start to nodeoffset.
495  *
496  * returns:
497  *      depth of the node at nodeoffset (>=0), on success
498  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
499  *      -FDT_ERR_BADMAGIC,
500  *      -FDT_ERR_BADVERSION,
501  *      -FDT_ERR_BADSTATE,
502  *      -FDT_ERR_BADSTRUCTURE, standard meanings
503  */
504 int fdt_node_depth(const void *fdt, int nodeoffset);
505
506 /**
507  * fdt_parent_offset - find the parent of a given node
508  * @fdt: pointer to the device tree blob
509  * @nodeoffset: offset of the node whose parent to find
510  *
511  * fdt_parent_offset() locates the parent node of a given node (that
512  * is, it finds the offset of the node which contains the node at
513  * nodeoffset as a subnode).
514  *
515  * NOTE: This function is expensive, as it must scan the device tree
516  * structure from the start to nodeoffset, *twice*.
517  *
518  * returns:
519  *      stucture block offset of the parent of the node at nodeoffset
520  *              (>=0), on success
521  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
522  *      -FDT_ERR_BADMAGIC,
523  *      -FDT_ERR_BADVERSION,
524  *      -FDT_ERR_BADSTATE,
525  *      -FDT_ERR_BADSTRUCTURE, standard meanings
526  */
527 int fdt_parent_offset(const void *fdt, int nodeoffset);
528
529 /**
530  * fdt_node_offset_by_prop_value - find nodes with a given property value
531  * @fdt: pointer to the device tree blob
532  * @startoffset: only find nodes after this offset
533  * @propname: property name to check
534  * @propval: property value to search for
535  * @proplen: length of the value in propval
536  *
537  * fdt_node_offset_by_prop_value() returns the offset of the first
538  * node after startoffset, which has a property named propname whose
539  * value is of length proplen and has value equal to propval; or if
540  * startoffset is -1, the very first such node in the tree.
541  *
542  * To iterate through all nodes matching the criterion, the following
543  * idiom can be used:
544  *      offset = fdt_node_offset_by_prop_value(fdt, -1, propname,
545  *                                             propval, proplen);
546  *      while (offset != -FDT_ERR_NOTFOUND) {
547  *              ... other code here ...
548  *              offset = fdt_node_offset_by_prop_value(fdt, offset, propname,
549  *                                                     propval, proplen);
550  *      }
551  *
552  * Note the -1 in the first call to the function, if 0 is used here
553  * instead, the function will never locate the root node, even if it
554  * matches the criterion.
555  *
556  * returns:
557  *      structure block offset of the located node (>= 0, >startoffset),
558  *               on success
559  *      -FDT_ERR_NOTFOUND, no node matching the criterion exists in the
560  *              tree after startoffset
561  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
562  *      -FDT_ERR_BADMAGIC,
563  *      -FDT_ERR_BADVERSION,
564  *      -FDT_ERR_BADSTATE,
565  *      -FDT_ERR_BADSTRUCTURE, standard meanings
566  */
567 int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
568                                   const char *propname,
569                                   const void *propval, int proplen);
570
571 /**
572  * fdt_node_offset_by_phandle - find the node with a given phandle
573  * @fdt: pointer to the device tree blob
574  * @phandle: phandle value
575  *
576  * fdt_node_offset_by_prop_value() returns the offset of the node
577  * which has the given phandle value.  If there is more than one node
578  * in the tree with the given phandle (an invalid tree), results are
579  * undefined.
580  *
581  * returns:
582  *      structure block offset of the located node (>= 0), on success
583  *      -FDT_ERR_NOTFOUND, no node with that phandle exists
584  *      -FDT_ERR_BADPHANDLE, given phandle value was invalid (0 or -1)
585  *      -FDT_ERR_BADMAGIC,
586  *      -FDT_ERR_BADVERSION,
587  *      -FDT_ERR_BADSTATE,
588  *      -FDT_ERR_BADSTRUCTURE, standard meanings
589  */
590 int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle);
591
592 /**
593  * fdt_node_check_compatible: check a node's compatible property
594  * @fdt: pointer to the device tree blob
595  * @nodeoffset: offset of a tree node
596  * @compatible: string to match against
597  *
598  *
599  * fdt_node_check_compatible() returns 0 if the given node contains a
600  * 'compatible' property with the given string as one of its elements,
601  * it returns non-zero otherwise, or on error.
602  *
603  * returns:
604  *      0, if the node has a 'compatible' property listing the given string
605  *      1, if the node has a 'compatible' property, but it does not list
606  *              the given string
607  *      -FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
608  *      -FDT_ERR_BADOFFSET, if nodeoffset does not refer to a BEGIN_NODE tag
609  *      -FDT_ERR_BADMAGIC,
610  *      -FDT_ERR_BADVERSION,
611  *      -FDT_ERR_BADSTATE,
612  *      -FDT_ERR_BADSTRUCTURE, standard meanings
613  */
614 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
615                               const char *compatible);
616
617 /**
618  * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
619  * @fdt: pointer to the device tree blob
620  * @startoffset: only find nodes after this offset
621  * @compatible: 'compatible' string to match against
622  *
623  * fdt_node_offset_by_compatible() returns the offset of the first
624  * node after startoffset, which has a 'compatible' property which
625  * lists the given compatible string; or if startoffset is -1, the
626  * very first such node in the tree.
627  *
628  * To iterate through all nodes matching the criterion, the following
629  * idiom can be used:
630  *      offset = fdt_node_offset_by_compatible(fdt, -1, compatible);
631  *      while (offset != -FDT_ERR_NOTFOUND) {
632  *              ... other code here ...
633  *              offset = fdt_node_offset_by_compatible(fdt, offset, compatible);
634  *      }
635  *
636  * Note the -1 in the first call to the function, if 0 is used here
637  * instead, the function will never locate the root node, even if it
638  * matches the criterion.
639  *
640  * returns:
641  *      structure block offset of the located node (>= 0, >startoffset),
642  *               on success
643  *      -FDT_ERR_NOTFOUND, no node matching the criterion exists in the
644  *              tree after startoffset
645  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
646  *      -FDT_ERR_BADMAGIC,
647  *      -FDT_ERR_BADVERSION,
648  *      -FDT_ERR_BADSTATE,
649  *      -FDT_ERR_BADSTRUCTURE, standard meanings
650  */
651 int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
652                                   const char *compatible);
653
654 /**********************************************************************/
655 /* Write-in-place functions                                           */
656 /**********************************************************************/
657
658 /**
659  * fdt_setprop_inplace - change a property's value, but not its size
660  * @fdt: pointer to the device tree blob
661  * @nodeoffset: offset of the node whose property to change
662  * @name: name of the property to change
663  * @val: pointer to data to replace the property value with
664  * @len: length of the property value
665  *
666  * fdt_setprop_inplace() replaces the value of a given property with
667  * the data in val, of length len.  This function cannot change the
668  * size of a property, and so will only work if len is equal to the
669  * current length of the property.
670  *
671  * This function will alter only the bytes in the blob which contain
672  * the given property value, and will not alter or move any other part
673  * of the tree.
674  *
675  * returns:
676  *      0, on success
677  *      -FDT_ERR_NOSPACE, if len is not equal to the property's current length
678  *      -FDT_ERR_NOTFOUND, node does not have the named property
679  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
680  *      -FDT_ERR_BADMAGIC,
681  *      -FDT_ERR_BADVERSION,
682  *      -FDT_ERR_BADSTATE,
683  *      -FDT_ERR_BADSTRUCTURE,
684  *      -FDT_ERR_TRUNCATED, standard meanings
685  */
686 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
687                         const void *val, int len);
688
689 /**
690  * fdt_setprop_inplace_cell - change the value of a single-cell property
691  * @fdt: pointer to the device tree blob
692  * @nodeoffset: offset of the node whose property to change
693  * @name: name of the property to change
694  * @val: cell (32-bit integer) value to replace the property with
695  *
696  * fdt_setprop_inplace_cell() replaces the value of a given property
697  * with the 32-bit integer cell value in val, converting val to
698  * big-endian if necessary.  This function cannot change the size of a
699  * property, and so will only work if the property already exists and
700  * has length 4.
701  *
702  * This function will alter only the bytes in the blob which contain
703  * the given property value, and will not alter or move any other part
704  * of the tree.
705  *
706  * returns:
707  *      0, on success
708  *      -FDT_ERR_NOSPACE, if the property's length is not equal to 4
709   *     -FDT_ERR_NOTFOUND, node does not have the named property
710  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
711  *      -FDT_ERR_BADMAGIC,
712  *      -FDT_ERR_BADVERSION,
713  *      -FDT_ERR_BADSTATE,
714  *      -FDT_ERR_BADSTRUCTURE,
715  *      -FDT_ERR_TRUNCATED, standard meanings
716  */
717 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset,
718                                            const char *name, uint32_t val)
719 {
720         val = cpu_to_fdt32(val);
721         return fdt_setprop_inplace(fdt, nodeoffset, name, &val, sizeof(val));
722 }
723
724 /**
725  * fdt_nop_property - replace a property with nop tags
726  * @fdt: pointer to the device tree blob
727  * @nodeoffset: offset of the node whose property to nop
728  * @name: name of the property to nop
729  *
730  * fdt_nop_property() will replace a given property's representation
731  * in the blob with FDT_NOP tags, effectively removing it from the
732  * tree.
733  *
734  * This function will alter only the bytes in the blob which contain
735  * the property, and will not alter or move any other part of the
736  * tree.
737  *
738  * returns:
739  *      0, on success
740  *      -FDT_ERR_NOTFOUND, node does not have the named property
741  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
742  *      -FDT_ERR_BADMAGIC,
743  *      -FDT_ERR_BADVERSION,
744  *      -FDT_ERR_BADSTATE,
745  *      -FDT_ERR_BADSTRUCTURE,
746  *      -FDT_ERR_TRUNCATED, standard meanings
747  */
748 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
749
750 /**
751  * fdt_nop_node - replace a node (subtree) with nop tags
752  * @fdt: pointer to the device tree blob
753  * @nodeoffset: offset of the node to nop
754  *
755  * fdt_nop_node() will replace a given node's representation in the
756  * blob, including all its subnodes, if any, with FDT_NOP tags,
757  * effectively removing it from the tree.
758  *
759  * This function will alter only the bytes in the blob which contain
760  * the node and its properties and subnodes, and will not alter or
761  * move any other part of the tree.
762  *
763  * returns:
764  *      0, on success
765  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
766  *      -FDT_ERR_BADMAGIC,
767  *      -FDT_ERR_BADVERSION,
768  *      -FDT_ERR_BADSTATE,
769  *      -FDT_ERR_BADSTRUCTURE,
770  *      -FDT_ERR_TRUNCATED, standard meanings
771  */
772 int fdt_nop_node(void *fdt, int nodeoffset);
773
774 /**********************************************************************/
775 /* Sequential write functions                                         */
776 /**********************************************************************/
777
778 int fdt_create(void *buf, int bufsize);
779 int fdt_add_reservemap_entry(void *fdt, uint64_t addr, uint64_t size);
780 int fdt_finish_reservemap(void *fdt);
781 int fdt_begin_node(void *fdt, const char *name);
782 int fdt_property(void *fdt, const char *name, const void *val, int len);
783 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val)
784 {
785         val = cpu_to_fdt32(val);
786         return fdt_property(fdt, name, &val, sizeof(val));
787 }
788 #define fdt_property_string(fdt, name, str) \
789         fdt_property(fdt, name, str, strlen(str)+1)
790 int fdt_end_node(void *fdt);
791 int fdt_finish(void *fdt);
792
793 /**********************************************************************/
794 /* Read-write functions                                               */
795 /**********************************************************************/
796
797 int fdt_open_into(const void *fdt, void *buf, int bufsize);
798 int fdt_pack(void *fdt);
799
800 /**
801  * fdt_add_mem_rsv - add one memory reserve map entry
802  * @fdt: pointer to the device tree blob
803  * @addres, @size: 64-bit values (native endian)
804  *
805  * Adds a reserve map entry to the given blob reserving a region at
806  * address address of length size.
807  *
808  * This function will insert data into the reserve map and will
809  * therfore change the indexes of some entries in the table.
810  *
811  * returns:
812  *      0, on success
813  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
814  *              contain the new reservation entry
815  *      -FDT_ERR_BADMAGIC,
816  *      -FDT_ERR_BADVERSION,
817  *      -FDT_ERR_BADSTATE,
818  *      -FDT_ERR_BADSTRUCTURE,
819  *      -FDT_ERR_BADLAYOUT,
820  *      -FDT_ERR_TRUNCATED, standard meanings
821  */
822 int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size);
823
824 /**
825  * fdt_del_mem_rsv - remove a memory reserve map entry
826  * @fdt: pointer to the device tree blob
827  * @n: entry to remove
828  *
829  * fdt_del_mem_rsv() removes the n-th memory reserve map entry from
830  * the blob.
831  *
832  * This function will delete data from the reservation table and will
833  * therfore change the indexes of some entries in the table.
834  *
835  * returns:
836  *      0, on success
837  *      -FDT_ERR_NOTFOUND, there is no entry of the given index (i.e. there
838  *              are less than n+1 reserve map entries)
839  *      -FDT_ERR_BADMAGIC,
840  *      -FDT_ERR_BADVERSION,
841  *      -FDT_ERR_BADSTATE,
842  *      -FDT_ERR_BADSTRUCTURE,
843  *      -FDT_ERR_BADLAYOUT,
844  *      -FDT_ERR_TRUNCATED, standard meanings
845  */
846 int fdt_del_mem_rsv(void *fdt, int n);
847
848 /**
849  * fdt_setprop - create or change a property
850  * @fdt: pointer to the device tree blob
851  * @nodeoffset: offset of the node whose property to change
852  * @name: name of the property to change
853  * @val: pointer to data to set the property value to
854  * @len: length of the property value
855  *
856  * fdt_setprop() sets the value of the named property in the given
857  * node to the given value and length, creeating the property if it
858  * does not already exist.
859  *
860  * This function may insert or delete data from the blob, and will
861  * therefore change the offsets of some existing nodes.
862  *
863  * returns:
864  *      0, on success
865  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
866  *              contain the new property value
867  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
868  *      -FDT_ERR_BADLAYOUT,
869  *      -FDT_ERR_BADMAGIC,
870  *      -FDT_ERR_BADVERSION,
871  *      -FDT_ERR_BADSTATE,
872  *      -FDT_ERR_BADSTRUCTURE,
873  *      -FDT_ERR_BADLAYOUT,
874  *      -FDT_ERR_TRUNCATED, standard meanings
875  */
876 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
877                 const void *val, int len);
878
879 /**
880  * fdt_setprop_cell - set a property to a single cell value
881  * @fdt: pointer to the device tree blob
882  * @nodeoffset: offset of the node whose property to change
883  * @name: name of the property to change
884  * @val: 32-bit integer value for the property (native endian)
885  *
886  * fdt_setprop_cell() sets the value of the named property in the
887  * given node to the given cell value (converting to big-endian if
888  * necessary), or creates a new property with that value if it does
889  * not already exist.
890  *
891  * This function may insert or delete data from the blob, and will
892  * therefore change the offsets of some existing nodes.
893  *
894  * returns:
895  *      0, on success
896  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
897  *              contain the new property value
898  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
899  *      -FDT_ERR_BADLAYOUT,
900  *      -FDT_ERR_BADMAGIC,
901  *      -FDT_ERR_BADVERSION,
902  *      -FDT_ERR_BADSTATE,
903  *      -FDT_ERR_BADSTRUCTURE,
904  *      -FDT_ERR_BADLAYOUT,
905  *      -FDT_ERR_TRUNCATED, standard meanings
906  */
907 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name,
908                                    uint32_t val)
909 {
910         val = cpu_to_fdt32(val);
911         return fdt_setprop(fdt, nodeoffset, name, &val, sizeof(val));
912 }
913
914 /**
915  * fdt_setprop_string - set a property to a string value
916  * @fdt: pointer to the device tree blob
917  * @nodeoffset: offset of the node whose property to change
918  * @name: name of the property to change
919  * @str: string value for the property
920  *
921  * fdt_setprop_string() sets the value of the named property in the
922  * given node to the given string value (using the length of the
923  * string to determine the new length of the property), or creates a
924  * new property with that value if it does not already exist.
925  *
926  * This function may insert or delete data from the blob, and will
927  * therefore change the offsets of some existing nodes.
928  *
929  * returns:
930  *      0, on success
931  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
932  *              contain the new property value
933  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
934  *      -FDT_ERR_BADLAYOUT,
935  *      -FDT_ERR_BADMAGIC,
936  *      -FDT_ERR_BADVERSION,
937  *      -FDT_ERR_BADSTATE,
938  *      -FDT_ERR_BADSTRUCTURE,
939  *      -FDT_ERR_BADLAYOUT,
940  *      -FDT_ERR_TRUNCATED, standard meanings
941  */
942 #define fdt_setprop_string(fdt, nodeoffset, name, str) \
943         fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
944
945 /**
946  * fdt_delprop - delete a property
947  * @fdt: pointer to the device tree blob
948  * @nodeoffset: offset of the node whose property to nop
949  * @name: name of the property to nop
950  *
951  * fdt_del_property() will delete the given property.
952  *
953  * This function will delete data from the blob, and will therefore
954  * change the offsets of some existing nodes.
955  *
956  * returns:
957  *      0, on success
958  *      -FDT_ERR_NOTFOUND, node does not have the named property
959  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
960  *      -FDT_ERR_BADLAYOUT,
961  *      -FDT_ERR_BADMAGIC,
962  *      -FDT_ERR_BADVERSION,
963  *      -FDT_ERR_BADSTATE,
964  *      -FDT_ERR_BADSTRUCTURE,
965  *      -FDT_ERR_TRUNCATED, standard meanings
966  */
967 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
968
969 /**
970  * fdt_add_subnode_namelen - creates a new node based on substring
971  * @fdt: pointer to the device tree blob
972  * @parentoffset: structure block offset of a node
973  * @name: name of the subnode to locate
974  * @namelen: number of characters of name to consider
975  *
976  * Identical to fdt_add_subnode(), but use only the first namelen
977  * characters of name as the name of the new node.  This is useful for
978  * creating subnodes based on a portion of a larger string, such as a
979  * full path.
980  */
981 int fdt_add_subnode_namelen(void *fdt, int parentoffset,
982                             const char *name, int namelen);
983
984 /**
985  * fdt_add_subnode - creates a new node
986  * @fdt: pointer to the device tree blob
987  * @parentoffset: structure block offset of a node
988  * @name: name of the subnode to locate
989  *
990  * fdt_add_subnode() creates a new node as a subnode of the node at
991  * structure block offset parentoffset, with the given name (which
992  * should include the unit address, if any).
993  *
994  * This function will insert data into the blob, and will therefore
995  * change the offsets of some existing nodes.
996
997  * returns:
998  *      structure block offset of the created nodeequested subnode (>=0), on success
999  *      -FDT_ERR_NOTFOUND, if the requested subnode does not exist
1000  *      -FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE tag
1001  *      -FDT_ERR_EXISTS, if the node at parentoffset already has a subnode of
1002  *              the given name
1003  *      -FDT_ERR_NOSPACE, if there is insufficient free space in the
1004  *              blob to contain the new node
1005  *      -FDT_ERR_NOSPACE
1006  *      -FDT_ERR_BADLAYOUT
1007  *      -FDT_ERR_BADMAGIC,
1008  *      -FDT_ERR_BADVERSION,
1009  *      -FDT_ERR_BADSTATE,
1010  *      -FDT_ERR_BADSTRUCTURE,
1011  *      -FDT_ERR_TRUNCATED, standard meanings.
1012  */
1013 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);
1014
1015 /**
1016  * fdt_del_node - delete a node (subtree)
1017  * @fdt: pointer to the device tree blob
1018  * @nodeoffset: offset of the node to nop
1019  *
1020  * fdt_del_node() will remove the given node, including all its
1021  * subnodes if any, from the blob.
1022  *
1023  * This function will delete data from the blob, and will therefore
1024  * change the offsets of some existing nodes.
1025  *
1026  * returns:
1027  *      0, on success
1028  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1029  *      -FDT_ERR_BADLAYOUT,
1030  *      -FDT_ERR_BADMAGIC,
1031  *      -FDT_ERR_BADVERSION,
1032  *      -FDT_ERR_BADSTATE,
1033  *      -FDT_ERR_BADSTRUCTURE,
1034  *      -FDT_ERR_TRUNCATED, standard meanings
1035  */
1036 int fdt_del_node(void *fdt, int nodeoffset);
1037
1038 /**********************************************************************/
1039 /* Debugging / informational functions                                */
1040 /**********************************************************************/
1041
1042 const char *fdt_strerror(int errval);
1043
1044 #endif /* _LIBFDT_H */