symbian-qemu-0.9.1-12/qemu-symbian-svp/libfdt/libfdt.h
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     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_set_name - change the name of a given node
       
   850  * @fdt: pointer to the device tree blob
       
   851  * @nodeoffset: structure block offset of a node
       
   852  * @name: name to give the node
       
   853  *
       
   854  * fdt_set_name() replaces the name (including unit address, if any)
       
   855  * of the given node with the given string.  NOTE: this function can't
       
   856  * efficiently check if the new name is unique amongst the given
       
   857  * node's siblings; results are undefined if this function is invoked
       
   858  * with a name equal to one of the given node's siblings.
       
   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
       
   866  *		to contain the new name
       
   867  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
       
   868  *	-FDT_ERR_BADMAGIC,
       
   869  *	-FDT_ERR_BADVERSION,
       
   870  *	-FDT_ERR_BADSTATE, standard meanings
       
   871  */
       
   872 int fdt_set_name(void *fdt, int nodeoffset, const char *name);
       
   873 
       
   874 /**
       
   875  * fdt_setprop - create or change a property
       
   876  * @fdt: pointer to the device tree blob
       
   877  * @nodeoffset: offset of the node whose property to change
       
   878  * @name: name of the property to change
       
   879  * @val: pointer to data to set the property value to
       
   880  * @len: length of the property value
       
   881  *
       
   882  * fdt_setprop() sets the value of the named property in the given
       
   883  * node to the given value and length, creeating the property if it
       
   884  * does not already exist.
       
   885  *
       
   886  * This function may insert or delete data from the blob, and will
       
   887  * therefore change the offsets of some existing nodes.
       
   888  *
       
   889  * returns:
       
   890  *	0, on success
       
   891  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
       
   892  *		contain the new property value
       
   893  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
       
   894  *	-FDT_ERR_BADLAYOUT,
       
   895  *	-FDT_ERR_BADMAGIC,
       
   896  *	-FDT_ERR_BADVERSION,
       
   897  *	-FDT_ERR_BADSTATE,
       
   898  *	-FDT_ERR_BADSTRUCTURE,
       
   899  *	-FDT_ERR_BADLAYOUT,
       
   900  *	-FDT_ERR_TRUNCATED, standard meanings
       
   901  */
       
   902 int fdt_setprop(void *fdt, int nodeoffset, const char *name,
       
   903 		const void *val, int len);
       
   904 
       
   905 /**
       
   906  * fdt_setprop_cell - set a property to a single cell value
       
   907  * @fdt: pointer to the device tree blob
       
   908  * @nodeoffset: offset of the node whose property to change
       
   909  * @name: name of the property to change
       
   910  * @val: 32-bit integer value for the property (native endian)
       
   911  *
       
   912  * fdt_setprop_cell() sets the value of the named property in the
       
   913  * given node to the given cell value (converting to big-endian if
       
   914  * necessary), or creates a new property with that value if it does
       
   915  * not already exist.
       
   916  *
       
   917  * This function may insert or delete data from the blob, and will
       
   918  * therefore change the offsets of some existing nodes.
       
   919  *
       
   920  * returns:
       
   921  *	0, on success
       
   922  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
       
   923  *		contain the new property value
       
   924  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
       
   925  *	-FDT_ERR_BADLAYOUT,
       
   926  *	-FDT_ERR_BADMAGIC,
       
   927  *	-FDT_ERR_BADVERSION,
       
   928  *	-FDT_ERR_BADSTATE,
       
   929  *	-FDT_ERR_BADSTRUCTURE,
       
   930  *	-FDT_ERR_BADLAYOUT,
       
   931  *	-FDT_ERR_TRUNCATED, standard meanings
       
   932  */
       
   933 static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name,
       
   934 				   uint32_t val)
       
   935 {
       
   936 	val = cpu_to_fdt32(val);
       
   937 	return fdt_setprop(fdt, nodeoffset, name, &val, sizeof(val));
       
   938 }
       
   939 
       
   940 /**
       
   941  * fdt_setprop_string - set a property to a string value
       
   942  * @fdt: pointer to the device tree blob
       
   943  * @nodeoffset: offset of the node whose property to change
       
   944  * @name: name of the property to change
       
   945  * @str: string value for the property
       
   946  *
       
   947  * fdt_setprop_string() sets the value of the named property in the
       
   948  * given node to the given string value (using the length of the
       
   949  * string to determine the new length of the property), or creates a
       
   950  * new property with that value if it does not already exist.
       
   951  *
       
   952  * This function may insert or delete data from the blob, and will
       
   953  * therefore change the offsets of some existing nodes.
       
   954  *
       
   955  * returns:
       
   956  *	0, on success
       
   957  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
       
   958  *		contain the new property value
       
   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_BADLAYOUT,
       
   966  *	-FDT_ERR_TRUNCATED, standard meanings
       
   967  */
       
   968 #define fdt_setprop_string(fdt, nodeoffset, name, str) \
       
   969 	fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
       
   970 
       
   971 /**
       
   972  * fdt_delprop - delete a property
       
   973  * @fdt: pointer to the device tree blob
       
   974  * @nodeoffset: offset of the node whose property to nop
       
   975  * @name: name of the property to nop
       
   976  *
       
   977  * fdt_del_property() will delete the given property.
       
   978  *
       
   979  * This function will delete data from the blob, and will therefore
       
   980  * change the offsets of some existing nodes.
       
   981  *
       
   982  * returns:
       
   983  *	0, on success
       
   984  *	-FDT_ERR_NOTFOUND, node does not have the named property
       
   985  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
       
   986  *	-FDT_ERR_BADLAYOUT,
       
   987  *	-FDT_ERR_BADMAGIC,
       
   988  *	-FDT_ERR_BADVERSION,
       
   989  *	-FDT_ERR_BADSTATE,
       
   990  *	-FDT_ERR_BADSTRUCTURE,
       
   991  *	-FDT_ERR_TRUNCATED, standard meanings
       
   992  */
       
   993 int fdt_delprop(void *fdt, int nodeoffset, const char *name);
       
   994 
       
   995 /**
       
   996  * fdt_add_subnode_namelen - creates a new node based on substring
       
   997  * @fdt: pointer to the device tree blob
       
   998  * @parentoffset: structure block offset of a node
       
   999  * @name: name of the subnode to locate
       
  1000  * @namelen: number of characters of name to consider
       
  1001  *
       
  1002  * Identical to fdt_add_subnode(), but use only the first namelen
       
  1003  * characters of name as the name of the new node.  This is useful for
       
  1004  * creating subnodes based on a portion of a larger string, such as a
       
  1005  * full path.
       
  1006  */
       
  1007 int fdt_add_subnode_namelen(void *fdt, int parentoffset,
       
  1008 			    const char *name, int namelen);
       
  1009 
       
  1010 /**
       
  1011  * fdt_add_subnode - creates a new node
       
  1012  * @fdt: pointer to the device tree blob
       
  1013  * @parentoffset: structure block offset of a node
       
  1014  * @name: name of the subnode to locate
       
  1015  *
       
  1016  * fdt_add_subnode() creates a new node as a subnode of the node at
       
  1017  * structure block offset parentoffset, with the given name (which
       
  1018  * should include the unit address, if any).
       
  1019  *
       
  1020  * This function will insert data into the blob, and will therefore
       
  1021  * change the offsets of some existing nodes.
       
  1022 
       
  1023  * returns:
       
  1024  *	structure block offset of the created nodeequested subnode (>=0), on success
       
  1025  *	-FDT_ERR_NOTFOUND, if the requested subnode does not exist
       
  1026  *	-FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE tag
       
  1027  *	-FDT_ERR_EXISTS, if the node at parentoffset already has a subnode of
       
  1028  *		the given name
       
  1029  *	-FDT_ERR_NOSPACE, if there is insufficient free space in the
       
  1030  *		blob to contain the new node
       
  1031  *	-FDT_ERR_NOSPACE
       
  1032  *	-FDT_ERR_BADLAYOUT
       
  1033  *      -FDT_ERR_BADMAGIC,
       
  1034  *	-FDT_ERR_BADVERSION,
       
  1035  *	-FDT_ERR_BADSTATE,
       
  1036  *	-FDT_ERR_BADSTRUCTURE,
       
  1037  *	-FDT_ERR_TRUNCATED, standard meanings.
       
  1038  */
       
  1039 int fdt_add_subnode(void *fdt, int parentoffset, const char *name);
       
  1040 
       
  1041 /**
       
  1042  * fdt_del_node - delete a node (subtree)
       
  1043  * @fdt: pointer to the device tree blob
       
  1044  * @nodeoffset: offset of the node to nop
       
  1045  *
       
  1046  * fdt_del_node() will remove the given node, including all its
       
  1047  * subnodes if any, from the blob.
       
  1048  *
       
  1049  * This function will delete data from the blob, and will therefore
       
  1050  * change the offsets of some existing nodes.
       
  1051  *
       
  1052  * returns:
       
  1053  *	0, on success
       
  1054  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
       
  1055  *	-FDT_ERR_BADLAYOUT,
       
  1056  *	-FDT_ERR_BADMAGIC,
       
  1057  *	-FDT_ERR_BADVERSION,
       
  1058  *	-FDT_ERR_BADSTATE,
       
  1059  *	-FDT_ERR_BADSTRUCTURE,
       
  1060  *	-FDT_ERR_TRUNCATED, standard meanings
       
  1061  */
       
  1062 int fdt_del_node(void *fdt, int nodeoffset);
       
  1063 
       
  1064 /**********************************************************************/
       
  1065 /* Debugging / informational functions                                */
       
  1066 /**********************************************************************/
       
  1067 
       
  1068 const char *fdt_strerror(int errval);
       
  1069 
       
  1070 #endif /* _LIBFDT_H */