Merge branch 'next'
[platform/kernel/u-boot.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 /* Errors in device tree content */
120 #define FDT_ERR_BADNCELLS       14
121         /* FDT_ERR_BADNCELLS: Device tree has a #address-cells, #size-cells
122          * or similar property with a bad format or value */
123
124 #define FDT_ERR_TOODEEP         15
125         /* FDT_ERR_TOODEEP: The depth of a node has exceeded the internal
126          * libfdt limit. This can happen if you have more than
127          * FDT_MAX_DEPTH nested nodes. */
128
129 #define FDT_ERR_MAX             15
130
131 /**********************************************************************/
132 /* Low-level functions (you probably don't need these)                */
133 /**********************************************************************/
134
135 const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int checklen);
136 static inline void *fdt_offset_ptr_w(void *fdt, int offset, int checklen)
137 {
138         return (void *)(uintptr_t)fdt_offset_ptr(fdt, offset, checklen);
139 }
140
141 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
142
143 /**********************************************************************/
144 /* Traversal functions                                                */
145 /**********************************************************************/
146
147 int fdt_next_node(const void *fdt, int offset, int *depth);
148
149 /**
150  * fdt_first_subnode() - get offset of first direct subnode
151  *
152  * @fdt:        FDT blob
153  * @offset:     Offset of node to check
154  * @return offset of first subnode, or -FDT_ERR_NOTFOUND if there is none
155  */
156 int fdt_first_subnode(const void *fdt, int offset);
157
158 /**
159  * fdt_next_subnode() - get offset of next direct subnode
160  *
161  * After first calling fdt_first_subnode(), call this function repeatedly to
162  * get direct subnodes of a parent node.
163  *
164  * @fdt:        FDT blob
165  * @offset:     Offset of previous subnode
166  * @return offset of next subnode, or -FDT_ERR_NOTFOUND if there are no more
167  * subnodes
168  */
169 int fdt_next_subnode(const void *fdt, int offset);
170
171 /**
172  * fdt_for_each_subnode - iterate over all subnodes of a parent
173  *
174  * This is actually a wrapper around a for loop and would be used like so:
175  *
176  *      fdt_for_each_subnode(fdt, node, parent) {
177  *              ...
178  *              use node
179  *              ...
180  *      }
181  *
182  * Note that this is implemented as a macro and node is used as iterator in
183  * the loop. It should therefore be a locally allocated variable. The parent
184  * variable on the other hand is never modified, so it can be constant or
185  * even a literal.
186  *
187  * @fdt:        FDT blob (const void *)
188  * @node:       child node (int)
189  * @parent:     parent node (int)
190  */
191 #define fdt_for_each_subnode(fdt, node, parent)         \
192         for (node = fdt_first_subnode(fdt, parent);     \
193              node >= 0;                                 \
194              node = fdt_next_subnode(fdt, node))
195
196 /**********************************************************************/
197 /* General functions                                                  */
198 /**********************************************************************/
199
200 #define fdt_get_header(fdt, field) \
201         (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
202 #define fdt_magic(fdt)                  (fdt_get_header(fdt, magic))
203 #define fdt_totalsize(fdt)              (fdt_get_header(fdt, totalsize))
204 #define fdt_off_dt_struct(fdt)          (fdt_get_header(fdt, off_dt_struct))
205 #define fdt_off_dt_strings(fdt)         (fdt_get_header(fdt, off_dt_strings))
206 #define fdt_off_mem_rsvmap(fdt)         (fdt_get_header(fdt, off_mem_rsvmap))
207 #define fdt_version(fdt)                (fdt_get_header(fdt, version))
208 #define fdt_last_comp_version(fdt)      (fdt_get_header(fdt, last_comp_version))
209 #define fdt_boot_cpuid_phys(fdt)        (fdt_get_header(fdt, boot_cpuid_phys))
210 #define fdt_size_dt_strings(fdt)        (fdt_get_header(fdt, size_dt_strings))
211 #define fdt_size_dt_struct(fdt)         (fdt_get_header(fdt, size_dt_struct))
212
213 #define __fdt_set_hdr(name) \
214         static inline void fdt_set_##name(void *fdt, uint32_t val) \
215         { \
216                 struct fdt_header *fdth = (struct fdt_header*)fdt; \
217                 fdth->name = cpu_to_fdt32(val); \
218         }
219 __fdt_set_hdr(magic);
220 __fdt_set_hdr(totalsize);
221 __fdt_set_hdr(off_dt_struct);
222 __fdt_set_hdr(off_dt_strings);
223 __fdt_set_hdr(off_mem_rsvmap);
224 __fdt_set_hdr(version);
225 __fdt_set_hdr(last_comp_version);
226 __fdt_set_hdr(boot_cpuid_phys);
227 __fdt_set_hdr(size_dt_strings);
228 __fdt_set_hdr(size_dt_struct);
229 #undef __fdt_set_hdr
230
231 /**
232  * fdt_check_header - sanity check a device tree or possible device tree
233  * @fdt: pointer to data which might be a flattened device tree
234  *
235  * fdt_check_header() checks that the given buffer contains what
236  * appears to be a flattened device tree with sane information in its
237  * header.
238  *
239  * returns:
240  *     0, if the buffer appears to contain a valid device tree
241  *     -FDT_ERR_BADMAGIC,
242  *     -FDT_ERR_BADVERSION,
243  *     -FDT_ERR_BADSTATE, standard meanings, as above
244  */
245 int fdt_check_header(const void *fdt);
246
247 /**
248  * fdt_move - move a device tree around in memory
249  * @fdt: pointer to the device tree to move
250  * @buf: pointer to memory where the device is to be moved
251  * @bufsize: size of the memory space at buf
252  *
253  * fdt_move() relocates, if possible, the device tree blob located at
254  * fdt to the buffer at buf of size bufsize.  The buffer may overlap
255  * with the existing device tree blob at fdt.  Therefore,
256  *     fdt_move(fdt, fdt, fdt_totalsize(fdt))
257  * should always succeed.
258  *
259  * returns:
260  *     0, on success
261  *     -FDT_ERR_NOSPACE, bufsize is insufficient to contain the device tree
262  *     -FDT_ERR_BADMAGIC,
263  *     -FDT_ERR_BADVERSION,
264  *     -FDT_ERR_BADSTATE, standard meanings
265  */
266 int fdt_move(const void *fdt, void *buf, int bufsize);
267
268 /**********************************************************************/
269 /* Read-only functions                                                */
270 /**********************************************************************/
271
272 /**
273  * fdt_string - retrieve a string from the strings block of a device tree
274  * @fdt: pointer to the device tree blob
275  * @stroffset: offset of the string within the strings block (native endian)
276  *
277  * fdt_string() retrieves a pointer to a single string from the
278  * strings block of the device tree blob at fdt.
279  *
280  * returns:
281  *     a pointer to the string, on success
282  *     NULL, if stroffset is out of bounds
283  */
284 const char *fdt_string(const void *fdt, int stroffset);
285
286 /**
287  * fdt_num_mem_rsv - retrieve the number of memory reserve map entries
288  * @fdt: pointer to the device tree blob
289  *
290  * Returns the number of entries in the device tree blob's memory
291  * reservation map.  This does not include the terminating 0,0 entry
292  * or any other (0,0) entries reserved for expansion.
293  *
294  * returns:
295  *     the number of entries
296  */
297 int fdt_num_mem_rsv(const void *fdt);
298
299 /**
300  * fdt_get_mem_rsv - retrieve one memory reserve map entry
301  * @fdt: pointer to the device tree blob
302  * @address, @size: pointers to 64-bit variables
303  *
304  * On success, *address and *size will contain the address and size of
305  * the n-th reserve map entry from the device tree blob, in
306  * native-endian format.
307  *
308  * returns:
309  *     0, on success
310  *     -FDT_ERR_BADMAGIC,
311  *     -FDT_ERR_BADVERSION,
312  *     -FDT_ERR_BADSTATE, standard meanings
313  */
314 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size);
315
316 /**
317  * fdt_subnode_offset_namelen - find a subnode based on substring
318  * @fdt: pointer to the device tree blob
319  * @parentoffset: structure block offset of a node
320  * @name: name of the subnode to locate
321  * @namelen: number of characters of name to consider
322  *
323  * Identical to fdt_subnode_offset(), but only examine the first
324  * namelen characters of name for matching the subnode name.  This is
325  * useful for finding subnodes based on a portion of a larger string,
326  * such as a full path.
327  */
328 int fdt_subnode_offset_namelen(const void *fdt, int parentoffset,
329                                const char *name, int namelen);
330 /**
331  * fdt_subnode_offset - find a subnode of a given node
332  * @fdt: pointer to the device tree blob
333  * @parentoffset: structure block offset of a node
334  * @name: name of the subnode to locate
335  *
336  * fdt_subnode_offset() finds a subnode of the node at structure block
337  * offset parentoffset with the given name.  name may include a unit
338  * address, in which case fdt_subnode_offset() will find the subnode
339  * with that unit address, or the unit address may be omitted, in
340  * which case fdt_subnode_offset() will find an arbitrary subnode
341  * whose name excluding unit address matches the given name.
342  *
343  * returns:
344  *      structure block offset of the requested subnode (>=0), on success
345  *      -FDT_ERR_NOTFOUND, if the requested subnode does not exist
346  *      -FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE tag
347  *      -FDT_ERR_BADMAGIC,
348  *      -FDT_ERR_BADVERSION,
349  *      -FDT_ERR_BADSTATE,
350  *      -FDT_ERR_BADSTRUCTURE,
351  *      -FDT_ERR_TRUNCATED, standard meanings.
352  */
353 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
354
355 /**
356  * fdt_path_offset - find a tree node by its full path
357  * @fdt: pointer to the device tree blob
358  * @path: full path of the node to locate
359  *
360  * fdt_path_offset() finds a node of a given path in the device tree.
361  * Each path component may omit the unit address portion, but the
362  * results of this are undefined if any such path component is
363  * ambiguous (that is if there are multiple nodes at the relevant
364  * level matching the given component, differentiated only by unit
365  * address).
366  *
367  * returns:
368  *      structure block offset of the node with the requested path (>=0), on success
369  *      -FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
370  *      -FDT_ERR_NOTFOUND, if the requested node does not exist
371  *      -FDT_ERR_BADMAGIC,
372  *      -FDT_ERR_BADVERSION,
373  *      -FDT_ERR_BADSTATE,
374  *      -FDT_ERR_BADSTRUCTURE,
375  *      -FDT_ERR_TRUNCATED, standard meanings.
376  */
377 int fdt_path_offset(const void *fdt, const char *path);
378
379 /**
380  * fdt_get_name - retrieve the name of a given node
381  * @fdt: pointer to the device tree blob
382  * @nodeoffset: structure block offset of the starting node
383  * @lenp: pointer to an integer variable (will be overwritten) or NULL
384  *
385  * fdt_get_name() retrieves the name (including unit address) of the
386  * device tree node at structure block offset nodeoffset.  If lenp is
387  * non-NULL, the length of this name is also returned, in the integer
388  * pointed to by lenp.
389  *
390  * returns:
391  *      pointer to the node's name, on success
392  *              If lenp is non-NULL, *lenp contains the length of that name (>=0)
393  *      NULL, on error
394  *              if lenp is non-NULL *lenp contains an error code (<0):
395  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
396  *              -FDT_ERR_BADMAGIC,
397  *              -FDT_ERR_BADVERSION,
398  *              -FDT_ERR_BADSTATE, standard meanings
399  */
400 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
401
402 /**
403  * fdt_first_property_offset - find the offset of a node's first property
404  * @fdt: pointer to the device tree blob
405  * @nodeoffset: structure block offset of a node
406  *
407  * fdt_first_property_offset() finds the first property of the node at
408  * the given structure block offset.
409  *
410  * returns:
411  *      structure block offset of the property (>=0), on success
412  *      -FDT_ERR_NOTFOUND, if the requested node has no properties
413  *      -FDT_ERR_BADOFFSET, if nodeoffset did not point to an FDT_BEGIN_NODE tag
414  *      -FDT_ERR_BADMAGIC,
415  *      -FDT_ERR_BADVERSION,
416  *      -FDT_ERR_BADSTATE,
417  *      -FDT_ERR_BADSTRUCTURE,
418  *      -FDT_ERR_TRUNCATED, standard meanings.
419  */
420 int fdt_first_property_offset(const void *fdt, int nodeoffset);
421
422 /**
423  * fdt_next_property_offset - step through a node's properties
424  * @fdt: pointer to the device tree blob
425  * @offset: structure block offset of a property
426  *
427  * fdt_next_property_offset() finds the property immediately after the
428  * one at the given structure block offset.  This will be a property
429  * of the same node as the given property.
430  *
431  * returns:
432  *      structure block offset of the next property (>=0), on success
433  *      -FDT_ERR_NOTFOUND, if the given property is the last in its node
434  *      -FDT_ERR_BADOFFSET, if nodeoffset did not point to an FDT_PROP tag
435  *      -FDT_ERR_BADMAGIC,
436  *      -FDT_ERR_BADVERSION,
437  *      -FDT_ERR_BADSTATE,
438  *      -FDT_ERR_BADSTRUCTURE,
439  *      -FDT_ERR_TRUNCATED, standard meanings.
440  */
441 int fdt_next_property_offset(const void *fdt, int offset);
442
443 /**
444  * fdt_get_property_by_offset - retrieve the property at a given offset
445  * @fdt: pointer to the device tree blob
446  * @offset: offset of the property to retrieve
447  * @lenp: pointer to an integer variable (will be overwritten) or NULL
448  *
449  * fdt_get_property_by_offset() retrieves a pointer to the
450  * fdt_property structure within the device tree blob at the given
451  * offset.  If lenp is non-NULL, the length of the property value is
452  * also returned, in the integer pointed to by lenp.
453  *
454  * returns:
455  *      pointer to the structure representing the property
456  *              if lenp is non-NULL, *lenp contains the length of the property
457  *              value (>=0)
458  *      NULL, on error
459  *              if lenp is non-NULL, *lenp contains an error code (<0):
460  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_PROP tag
461  *              -FDT_ERR_BADMAGIC,
462  *              -FDT_ERR_BADVERSION,
463  *              -FDT_ERR_BADSTATE,
464  *              -FDT_ERR_BADSTRUCTURE,
465  *              -FDT_ERR_TRUNCATED, standard meanings
466  */
467 const struct fdt_property *fdt_get_property_by_offset(const void *fdt,
468                                                       int offset,
469                                                       int *lenp);
470
471 /**
472  * fdt_get_property_namelen - find a property based on substring
473  * @fdt: pointer to the device tree blob
474  * @nodeoffset: offset of the node whose property to find
475  * @name: name of the property to find
476  * @namelen: number of characters of name to consider
477  * @lenp: pointer to an integer variable (will be overwritten) or NULL
478  *
479  * Identical to fdt_get_property_namelen(), but only examine the first
480  * namelen characters of name for matching the property name.
481  */
482 const struct fdt_property *fdt_get_property_namelen(const void *fdt,
483                                                     int nodeoffset,
484                                                     const char *name,
485                                                     int namelen, int *lenp);
486
487 /**
488  * fdt_get_property - find a given property in a given node
489  * @fdt: pointer to the device tree blob
490  * @nodeoffset: offset of the node whose property to find
491  * @name: name of the property to find
492  * @lenp: pointer to an integer variable (will be overwritten) or NULL
493  *
494  * fdt_get_property() retrieves a pointer to the fdt_property
495  * structure within the device tree blob corresponding to the property
496  * named 'name' of the node at offset nodeoffset.  If lenp is
497  * non-NULL, the length of the property value is also returned, in the
498  * integer pointed to by lenp.
499  *
500  * returns:
501  *      pointer to the structure representing the property
502  *              if lenp is non-NULL, *lenp contains the length of the property
503  *              value (>=0)
504  *      NULL, on error
505  *              if lenp is non-NULL, *lenp contains an error code (<0):
506  *              -FDT_ERR_NOTFOUND, node does not have named property
507  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
508  *              -FDT_ERR_BADMAGIC,
509  *              -FDT_ERR_BADVERSION,
510  *              -FDT_ERR_BADSTATE,
511  *              -FDT_ERR_BADSTRUCTURE,
512  *              -FDT_ERR_TRUNCATED, standard meanings
513  */
514 const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
515                                             const char *name, int *lenp);
516 static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset,
517                                                       const char *name,
518                                                       int *lenp)
519 {
520         return (struct fdt_property *)(uintptr_t)
521                 fdt_get_property(fdt, nodeoffset, name, lenp);
522 }
523
524 /**
525  * fdt_getprop_by_offset - retrieve the value of a property at a given offset
526  * @fdt: pointer to the device tree blob
527  * @ffset: offset of the property to read
528  * @namep: pointer to a string variable (will be overwritten) or NULL
529  * @lenp: pointer to an integer variable (will be overwritten) or NULL
530  *
531  * fdt_getprop_by_offset() retrieves a pointer to the value of the
532  * property at structure block offset 'offset' (this will be a pointer
533  * to within the device blob itself, not a copy of the value).  If
534  * lenp is non-NULL, the length of the property value is also
535  * returned, in the integer pointed to by lenp.  If namep is non-NULL,
536  * the property's namne will also be returned in the char * pointed to
537  * by namep (this will be a pointer to within the device tree's string
538  * block, not a new copy of the name).
539  *
540  * returns:
541  *      pointer to the property's value
542  *              if lenp is non-NULL, *lenp contains the length of the property
543  *              value (>=0)
544  *              if namep is non-NULL *namep contiains a pointer to the property
545  *              name.
546  *      NULL, on error
547  *              if lenp is non-NULL, *lenp contains an error code (<0):
548  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_PROP tag
549  *              -FDT_ERR_BADMAGIC,
550  *              -FDT_ERR_BADVERSION,
551  *              -FDT_ERR_BADSTATE,
552  *              -FDT_ERR_BADSTRUCTURE,
553  *              -FDT_ERR_TRUNCATED, standard meanings
554  */
555 const void *fdt_getprop_by_offset(const void *fdt, int offset,
556                                   const char **namep, int *lenp);
557
558 /**
559  * fdt_getprop_namelen - get property value based on substring
560  * @fdt: pointer to the device tree blob
561  * @nodeoffset: offset of the node whose property to find
562  * @name: name of the property to find
563  * @namelen: number of characters of name to consider
564  * @lenp: pointer to an integer variable (will be overwritten) or NULL
565  *
566  * Identical to fdt_getprop(), but only examine the first namelen
567  * characters of name for matching the property name.
568  */
569 const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
570                                 const char *name, int namelen, int *lenp);
571
572 /**
573  * fdt_getprop - retrieve the value of a given property
574  * @fdt: pointer to the device tree blob
575  * @nodeoffset: offset of the node whose property to find
576  * @name: name of the property to find
577  * @lenp: pointer to an integer variable (will be overwritten) or NULL
578  *
579  * fdt_getprop() retrieves a pointer to the value of the property
580  * named 'name' of the node at offset nodeoffset (this will be a
581  * pointer to within the device blob itself, not a copy of the value).
582  * If lenp is non-NULL, the length of the property value is also
583  * returned, in the integer pointed to by lenp.
584  *
585  * returns:
586  *      pointer to the property's value
587  *              if lenp is non-NULL, *lenp contains the length of the property
588  *              value (>=0)
589  *      NULL, on error
590  *              if lenp is non-NULL, *lenp contains an error code (<0):
591  *              -FDT_ERR_NOTFOUND, node does not have named property
592  *              -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
593  *              -FDT_ERR_BADMAGIC,
594  *              -FDT_ERR_BADVERSION,
595  *              -FDT_ERR_BADSTATE,
596  *              -FDT_ERR_BADSTRUCTURE,
597  *              -FDT_ERR_TRUNCATED, standard meanings
598  */
599 const void *fdt_getprop(const void *fdt, int nodeoffset,
600                         const char *name, int *lenp);
601 static inline void *fdt_getprop_w(void *fdt, int nodeoffset,
602                                   const char *name, int *lenp)
603 {
604         return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp);
605 }
606
607 /**
608  * fdt_get_phandle - retrieve the phandle of a given node
609  * @fdt: pointer to the device tree blob
610  * @nodeoffset: structure block offset of the node
611  *
612  * fdt_get_phandle() retrieves the phandle of the device tree node at
613  * structure block offset nodeoffset.
614  *
615  * returns:
616  *      the phandle of the node at nodeoffset, on success (!= 0, != -1)
617  *      0, if the node has no phandle, or another error occurs
618  */
619 uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
620
621 /**
622  * fdt_get_alias_namelen - get alias based on substring
623  * @fdt: pointer to the device tree blob
624  * @name: name of the alias th look up
625  * @namelen: number of characters of name to consider
626  *
627  * Identical to fdt_get_alias(), but only examine the first namelen
628  * characters of name for matching the alias name.
629  */
630 const char *fdt_get_alias_namelen(const void *fdt,
631                                   const char *name, int namelen);
632
633 /**
634  * fdt_get_alias - retreive the path referenced by a given alias
635  * @fdt: pointer to the device tree blob
636  * @name: name of the alias th look up
637  *
638  * fdt_get_alias() retrieves the value of a given alias.  That is, the
639  * value of the property named 'name' in the node /aliases.
640  *
641  * returns:
642  *      a pointer to the expansion of the alias named 'name', if it exists
643  *      NULL, if the given alias or the /aliases node does not exist
644  */
645 const char *fdt_get_alias(const void *fdt, const char *name);
646
647 /**
648  * fdt_get_path - determine the full path of a node
649  * @fdt: pointer to the device tree blob
650  * @nodeoffset: offset of the node whose path to find
651  * @buf: character buffer to contain the returned path (will be overwritten)
652  * @buflen: size of the character buffer at buf
653  *
654  * fdt_get_path() computes the full path of the node at offset
655  * nodeoffset, and records that path in the buffer at buf.
656  *
657  * NOTE: This function is expensive, as it must scan the device tree
658  * structure from the start to nodeoffset.
659  *
660  * returns:
661  *      0, on success
662  *              buf contains the absolute path of the node at
663  *              nodeoffset, as a NUL-terminated string.
664  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
665  *      -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
666  *              characters and will not fit in the given buffer.
667  *      -FDT_ERR_BADMAGIC,
668  *      -FDT_ERR_BADVERSION,
669  *      -FDT_ERR_BADSTATE,
670  *      -FDT_ERR_BADSTRUCTURE, standard meanings
671  */
672 int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
673
674 /**
675  * fdt_supernode_atdepth_offset - find a specific ancestor of a node
676  * @fdt: pointer to the device tree blob
677  * @nodeoffset: offset of the node whose parent to find
678  * @supernodedepth: depth of the ancestor to find
679  * @nodedepth: pointer to an integer variable (will be overwritten) or NULL
680  *
681  * fdt_supernode_atdepth_offset() finds an ancestor of the given node
682  * at a specific depth from the root (where the root itself has depth
683  * 0, its immediate subnodes depth 1 and so forth).  So
684  *      fdt_supernode_atdepth_offset(fdt, nodeoffset, 0, NULL);
685  * will always return 0, the offset of the root node.  If the node at
686  * nodeoffset has depth D, then:
687  *      fdt_supernode_atdepth_offset(fdt, nodeoffset, D, NULL);
688  * will return nodeoffset itself.
689  *
690  * NOTE: This function is expensive, as it must scan the device tree
691  * structure from the start to nodeoffset.
692  *
693  * returns:
694
695  *      structure block offset of the node at node offset's ancestor
696  *              of depth supernodedepth (>=0), on success
697  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
698 *       -FDT_ERR_NOTFOUND, supernodedepth was greater than the depth of nodeoffset
699  *      -FDT_ERR_BADMAGIC,
700  *      -FDT_ERR_BADVERSION,
701  *      -FDT_ERR_BADSTATE,
702  *      -FDT_ERR_BADSTRUCTURE, standard meanings
703  */
704 int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
705                                  int supernodedepth, int *nodedepth);
706
707 /**
708  * fdt_node_depth - find the depth of a given node
709  * @fdt: pointer to the device tree blob
710  * @nodeoffset: offset of the node whose parent to find
711  *
712  * fdt_node_depth() finds the depth of a given node.  The root node
713  * has depth 0, its immediate subnodes depth 1 and so forth.
714  *
715  * NOTE: This function is expensive, as it must scan the device tree
716  * structure from the start to nodeoffset.
717  *
718  * returns:
719  *      depth of the node at nodeoffset (>=0), on success
720  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
721  *      -FDT_ERR_BADMAGIC,
722  *      -FDT_ERR_BADVERSION,
723  *      -FDT_ERR_BADSTATE,
724  *      -FDT_ERR_BADSTRUCTURE, standard meanings
725  */
726 int fdt_node_depth(const void *fdt, int nodeoffset);
727
728 /**
729  * fdt_parent_offset - find the parent of a given node
730  * @fdt: pointer to the device tree blob
731  * @nodeoffset: offset of the node whose parent to find
732  *
733  * fdt_parent_offset() locates the parent node of a given node (that
734  * is, it finds the offset of the node which contains the node at
735  * nodeoffset as a subnode).
736  *
737  * NOTE: This function is expensive, as it must scan the device tree
738  * structure from the start to nodeoffset, *twice*.
739  *
740  * returns:
741  *      structure block offset of the parent of the node at nodeoffset
742  *              (>=0), on success
743  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
744  *      -FDT_ERR_BADMAGIC,
745  *      -FDT_ERR_BADVERSION,
746  *      -FDT_ERR_BADSTATE,
747  *      -FDT_ERR_BADSTRUCTURE, standard meanings
748  */
749 int fdt_parent_offset(const void *fdt, int nodeoffset);
750
751 /**
752  * fdt_node_offset_by_prop_value - find nodes with a given property value
753  * @fdt: pointer to the device tree blob
754  * @startoffset: only find nodes after this offset
755  * @propname: property name to check
756  * @propval: property value to search for
757  * @proplen: length of the value in propval
758  *
759  * fdt_node_offset_by_prop_value() returns the offset of the first
760  * node after startoffset, which has a property named propname whose
761  * value is of length proplen and has value equal to propval; or if
762  * startoffset is -1, the very first such node in the tree.
763  *
764  * To iterate through all nodes matching the criterion, the following
765  * idiom can be used:
766  *      offset = fdt_node_offset_by_prop_value(fdt, -1, propname,
767  *                                             propval, proplen);
768  *      while (offset != -FDT_ERR_NOTFOUND) {
769  *              // other code here
770  *              offset = fdt_node_offset_by_prop_value(fdt, offset, propname,
771  *                                                     propval, proplen);
772  *      }
773  *
774  * Note the -1 in the first call to the function, if 0 is used here
775  * instead, the function will never locate the root node, even if it
776  * matches the criterion.
777  *
778  * returns:
779  *      structure block offset of the located node (>= 0, >startoffset),
780  *               on success
781  *      -FDT_ERR_NOTFOUND, no node matching the criterion exists in the
782  *              tree after startoffset
783  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
784  *      -FDT_ERR_BADMAGIC,
785  *      -FDT_ERR_BADVERSION,
786  *      -FDT_ERR_BADSTATE,
787  *      -FDT_ERR_BADSTRUCTURE, standard meanings
788  */
789 int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
790                                   const char *propname,
791                                   const void *propval, int proplen);
792
793 /**
794  * fdt_node_offset_by_phandle - find the node with a given phandle
795  * @fdt: pointer to the device tree blob
796  * @phandle: phandle value
797  *
798  * fdt_node_offset_by_phandle() returns the offset of the node
799  * which has the given phandle value.  If there is more than one node
800  * in the tree with the given phandle (an invalid tree), results are
801  * undefined.
802  *
803  * returns:
804  *      structure block offset of the located node (>= 0), on success
805  *      -FDT_ERR_NOTFOUND, no node with that phandle exists
806  *      -FDT_ERR_BADPHANDLE, given phandle value was invalid (0 or -1)
807  *      -FDT_ERR_BADMAGIC,
808  *      -FDT_ERR_BADVERSION,
809  *      -FDT_ERR_BADSTATE,
810  *      -FDT_ERR_BADSTRUCTURE, standard meanings
811  */
812 int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle);
813
814 /**
815  * fdt_node_check_compatible: check a node's compatible property
816  * @fdt: pointer to the device tree blob
817  * @nodeoffset: offset of a tree node
818  * @compatible: string to match against
819  *
820  *
821  * fdt_node_check_compatible() returns 0 if the given node contains a
822  * 'compatible' property with the given string as one of its elements,
823  * it returns non-zero otherwise, or on error.
824  *
825  * returns:
826  *      0, if the node has a 'compatible' property listing the given string
827  *      1, if the node has a 'compatible' property, but it does not list
828  *              the given string
829  *      -FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
830  *      -FDT_ERR_BADOFFSET, if nodeoffset does not refer to a BEGIN_NODE tag
831  *      -FDT_ERR_BADMAGIC,
832  *      -FDT_ERR_BADVERSION,
833  *      -FDT_ERR_BADSTATE,
834  *      -FDT_ERR_BADSTRUCTURE, standard meanings
835  */
836 int fdt_node_check_compatible(const void *fdt, int nodeoffset,
837                               const char *compatible);
838
839 /**
840  * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
841  * @fdt: pointer to the device tree blob
842  * @startoffset: only find nodes after this offset
843  * @compatible: 'compatible' string to match against
844  *
845  * fdt_node_offset_by_compatible() returns the offset of the first
846  * node after startoffset, which has a 'compatible' property which
847  * lists the given compatible string; or if startoffset is -1, the
848  * very first such node in the tree.
849  *
850  * To iterate through all nodes matching the criterion, the following
851  * idiom can be used:
852  *      offset = fdt_node_offset_by_compatible(fdt, -1, compatible);
853  *      while (offset != -FDT_ERR_NOTFOUND) {
854  *              // other code here
855  *              offset = fdt_node_offset_by_compatible(fdt, offset, compatible);
856  *      }
857  *
858  * Note the -1 in the first call to the function, if 0 is used here
859  * instead, the function will never locate the root node, even if it
860  * matches the criterion.
861  *
862  * returns:
863  *      structure block offset of the located node (>= 0, >startoffset),
864  *               on success
865  *      -FDT_ERR_NOTFOUND, no node matching the criterion exists in the
866  *              tree after startoffset
867  *      -FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
868  *      -FDT_ERR_BADMAGIC,
869  *      -FDT_ERR_BADVERSION,
870  *      -FDT_ERR_BADSTATE,
871  *      -FDT_ERR_BADSTRUCTURE, standard meanings
872  */
873 int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
874                                   const char *compatible);
875
876 /**
877  * fdt_stringlist_contains - check a string list property for a string
878  * @strlist: Property containing a list of strings to check
879  * @listlen: Length of property
880  * @str: String to search for
881  *
882  * This is a utility function provided for convenience. The list contains
883  * one or more strings, each terminated by \0, as is found in a device tree
884  * "compatible" property.
885  *
886  * @return: 1 if the string is found in the list, 0 not found, or invalid list
887  */
888 int fdt_stringlist_contains(const char *strlist, int listlen, const char *str);
889
890 /**
891  * fdt_count_strings - count the number of strings in a string list
892  * @fdt: pointer to the device tree blob
893  * @node: offset of the node
894  * @property: name of the property containing the string list
895  * @return: the number of strings in the given property
896  */
897 int fdt_count_strings(const void *fdt, int node, const char *property);
898
899 /**
900  * fdt_find_string - find a string in a string list and return its index
901  * @fdt: pointer to the device tree blob
902  * @node: offset of the node
903  * @property: name of the property containing the string list
904  * @string: string to look up in the string list
905  * @return: the index of the string or negative on error
906  */
907 int fdt_find_string(const void *fdt, int node, const char *property,
908                     const char *string);
909
910 /**
911  * fdt_get_string_index() - obtain the string at a given index in a string list
912  * @fdt: pointer to the device tree blob
913  * @node: offset of the node
914  * @property: name of the property containing the string list
915  * @index: index of the string to return
916  * @output: return location for the string
917  * @return: 0 if the string was found or a negative error code otherwise
918  */
919 int fdt_get_string_index(const void *fdt, int node, const char *property,
920                          int index, const char **output);
921
922 /**
923  * fdt_get_string() - obtain the first string in a string list
924  * @fdt: pointer to the device tree blob
925  * @node: offset of the node
926  * @property: name of the property containing the string list
927  * @output: return location for the string
928  * @return: 0 if the string was found or a negative error code otherwise
929  *
930  * This is a shortcut for:
931  *
932  *      fdt_get_string_index(fdt, node, property, 0, output).
933  */
934 int fdt_get_string(const void *fdt, int node, const char *property,
935                    const char **output);
936
937 /**********************************************************************/
938 /* Read-only functions (addressing related)                           */
939 /**********************************************************************/
940
941 /**
942  * FDT_MAX_NCELLS - maximum value for #address-cells and #size-cells
943  *
944  * This is the maximum value for #address-cells, #size-cells and
945  * similar properties that will be processed by libfdt.  IEE1275
946  * requires that OF implementations handle values up to 4.
947  * Implementations may support larger values, but in practice higher
948  * values aren't used.
949  */
950 #define FDT_MAX_NCELLS          4
951
952 /**
953  * fdt_address_cells - retrieve address size for a bus represented in the tree
954  * @fdt: pointer to the device tree blob
955  * @nodeoffset: offset of the node to find the address size for
956  *
957  * When the node has a valid #address-cells property, returns its value.
958  *
959  * returns:
960  *      0 <= n < FDT_MAX_NCELLS, on success
961  *      2, if the node has no #address-cells property
962  *      -FDT_ERR_BADNCELLS, if the node has a badly formatted or invalid
963  *              #address-cells property
964  *      -FDT_ERR_BADMAGIC,
965  *      -FDT_ERR_BADVERSION,
966  *      -FDT_ERR_BADSTATE,
967  *      -FDT_ERR_BADSTRUCTURE,
968  *      -FDT_ERR_TRUNCATED, standard meanings
969  */
970 int fdt_address_cells(const void *fdt, int nodeoffset);
971
972 /**
973  * fdt_size_cells - retrieve address range size for a bus represented in the
974  *                  tree
975  * @fdt: pointer to the device tree blob
976  * @nodeoffset: offset of the node to find the address range size for
977  *
978  * When the node has a valid #size-cells property, returns its value.
979  *
980  * returns:
981  *      0 <= n < FDT_MAX_NCELLS, on success
982  *      2, if the node has no #address-cells property
983  *      -FDT_ERR_BADNCELLS, if the node has a badly formatted or invalid
984  *              #size-cells property
985  *      -FDT_ERR_BADMAGIC,
986  *      -FDT_ERR_BADVERSION,
987  *      -FDT_ERR_BADSTATE,
988  *      -FDT_ERR_BADSTRUCTURE,
989  *      -FDT_ERR_TRUNCATED, standard meanings
990  */
991 int fdt_size_cells(const void *fdt, int nodeoffset);
992
993
994 /**********************************************************************/
995 /* Write-in-place functions                                           */
996 /**********************************************************************/
997
998 /**
999  * fdt_setprop_inplace - change a property's value, but not its size
1000  * @fdt: pointer to the device tree blob
1001  * @nodeoffset: offset of the node whose property to change
1002  * @name: name of the property to change
1003  * @val: pointer to data to replace the property value with
1004  * @len: length of the property value
1005  *
1006  * fdt_setprop_inplace() replaces the value of a given property with
1007  * the data in val, of length len.  This function cannot change the
1008  * size of a property, and so will only work if len is equal to the
1009  * current length of the property.
1010  *
1011  * This function will alter only the bytes in the blob which contain
1012  * the given property value, and will not alter or move any other part
1013  * of the tree.
1014  *
1015  * returns:
1016  *      0, on success
1017  *      -FDT_ERR_NOSPACE, if len is not equal to the property's current length
1018  *      -FDT_ERR_NOTFOUND, node does not have the named property
1019  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1020  *      -FDT_ERR_BADMAGIC,
1021  *      -FDT_ERR_BADVERSION,
1022  *      -FDT_ERR_BADSTATE,
1023  *      -FDT_ERR_BADSTRUCTURE,
1024  *      -FDT_ERR_TRUNCATED, standard meanings
1025  */
1026 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1027                         const void *val, int len);
1028
1029 /**
1030  * fdt_setprop_inplace_u32 - change the value of a 32-bit integer property
1031  * @fdt: pointer to the device tree blob
1032  * @nodeoffset: offset of the node whose property to change
1033  * @name: name of the property to change
1034  * @val: 32-bit integer value to replace the property with
1035  *
1036  * fdt_setprop_inplace_u32() replaces the value of a given property
1037  * with the 32-bit integer value in val, converting val to big-endian
1038  * if necessary.  This function cannot change the size of a property,
1039  * and so will only work if the property already exists and has length
1040  * 4.
1041  *
1042  * This function will alter only the bytes in the blob which contain
1043  * the given property value, and will not alter or move any other part
1044  * of the tree.
1045  *
1046  * returns:
1047  *      0, on success
1048  *      -FDT_ERR_NOSPACE, if the property's length is not equal to 4
1049  *      -FDT_ERR_NOTFOUND, node does not have the named property
1050  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1051  *      -FDT_ERR_BADMAGIC,
1052  *      -FDT_ERR_BADVERSION,
1053  *      -FDT_ERR_BADSTATE,
1054  *      -FDT_ERR_BADSTRUCTURE,
1055  *      -FDT_ERR_TRUNCATED, standard meanings
1056  */
1057 static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset,
1058                                           const char *name, uint32_t val)
1059 {
1060         fdt32_t tmp = cpu_to_fdt32(val);
1061         return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1062 }
1063
1064 /**
1065  * fdt_setprop_inplace_u64 - change the value of a 64-bit integer property
1066  * @fdt: pointer to the device tree blob
1067  * @nodeoffset: offset of the node whose property to change
1068  * @name: name of the property to change
1069  * @val: 64-bit integer value to replace the property with
1070  *
1071  * fdt_setprop_inplace_u64() replaces the value of a given property
1072  * with the 64-bit integer value in val, converting val to big-endian
1073  * if necessary.  This function cannot change the size of a property,
1074  * and so will only work if the property already exists and has length
1075  * 8.
1076  *
1077  * This function will alter only the bytes in the blob which contain
1078  * the given property value, and will not alter or move any other part
1079  * of the tree.
1080  *
1081  * returns:
1082  *      0, on success
1083  *      -FDT_ERR_NOSPACE, if the property's length is not equal to 8
1084  *      -FDT_ERR_NOTFOUND, node does not have the named property
1085  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1086  *      -FDT_ERR_BADMAGIC,
1087  *      -FDT_ERR_BADVERSION,
1088  *      -FDT_ERR_BADSTATE,
1089  *      -FDT_ERR_BADSTRUCTURE,
1090  *      -FDT_ERR_TRUNCATED, standard meanings
1091  */
1092 static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset,
1093                                           const char *name, uint64_t val)
1094 {
1095         fdt64_t tmp = cpu_to_fdt64(val);
1096         return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1097 }
1098
1099 /**
1100  * fdt_setprop_inplace_cell - change the value of a single-cell property
1101  *
1102  * This is an alternative name for fdt_setprop_inplace_u32()
1103  */
1104 static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset,
1105                                            const char *name, uint32_t val)
1106 {
1107         return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val);
1108 }
1109
1110 /**
1111  * fdt_nop_property - replace a property with nop tags
1112  * @fdt: pointer to the device tree blob
1113  * @nodeoffset: offset of the node whose property to nop
1114  * @name: name of the property to nop
1115  *
1116  * fdt_nop_property() will replace a given property's representation
1117  * in the blob with FDT_NOP tags, effectively removing it from the
1118  * tree.
1119  *
1120  * This function will alter only the bytes in the blob which contain
1121  * the property, and will not alter or move any other part of the
1122  * tree.
1123  *
1124  * returns:
1125  *      0, on success
1126  *      -FDT_ERR_NOTFOUND, node does not have the named property
1127  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1128  *      -FDT_ERR_BADMAGIC,
1129  *      -FDT_ERR_BADVERSION,
1130  *      -FDT_ERR_BADSTATE,
1131  *      -FDT_ERR_BADSTRUCTURE,
1132  *      -FDT_ERR_TRUNCATED, standard meanings
1133  */
1134 int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1135
1136 /**
1137  * fdt_nop_node - replace a node (subtree) with nop tags
1138  * @fdt: pointer to the device tree blob
1139  * @nodeoffset: offset of the node to nop
1140  *
1141  * fdt_nop_node() will replace a given node's representation in the
1142  * blob, including all its subnodes, if any, with FDT_NOP tags,
1143  * effectively removing it from the tree.
1144  *
1145  * This function will alter only the bytes in the blob which contain
1146  * the node and its properties and subnodes, and will not alter or
1147  * move any other part of the tree.
1148  *
1149  * returns:
1150  *      0, on success
1151  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1152  *      -FDT_ERR_BADMAGIC,
1153  *      -FDT_ERR_BADVERSION,
1154  *      -FDT_ERR_BADSTATE,
1155  *      -FDT_ERR_BADSTRUCTURE,
1156  *      -FDT_ERR_TRUNCATED, standard meanings
1157  */
1158 int fdt_nop_node(void *fdt, int nodeoffset);
1159
1160 /**********************************************************************/
1161 /* Sequential write functions                                         */
1162 /**********************************************************************/
1163
1164 int fdt_create(void *buf, int bufsize);
1165 int fdt_resize(void *fdt, void *buf, int bufsize);
1166 int fdt_add_reservemap_entry(void *fdt, uint64_t addr, uint64_t size);
1167 int fdt_finish_reservemap(void *fdt);
1168 int fdt_begin_node(void *fdt, const char *name);
1169 int fdt_property(void *fdt, const char *name, const void *val, int len);
1170 static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val)
1171 {
1172         fdt32_t tmp = cpu_to_fdt32(val);
1173         return fdt_property(fdt, name, &tmp, sizeof(tmp));
1174 }
1175 static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val)
1176 {
1177         fdt64_t tmp = cpu_to_fdt64(val);
1178         return fdt_property(fdt, name, &tmp, sizeof(tmp));
1179 }
1180 static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val)
1181 {
1182         return fdt_property_u32(fdt, name, val);
1183 }
1184
1185 /**
1186  * fdt_property_placeholder - add a new property and return a ptr to its value
1187  *
1188  * @fdt: pointer to the device tree blob
1189  * @name: name of property to add
1190  * @len: length of property value in bytes
1191  * @valp: returns a pointer to where where the value should be placed
1192  *
1193  * returns:
1194  *      0, on success
1195  *      -FDT_ERR_BADMAGIC,
1196  *      -FDT_ERR_NOSPACE, standard meanings
1197  */
1198 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1199
1200 #define fdt_property_string(fdt, name, str) \
1201         fdt_property(fdt, name, str, strlen(str)+1)
1202 int fdt_end_node(void *fdt);
1203 int fdt_finish(void *fdt);
1204
1205 /**********************************************************************/
1206 /* Read-write functions                                               */
1207 /**********************************************************************/
1208
1209 int fdt_create_empty_tree(void *buf, int bufsize);
1210 int fdt_open_into(const void *fdt, void *buf, int bufsize);
1211 int fdt_pack(void *fdt);
1212
1213 /**
1214  * fdt_add_mem_rsv - add one memory reserve map entry
1215  * @fdt: pointer to the device tree blob
1216  * @address, @size: 64-bit values (native endian)
1217  *
1218  * Adds a reserve map entry to the given blob reserving a region at
1219  * address address of length size.
1220  *
1221  * This function will insert data into the reserve map and will
1222  * therefore change the indexes of some entries in the table.
1223  *
1224  * returns:
1225  *      0, on success
1226  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1227  *              contain the new reservation entry
1228  *      -FDT_ERR_BADMAGIC,
1229  *      -FDT_ERR_BADVERSION,
1230  *      -FDT_ERR_BADSTATE,
1231  *      -FDT_ERR_BADSTRUCTURE,
1232  *      -FDT_ERR_BADLAYOUT,
1233  *      -FDT_ERR_TRUNCATED, standard meanings
1234  */
1235 int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size);
1236
1237 /**
1238  * fdt_del_mem_rsv - remove a memory reserve map entry
1239  * @fdt: pointer to the device tree blob
1240  * @n: entry to remove
1241  *
1242  * fdt_del_mem_rsv() removes the n-th memory reserve map entry from
1243  * the blob.
1244  *
1245  * This function will delete data from the reservation table and will
1246  * therefore change the indexes of some entries in the table.
1247  *
1248  * returns:
1249  *      0, on success
1250  *      -FDT_ERR_NOTFOUND, there is no entry of the given index (i.e. there
1251  *              are less than n+1 reserve map entries)
1252  *      -FDT_ERR_BADMAGIC,
1253  *      -FDT_ERR_BADVERSION,
1254  *      -FDT_ERR_BADSTATE,
1255  *      -FDT_ERR_BADSTRUCTURE,
1256  *      -FDT_ERR_BADLAYOUT,
1257  *      -FDT_ERR_TRUNCATED, standard meanings
1258  */
1259 int fdt_del_mem_rsv(void *fdt, int n);
1260
1261 /**
1262  * fdt_set_name - change the name of a given node
1263  * @fdt: pointer to the device tree blob
1264  * @nodeoffset: structure block offset of a node
1265  * @name: name to give the node
1266  *
1267  * fdt_set_name() replaces the name (including unit address, if any)
1268  * of the given node with the given string.  NOTE: this function can't
1269  * efficiently check if the new name is unique amongst the given
1270  * node's siblings; results are undefined if this function is invoked
1271  * with a name equal to one of the given node's siblings.
1272  *
1273  * This function may insert or delete data from the blob, and will
1274  * therefore change the offsets of some existing nodes.
1275  *
1276  * returns:
1277  *      0, on success
1278  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob
1279  *              to contain the new name
1280  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1281  *      -FDT_ERR_BADMAGIC,
1282  *      -FDT_ERR_BADVERSION,
1283  *      -FDT_ERR_BADSTATE, standard meanings
1284  */
1285 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1286
1287 /**
1288  * fdt_setprop - create or change a property
1289  * @fdt: pointer to the device tree blob
1290  * @nodeoffset: offset of the node whose property to change
1291  * @name: name of the property to change
1292  * @val: pointer to data to set the property value to
1293  * @len: length of the property value
1294  *
1295  * fdt_setprop() sets the value of the named property in the given
1296  * node to the given value and length, creating the property if it
1297  * does not already exist.
1298  *
1299  * This function may insert or delete data from the blob, and will
1300  * therefore change the offsets of some existing nodes.
1301  *
1302  * returns:
1303  *      0, on success
1304  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1305  *              contain the new property value
1306  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1307  *      -FDT_ERR_BADLAYOUT,
1308  *      -FDT_ERR_BADMAGIC,
1309  *      -FDT_ERR_BADVERSION,
1310  *      -FDT_ERR_BADSTATE,
1311  *      -FDT_ERR_BADSTRUCTURE,
1312  *      -FDT_ERR_BADLAYOUT,
1313  *      -FDT_ERR_TRUNCATED, standard meanings
1314  */
1315 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1316                 const void *val, int len);
1317
1318 /**
1319  * fdt_setprop_u32 - set a property to a 32-bit integer
1320  * @fdt: pointer to the device tree blob
1321  * @nodeoffset: offset of the node whose property to change
1322  * @name: name of the property to change
1323  * @val: 32-bit integer value for the property (native endian)
1324  *
1325  * fdt_setprop_u32() sets the value of the named property in the given
1326  * node to the given 32-bit integer value (converting to big-endian if
1327  * necessary), or creates a new property with that value if it does
1328  * not already exist.
1329  *
1330  * This function may insert or delete data from the blob, and will
1331  * therefore change the offsets of some existing nodes.
1332  *
1333  * returns:
1334  *      0, on success
1335  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1336  *              contain the new property value
1337  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1338  *      -FDT_ERR_BADLAYOUT,
1339  *      -FDT_ERR_BADMAGIC,
1340  *      -FDT_ERR_BADVERSION,
1341  *      -FDT_ERR_BADSTATE,
1342  *      -FDT_ERR_BADSTRUCTURE,
1343  *      -FDT_ERR_BADLAYOUT,
1344  *      -FDT_ERR_TRUNCATED, standard meanings
1345  */
1346 static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name,
1347                                   uint32_t val)
1348 {
1349         fdt32_t tmp = cpu_to_fdt32(val);
1350         return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1351 }
1352
1353 /**
1354  * fdt_setprop_u64 - set a property to a 64-bit integer
1355  * @fdt: pointer to the device tree blob
1356  * @nodeoffset: offset of the node whose property to change
1357  * @name: name of the property to change
1358  * @val: 64-bit integer value for the property (native endian)
1359  *
1360  * fdt_setprop_u64() sets the value of the named property in the given
1361  * node to the given 64-bit integer value (converting to big-endian if
1362  * necessary), or creates a new property with that value if it does
1363  * not already exist.
1364  *
1365  * This function may insert or delete data from the blob, and will
1366  * therefore change the offsets of some existing nodes.
1367  *
1368  * returns:
1369  *      0, on success
1370  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1371  *              contain the new property value
1372  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1373  *      -FDT_ERR_BADLAYOUT,
1374  *      -FDT_ERR_BADMAGIC,
1375  *      -FDT_ERR_BADVERSION,
1376  *      -FDT_ERR_BADSTATE,
1377  *      -FDT_ERR_BADSTRUCTURE,
1378  *      -FDT_ERR_BADLAYOUT,
1379  *      -FDT_ERR_TRUNCATED, standard meanings
1380  */
1381 static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name,
1382                                   uint64_t val)
1383 {
1384         fdt64_t tmp = cpu_to_fdt64(val);
1385         return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1386 }
1387
1388 /**
1389  * fdt_setprop_cell - set a property to a single cell value
1390  *
1391  * This is an alternative name for fdt_setprop_u32()
1392  */
1393 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name,
1394                                    uint32_t val)
1395 {
1396         return fdt_setprop_u32(fdt, nodeoffset, name, val);
1397 }
1398
1399 /**
1400  * fdt_setprop_string - set a property to a string value
1401  * @fdt: pointer to the device tree blob
1402  * @nodeoffset: offset of the node whose property to change
1403  * @name: name of the property to change
1404  * @str: string value for the property
1405  *
1406  * fdt_setprop_string() sets the value of the named property in the
1407  * given node to the given string value (using the length of the
1408  * string to determine the new length of the property), or creates a
1409  * new property with that value if it does not already exist.
1410  *
1411  * This function may insert or delete data from the blob, and will
1412  * therefore change the offsets of some existing nodes.
1413  *
1414  * returns:
1415  *      0, on success
1416  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1417  *              contain the new property value
1418  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1419  *      -FDT_ERR_BADLAYOUT,
1420  *      -FDT_ERR_BADMAGIC,
1421  *      -FDT_ERR_BADVERSION,
1422  *      -FDT_ERR_BADSTATE,
1423  *      -FDT_ERR_BADSTRUCTURE,
1424  *      -FDT_ERR_BADLAYOUT,
1425  *      -FDT_ERR_TRUNCATED, standard meanings
1426  */
1427 #define fdt_setprop_string(fdt, nodeoffset, name, str) \
1428         fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1429
1430 /**
1431  * fdt_appendprop - append to or create a property
1432  * @fdt: pointer to the device tree blob
1433  * @nodeoffset: offset of the node whose property to change
1434  * @name: name of the property to append to
1435  * @val: pointer to data to append to the property value
1436  * @len: length of the data to append to the property value
1437  *
1438  * fdt_appendprop() appends the value to the named property in the
1439  * given node, creating the property if it does not already exist.
1440  *
1441  * This function may insert data into the blob, and will therefore
1442  * change the offsets of some existing nodes.
1443  *
1444  * returns:
1445  *      0, on success
1446  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1447  *              contain the new property value
1448  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1449  *      -FDT_ERR_BADLAYOUT,
1450  *      -FDT_ERR_BADMAGIC,
1451  *      -FDT_ERR_BADVERSION,
1452  *      -FDT_ERR_BADSTATE,
1453  *      -FDT_ERR_BADSTRUCTURE,
1454  *      -FDT_ERR_BADLAYOUT,
1455  *      -FDT_ERR_TRUNCATED, standard meanings
1456  */
1457 int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1458                    const void *val, int len);
1459
1460 /**
1461  * fdt_appendprop_u32 - append a 32-bit integer value to a property
1462  * @fdt: pointer to the device tree blob
1463  * @nodeoffset: offset of the node whose property to change
1464  * @name: name of the property to change
1465  * @val: 32-bit integer value to append to the property (native endian)
1466  *
1467  * fdt_appendprop_u32() appends the given 32-bit integer value
1468  * (converting to big-endian if necessary) to the value of the named
1469  * property in the given node, or creates a new property with that
1470  * value if it does not already exist.
1471  *
1472  * This function may insert data into the blob, and will therefore
1473  * change the offsets of some existing nodes.
1474  *
1475  * returns:
1476  *      0, on success
1477  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1478  *              contain the new property value
1479  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1480  *      -FDT_ERR_BADLAYOUT,
1481  *      -FDT_ERR_BADMAGIC,
1482  *      -FDT_ERR_BADVERSION,
1483  *      -FDT_ERR_BADSTATE,
1484  *      -FDT_ERR_BADSTRUCTURE,
1485  *      -FDT_ERR_BADLAYOUT,
1486  *      -FDT_ERR_TRUNCATED, standard meanings
1487  */
1488 static inline int fdt_appendprop_u32(void *fdt, int nodeoffset,
1489                                      const char *name, uint32_t val)
1490 {
1491         fdt32_t tmp = cpu_to_fdt32(val);
1492         return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1493 }
1494
1495 /**
1496  * fdt_appendprop_u64 - append a 64-bit integer value to a property
1497  * @fdt: pointer to the device tree blob
1498  * @nodeoffset: offset of the node whose property to change
1499  * @name: name of the property to change
1500  * @val: 64-bit integer value to append to the property (native endian)
1501  *
1502  * fdt_appendprop_u64() appends the given 64-bit integer value
1503  * (converting to big-endian if necessary) to the value of the named
1504  * property in the given node, or creates a new property with that
1505  * value if it does not already exist.
1506  *
1507  * This function may insert data into the blob, and will therefore
1508  * change the offsets of some existing nodes.
1509  *
1510  * returns:
1511  *      0, on success
1512  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1513  *              contain the new property value
1514  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1515  *      -FDT_ERR_BADLAYOUT,
1516  *      -FDT_ERR_BADMAGIC,
1517  *      -FDT_ERR_BADVERSION,
1518  *      -FDT_ERR_BADSTATE,
1519  *      -FDT_ERR_BADSTRUCTURE,
1520  *      -FDT_ERR_BADLAYOUT,
1521  *      -FDT_ERR_TRUNCATED, standard meanings
1522  */
1523 static inline int fdt_appendprop_u64(void *fdt, int nodeoffset,
1524                                      const char *name, uint64_t val)
1525 {
1526         fdt64_t tmp = cpu_to_fdt64(val);
1527         return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1528 }
1529
1530 /**
1531  * fdt_appendprop_cell - append a single cell value to a property
1532  *
1533  * This is an alternative name for fdt_appendprop_u32()
1534  */
1535 static inline int fdt_appendprop_cell(void *fdt, int nodeoffset,
1536                                       const char *name, uint32_t val)
1537 {
1538         return fdt_appendprop_u32(fdt, nodeoffset, name, val);
1539 }
1540
1541 /**
1542  * fdt_appendprop_string - append a string to a property
1543  * @fdt: pointer to the device tree blob
1544  * @nodeoffset: offset of the node whose property to change
1545  * @name: name of the property to change
1546  * @str: string value to append to the property
1547  *
1548  * fdt_appendprop_string() appends the given string to the value of
1549  * the named property in the given node, or creates a new property
1550  * with that value if it does not already exist.
1551  *
1552  * This function may insert data into the blob, and will therefore
1553  * change the offsets of some existing nodes.
1554  *
1555  * returns:
1556  *      0, on success
1557  *      -FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1558  *              contain the new property value
1559  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1560  *      -FDT_ERR_BADLAYOUT,
1561  *      -FDT_ERR_BADMAGIC,
1562  *      -FDT_ERR_BADVERSION,
1563  *      -FDT_ERR_BADSTATE,
1564  *      -FDT_ERR_BADSTRUCTURE,
1565  *      -FDT_ERR_BADLAYOUT,
1566  *      -FDT_ERR_TRUNCATED, standard meanings
1567  */
1568 #define fdt_appendprop_string(fdt, nodeoffset, name, str) \
1569         fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1570
1571 /**
1572  * fdt_delprop - delete a property
1573  * @fdt: pointer to the device tree blob
1574  * @nodeoffset: offset of the node whose property to nop
1575  * @name: name of the property to nop
1576  *
1577  * fdt_del_property() will delete the given property.
1578  *
1579  * This function will delete data from the blob, and will therefore
1580  * change the offsets of some existing nodes.
1581  *
1582  * returns:
1583  *      0, on success
1584  *      -FDT_ERR_NOTFOUND, node does not have the named property
1585  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1586  *      -FDT_ERR_BADLAYOUT,
1587  *      -FDT_ERR_BADMAGIC,
1588  *      -FDT_ERR_BADVERSION,
1589  *      -FDT_ERR_BADSTATE,
1590  *      -FDT_ERR_BADSTRUCTURE,
1591  *      -FDT_ERR_TRUNCATED, standard meanings
1592  */
1593 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1594
1595 /**
1596  * fdt_add_subnode_namelen - creates a new node based on substring
1597  * @fdt: pointer to the device tree blob
1598  * @parentoffset: structure block offset of a node
1599  * @name: name of the subnode to locate
1600  * @namelen: number of characters of name to consider
1601  *
1602  * Identical to fdt_add_subnode(), but use only the first namelen
1603  * characters of name as the name of the new node.  This is useful for
1604  * creating subnodes based on a portion of a larger string, such as a
1605  * full path.
1606  */
1607 int fdt_add_subnode_namelen(void *fdt, int parentoffset,
1608                             const char *name, int namelen);
1609
1610 /**
1611  * fdt_add_subnode - creates a new node
1612  * @fdt: pointer to the device tree blob
1613  * @parentoffset: structure block offset of a node
1614  * @name: name of the subnode to locate
1615  *
1616  * fdt_add_subnode() creates a new node as a subnode of the node at
1617  * structure block offset parentoffset, with the given name (which
1618  * should include the unit address, if any).
1619  *
1620  * This function will insert data into the blob, and will therefore
1621  * change the offsets of some existing nodes.
1622
1623  * returns:
1624  *      structure block offset of the created nodeequested subnode (>=0), on success
1625  *      -FDT_ERR_NOTFOUND, if the requested subnode does not exist
1626  *      -FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE tag
1627  *      -FDT_ERR_EXISTS, if the node at parentoffset already has a subnode of
1628  *              the given name
1629  *      -FDT_ERR_NOSPACE, if there is insufficient free space in the
1630  *              blob to contain the new node
1631  *      -FDT_ERR_NOSPACE
1632  *      -FDT_ERR_BADLAYOUT
1633  *      -FDT_ERR_BADMAGIC,
1634  *      -FDT_ERR_BADVERSION,
1635  *      -FDT_ERR_BADSTATE,
1636  *      -FDT_ERR_BADSTRUCTURE,
1637  *      -FDT_ERR_TRUNCATED, standard meanings.
1638  */
1639 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);
1640
1641 /**
1642  * fdt_del_node - delete a node (subtree)
1643  * @fdt: pointer to the device tree blob
1644  * @nodeoffset: offset of the node to nop
1645  *
1646  * fdt_del_node() will remove the given node, including all its
1647  * subnodes if any, from the blob.
1648  *
1649  * This function will delete data from the blob, and will therefore
1650  * change the offsets of some existing nodes.
1651  *
1652  * returns:
1653  *      0, on success
1654  *      -FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1655  *      -FDT_ERR_BADLAYOUT,
1656  *      -FDT_ERR_BADMAGIC,
1657  *      -FDT_ERR_BADVERSION,
1658  *      -FDT_ERR_BADSTATE,
1659  *      -FDT_ERR_BADSTRUCTURE,
1660  *      -FDT_ERR_TRUNCATED, standard meanings
1661  */
1662 int fdt_del_node(void *fdt, int nodeoffset);
1663
1664 /**********************************************************************/
1665 /* Debugging / informational functions                                */
1666 /**********************************************************************/
1667
1668 const char *fdt_strerror(int errval);
1669
1670 /**
1671  * fdt_remove_unused_strings() - Remove any unused strings from an FDT
1672  *
1673  * This creates a new device tree in @new with unused strings removed. The
1674  * called can then use fdt_pack() to minimise the space consumed.
1675  *
1676  * @old:        Old device tree blog
1677  * @new:        Place to put new device tree blob, which must be as large as
1678  *              @old
1679  * @return
1680  *      0, on success
1681  *      -FDT_ERR_BADOFFSET, corrupt device tree
1682  *      -FDT_ERR_NOSPACE, out of space, which should not happen unless there
1683  *              is something very wrong with the device tree input
1684  */
1685 int fdt_remove_unused_strings(const void *old, void *new);
1686
1687 struct fdt_region {
1688         int offset;
1689         int size;
1690 };
1691
1692 /*
1693  * Flags for fdt_find_regions()
1694  *
1695  * Add a region for the string table (always the last region)
1696  */
1697 #define FDT_REG_ADD_STRING_TAB          (1 << 0)
1698
1699 /*
1700  * Add all supernodes of a matching node/property, useful for creating a
1701  * valid subset tree
1702  */
1703 #define FDT_REG_SUPERNODES              (1 << 1)
1704
1705 /* Add the FDT_BEGIN_NODE tags of subnodes, including their names */
1706 #define FDT_REG_DIRECT_SUBNODES (1 << 2)
1707
1708 /* Add all subnodes of a matching node */
1709 #define FDT_REG_ALL_SUBNODES            (1 << 3)
1710
1711 /* Add a region for the mem_rsvmap table (always the first region) */
1712 #define FDT_REG_ADD_MEM_RSVMAP          (1 << 4)
1713
1714 /* Indicates what an fdt part is (node, property, value) */
1715 #define FDT_IS_NODE                     (1 << 0)
1716 #define FDT_IS_PROP                     (1 << 1)
1717 #define FDT_IS_VALUE                    (1 << 2)        /* not supported */
1718 #define FDT_IS_COMPAT                   (1 << 3)        /* used internally */
1719 #define FDT_NODE_HAS_PROP               (1 << 4)        /* node contains prop */
1720
1721 #define FDT_ANY_GLOBAL          (FDT_IS_NODE | FDT_IS_PROP | FDT_IS_VALUE | \
1722                                         FDT_IS_COMPAT)
1723 #define FDT_IS_ANY                      0x1f            /* all the above */
1724
1725 /* We set a reasonable limit on the number of nested nodes */
1726 #define FDT_MAX_DEPTH                   32
1727
1728 /* Decribes what we want to include from the current tag */
1729 enum want_t {
1730         WANT_NOTHING,
1731         WANT_NODES_ONLY,                /* No properties */
1732         WANT_NODES_AND_PROPS,           /* Everything for one level */
1733         WANT_ALL_NODES_AND_PROPS        /* Everything for all levels */
1734 };
1735
1736 /* Keeps track of the state at parent nodes */
1737 struct fdt_subnode_stack {
1738         int offset;             /* Offset of node */
1739         enum want_t want;       /* The 'want' value here */
1740         int included;           /* 1 if we included this node, 0 if not */
1741 };
1742
1743 struct fdt_region_ptrs {
1744         int depth;                      /* Current tree depth */
1745         int done;                       /* What we have completed scanning */
1746         enum want_t want;               /* What we are currently including */
1747         char *end;                      /* Pointer to end of full node path */
1748         int nextoffset;                 /* Next node offset to check */
1749 };
1750
1751 /* The state of our finding algortihm */
1752 struct fdt_region_state {
1753         struct fdt_subnode_stack stack[FDT_MAX_DEPTH];  /* node stack */
1754         struct fdt_region *region;      /* Contains list of regions found */
1755         int count;                      /* Numnber of regions found */
1756         const void *fdt;                /* FDT blob */
1757         int max_regions;                /* Maximum regions to find */
1758         int can_merge;          /* 1 if we can merge with previous region */
1759         int start;                      /* Start position of current region */
1760         struct fdt_region_ptrs ptrs;    /* Pointers for what we are up to */
1761 };
1762
1763 /**
1764  * fdt_find_regions() - find regions in device tree
1765  *
1766  * Given a list of nodes to include and properties to exclude, find
1767  * the regions of the device tree which describe those included parts.
1768  *
1769  * The intent is to get a list of regions which will be invariant provided
1770  * those parts are invariant. For example, if you request a list of regions
1771  * for all nodes but exclude the property "data", then you will get the
1772  * same region contents regardless of any change to "data" properties.
1773  *
1774  * This function can be used to produce a byte-stream to send to a hashing
1775  * function to verify that critical parts of the FDT have not changed.
1776  *
1777  * Nodes which are given in 'inc' are included in the region list, as
1778  * are the names of the immediate subnodes nodes (but not the properties
1779  * or subnodes of those subnodes).
1780  *
1781  * For eaxample "/" means to include the root node, all root properties
1782  * and the FDT_BEGIN_NODE and FDT_END_NODE of all subnodes of /. The latter
1783  * ensures that we capture the names of the subnodes. In a hashing situation
1784  * it prevents the root node from changing at all Any change to non-excluded
1785  * properties, names of subnodes or number of subnodes would be detected.
1786  *
1787  * When used with FITs this provides the ability to hash and sign parts of
1788  * the FIT based on different configurations in the FIT. Then it is
1789  * impossible to change anything about that configuration (include images
1790  * attached to the configuration), but it may be possible to add new
1791  * configurations, new images or new signatures within the existing
1792  * framework.
1793  *
1794  * Adding new properties to a device tree may result in the string table
1795  * being extended (if the new property names are different from those
1796  * already added). This function can optionally include a region for
1797  * the string table so that this can be part of the hash too.
1798  *
1799  * The device tree header is not included in the list.
1800  *
1801  * @fdt:        Device tree to check
1802  * @inc:        List of node paths to included
1803  * @inc_count:  Number of node paths in list
1804  * @exc_prop:   List of properties names to exclude
1805  * @exc_prop_count:     Number of properties in exclude list
1806  * @region:     Returns list of regions
1807  * @max_region: Maximum length of region list
1808  * @path:       Pointer to a temporary string for the function to use for
1809  *              building path names
1810  * @path_len:   Length of path, must be large enough to hold the longest
1811  *              path in the tree
1812  * @add_string_tab:     1 to add a region for the string table
1813  * @return number of regions in list. If this is >max_regions then the
1814  * region array was exhausted. You should increase max_regions and try
1815  * the call again.
1816  */
1817 int fdt_find_regions(const void *fdt, char * const inc[], int inc_count,
1818                      char * const exc_prop[], int exc_prop_count,
1819                      struct fdt_region region[], int max_regions,
1820                      char *path, int path_len, int add_string_tab);
1821
1822 /**
1823  * fdt_first_region() - find regions in device tree
1824  *
1825  * Given a nodes and properties to include and properties to exclude, find
1826  * the regions of the device tree which describe those included parts.
1827  *
1828  * The use for this function is twofold. Firstly it provides a convenient
1829  * way of performing a structure-aware grep of the tree. For example it is
1830  * possible to grep for a node and get all the properties associated with
1831  * that node. Trees can be subsetted easily, by specifying the nodes that
1832  * are required, and then writing out the regions returned by this function.
1833  * This is useful for small resource-constrained systems, such as boot
1834  * loaders, which want to use an FDT but do not need to know about all of
1835  * it.
1836  *
1837  * Secondly it makes it easy to hash parts of the tree and detect changes.
1838  * The intent is to get a list of regions which will be invariant provided
1839  * those parts are invariant. For example, if you request a list of regions
1840  * for all nodes but exclude the property "data", then you will get the
1841  * same region contents regardless of any change to "data" properties.
1842  *
1843  * This function can be used to produce a byte-stream to send to a hashing
1844  * function to verify that critical parts of the FDT have not changed.
1845  * Note that semantically null changes in order could still cause false
1846  * hash misses. Such reordering might happen if the tree is regenerated
1847  * from source, and nodes are reordered (the bytes-stream will be emitted
1848  * in a different order and mnay hash functions will detect this). However
1849  * if an existing tree is modified using libfdt functions, such as
1850  * fdt_add_subnode() and fdt_setprop(), then this problem is avoided.
1851  *
1852  * The nodes/properties to include/exclude are defined by a function
1853  * provided by the caller. This function is called for each node and
1854  * property, and must return:
1855  *
1856  *    0 - to exclude this part
1857  *    1 - to include this part
1858  *   -1 - for FDT_IS_PROP only: no information is available, so include
1859  *              if its containing node is included
1860  *
1861  * The last case is only used to deal with properties. Often a property is
1862  * included if its containing node is included - this is the case where
1863  * -1 is returned.. However if the property is specifically required to be
1864  * included/excluded, then 0 or 1 can be returned. Note that including a
1865  * property when the FDT_REG_SUPERNODES flag is given will force its
1866  * containing node to be included since it is not valid to have a property
1867  * that is not in a node.
1868  *
1869  * Using the information provided, the inclusion of a node can be controlled
1870  * either by a node name or its compatible string, or any other property
1871  * that the function can determine.
1872  *
1873  * As an example, including node "/" means to include the root node and all
1874  * root properties. A flag provides a way of also including supernodes (of
1875  * which there is none for the root node), and another flag includes
1876  * immediate subnodes, so in this case we would get the FDT_BEGIN_NODE and
1877  * FDT_END_NODE of all subnodes of /.
1878  *
1879  * The subnode feature helps in a hashing situation since it prevents the
1880  * root node from changing at all. Any change to non-excluded properties,
1881  * names of subnodes or number of subnodes would be detected.
1882  *
1883  * When used with FITs this provides the ability to hash and sign parts of
1884  * the FIT based on different configurations in the FIT. Then it is
1885  * impossible to change anything about that configuration (include images
1886  * attached to the configuration), but it may be possible to add new
1887  * configurations, new images or new signatures within the existing
1888  * framework.
1889  *
1890  * Adding new properties to a device tree may result in the string table
1891  * being extended (if the new property names are different from those
1892  * already added). This function can optionally include a region for
1893  * the string table so that this can be part of the hash too. This is always
1894  * the last region.
1895  *
1896  * The FDT also has a mem_rsvmap table which can also be included, and is
1897  * always the first region if so.
1898  *
1899  * The device tree header is not included in the region list. Since the
1900  * contents of the FDT are changing (shrinking, often), the caller will need
1901  * to regenerate the header anyway.
1902  *
1903  * @fdt:        Device tree to check
1904  * @h_include:  Function to call to determine whether to include a part or
1905  *              not:
1906  *
1907  *              @priv: Private pointer as passed to fdt_find_regions()
1908  *              @fdt: Pointer to FDT blob
1909  *              @offset: Offset of this node / property
1910  *              @type: Type of this part, FDT_IS_...
1911  *              @data: Pointer to data (node name, property name, compatible
1912  *                      string, value (not yet supported)
1913  *              @size: Size of data, or 0 if none
1914  *              @return 0 to exclude, 1 to include, -1 if no information is
1915  *              available
1916  * @priv:       Private pointer passed to h_include
1917  * @region:     Returns list of regions, sorted by offset
1918  * @max_regions: Maximum length of region list
1919  * @path:       Pointer to a temporary string for the function to use for
1920  *              building path names
1921  * @path_len:   Length of path, must be large enough to hold the longest
1922  *              path in the tree
1923  * @flags:      Various flags that control the region algortihm, see
1924  *              FDT_REG_...
1925  * @return number of regions in list. If this is >max_regions then the
1926  * region array was exhausted. You should increase max_regions and try
1927  * the call again. Only the first max_regions elements are available in the
1928  * array.
1929  *
1930  * On error a -ve value is return, which can be:
1931  *
1932  *      -FDT_ERR_BADSTRUCTURE (too deep or more END tags than BEGIN tags
1933  *      -FDT_ERR_BADLAYOUT
1934  *      -FDT_ERR_NOSPACE (path area is too small)
1935  */
1936 int fdt_first_region(const void *fdt,
1937                 int (*h_include)(void *priv, const void *fdt, int offset,
1938                                  int type, const char *data, int size),
1939                 void *priv, struct fdt_region *region,
1940                 char *path, int path_len, int flags,
1941                 struct fdt_region_state *info);
1942
1943 /** fdt_next_region() - find next region
1944  *
1945  * See fdt_first_region() for full description. This function finds the
1946  * next region according to the provided parameters, which must be the same
1947  * as passed to fdt_first_region().
1948  *
1949  * This function can additionally return -FDT_ERR_NOTFOUND when there are no
1950  * more regions
1951  */
1952 int fdt_next_region(const void *fdt,
1953                 int (*h_include)(void *priv, const void *fdt, int offset,
1954                                  int type, const char *data, int size),
1955                 void *priv, struct fdt_region *region,
1956                 char *path, int path_len, int flags,
1957                 struct fdt_region_state *info);
1958
1959 /**
1960  * fdt_add_alias_regions() - find aliases that point to existing regions
1961  *
1962  * Once a device tree grep is complete some of the nodes will be present
1963  * and some will have been dropped. This function checks all the alias nodes
1964  * to figure out which points point to nodes which are still present. These
1965  * aliases need to be kept, along with the nodes they reference.
1966  *
1967  * Given a list of regions function finds the aliases that still apply and
1968  * adds more regions to the list for these. This function is called after
1969  * fdt_next_region() has finished returning regions and requires the same
1970  * state.
1971  *
1972  * @fdt:        Device tree file to reference
1973  * @region:     List of regions that will be kept
1974  * @count:      Number of regions
1975  * @max_regions: Number of entries that can fit in @region
1976  * @info:       Region state as returned from fdt_next_region()
1977  * @return new number of regions in @region (i.e. count + the number added)
1978  * or -FDT_ERR_NOSPACE if there was not enough space.
1979  */
1980 int fdt_add_alias_regions(const void *fdt, struct fdt_region *region, int count,
1981                           int max_regions, struct fdt_region_state *info);
1982
1983 #endif /* _LIBFDT_H */