xref: /OK3568_Linux_fs/kernel/scripts/dtc/libfdt/libfdt.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) */
2*4882a593Smuzhiyun #ifndef LIBFDT_H
3*4882a593Smuzhiyun #define LIBFDT_H
4*4882a593Smuzhiyun /*
5*4882a593Smuzhiyun  * libfdt - Flat Device Tree manipulation
6*4882a593Smuzhiyun  * Copyright (C) 2006 David Gibson, IBM Corporation.
7*4882a593Smuzhiyun  */
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun #include "libfdt_env.h"
10*4882a593Smuzhiyun #include "fdt.h"
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #ifdef __cplusplus
13*4882a593Smuzhiyun extern "C" {
14*4882a593Smuzhiyun #endif
15*4882a593Smuzhiyun 
16*4882a593Smuzhiyun #define FDT_FIRST_SUPPORTED_VERSION	0x02
17*4882a593Smuzhiyun #define FDT_LAST_SUPPORTED_VERSION	0x11
18*4882a593Smuzhiyun 
19*4882a593Smuzhiyun /* Error codes: informative error codes */
20*4882a593Smuzhiyun #define FDT_ERR_NOTFOUND	1
21*4882a593Smuzhiyun 	/* FDT_ERR_NOTFOUND: The requested node or property does not exist */
22*4882a593Smuzhiyun #define FDT_ERR_EXISTS		2
23*4882a593Smuzhiyun 	/* FDT_ERR_EXISTS: Attempted to create a node or property which
24*4882a593Smuzhiyun 	 * already exists */
25*4882a593Smuzhiyun #define FDT_ERR_NOSPACE		3
26*4882a593Smuzhiyun 	/* FDT_ERR_NOSPACE: Operation needed to expand the device
27*4882a593Smuzhiyun 	 * tree, but its buffer did not have sufficient space to
28*4882a593Smuzhiyun 	 * contain the expanded tree. Use fdt_open_into() to move the
29*4882a593Smuzhiyun 	 * device tree to a buffer with more space. */
30*4882a593Smuzhiyun 
31*4882a593Smuzhiyun /* Error codes: codes for bad parameters */
32*4882a593Smuzhiyun #define FDT_ERR_BADOFFSET	4
33*4882a593Smuzhiyun 	/* FDT_ERR_BADOFFSET: Function was passed a structure block
34*4882a593Smuzhiyun 	 * offset which is out-of-bounds, or which points to an
35*4882a593Smuzhiyun 	 * unsuitable part of the structure for the operation. */
36*4882a593Smuzhiyun #define FDT_ERR_BADPATH		5
37*4882a593Smuzhiyun 	/* FDT_ERR_BADPATH: Function was passed a badly formatted path
38*4882a593Smuzhiyun 	 * (e.g. missing a leading / for a function which requires an
39*4882a593Smuzhiyun 	 * absolute path) */
40*4882a593Smuzhiyun #define FDT_ERR_BADPHANDLE	6
41*4882a593Smuzhiyun 	/* FDT_ERR_BADPHANDLE: Function was passed an invalid phandle.
42*4882a593Smuzhiyun 	 * This can be caused either by an invalid phandle property
43*4882a593Smuzhiyun 	 * length, or the phandle value was either 0 or -1, which are
44*4882a593Smuzhiyun 	 * not permitted. */
45*4882a593Smuzhiyun #define FDT_ERR_BADSTATE	7
46*4882a593Smuzhiyun 	/* FDT_ERR_BADSTATE: Function was passed an incomplete device
47*4882a593Smuzhiyun 	 * tree created by the sequential-write functions, which is
48*4882a593Smuzhiyun 	 * not sufficiently complete for the requested operation. */
49*4882a593Smuzhiyun 
50*4882a593Smuzhiyun /* Error codes: codes for bad device tree blobs */
51*4882a593Smuzhiyun #define FDT_ERR_TRUNCATED	8
52*4882a593Smuzhiyun 	/* FDT_ERR_TRUNCATED: FDT or a sub-block is improperly
53*4882a593Smuzhiyun 	 * terminated (overflows, goes outside allowed bounds, or
54*4882a593Smuzhiyun 	 * isn't properly terminated).  */
55*4882a593Smuzhiyun #define FDT_ERR_BADMAGIC	9
56*4882a593Smuzhiyun 	/* FDT_ERR_BADMAGIC: Given "device tree" appears not to be a
57*4882a593Smuzhiyun 	 * device tree at all - it is missing the flattened device
58*4882a593Smuzhiyun 	 * tree magic number. */
59*4882a593Smuzhiyun #define FDT_ERR_BADVERSION	10
60*4882a593Smuzhiyun 	/* FDT_ERR_BADVERSION: Given device tree has a version which
61*4882a593Smuzhiyun 	 * can't be handled by the requested operation.  For
62*4882a593Smuzhiyun 	 * read-write functions, this may mean that fdt_open_into() is
63*4882a593Smuzhiyun 	 * required to convert the tree to the expected version. */
64*4882a593Smuzhiyun #define FDT_ERR_BADSTRUCTURE	11
65*4882a593Smuzhiyun 	/* FDT_ERR_BADSTRUCTURE: Given device tree has a corrupt
66*4882a593Smuzhiyun 	 * structure block or other serious error (e.g. misnested
67*4882a593Smuzhiyun 	 * nodes, or subnodes preceding properties). */
68*4882a593Smuzhiyun #define FDT_ERR_BADLAYOUT	12
69*4882a593Smuzhiyun 	/* FDT_ERR_BADLAYOUT: For read-write functions, the given
70*4882a593Smuzhiyun 	 * device tree has it's sub-blocks in an order that the
71*4882a593Smuzhiyun 	 * function can't handle (memory reserve map, then structure,
72*4882a593Smuzhiyun 	 * then strings).  Use fdt_open_into() to reorganize the tree
73*4882a593Smuzhiyun 	 * into a form suitable for the read-write operations. */
74*4882a593Smuzhiyun 
75*4882a593Smuzhiyun /* "Can't happen" error indicating a bug in libfdt */
76*4882a593Smuzhiyun #define FDT_ERR_INTERNAL	13
77*4882a593Smuzhiyun 	/* FDT_ERR_INTERNAL: libfdt has failed an internal assertion.
78*4882a593Smuzhiyun 	 * Should never be returned, if it is, it indicates a bug in
79*4882a593Smuzhiyun 	 * libfdt itself. */
80*4882a593Smuzhiyun 
81*4882a593Smuzhiyun /* Errors in device tree content */
82*4882a593Smuzhiyun #define FDT_ERR_BADNCELLS	14
83*4882a593Smuzhiyun 	/* FDT_ERR_BADNCELLS: Device tree has a #address-cells, #size-cells
84*4882a593Smuzhiyun 	 * or similar property with a bad format or value */
85*4882a593Smuzhiyun 
86*4882a593Smuzhiyun #define FDT_ERR_BADVALUE	15
87*4882a593Smuzhiyun 	/* FDT_ERR_BADVALUE: Device tree has a property with an unexpected
88*4882a593Smuzhiyun 	 * value. For example: a property expected to contain a string list
89*4882a593Smuzhiyun 	 * is not NUL-terminated within the length of its value. */
90*4882a593Smuzhiyun 
91*4882a593Smuzhiyun #define FDT_ERR_BADOVERLAY	16
92*4882a593Smuzhiyun 	/* FDT_ERR_BADOVERLAY: The device tree overlay, while
93*4882a593Smuzhiyun 	 * correctly structured, cannot be applied due to some
94*4882a593Smuzhiyun 	 * unexpected or missing value, property or node. */
95*4882a593Smuzhiyun 
96*4882a593Smuzhiyun #define FDT_ERR_NOPHANDLES	17
97*4882a593Smuzhiyun 	/* FDT_ERR_NOPHANDLES: The device tree doesn't have any
98*4882a593Smuzhiyun 	 * phandle available anymore without causing an overflow */
99*4882a593Smuzhiyun 
100*4882a593Smuzhiyun #define FDT_ERR_BADFLAGS	18
101*4882a593Smuzhiyun 	/* FDT_ERR_BADFLAGS: The function was passed a flags field that
102*4882a593Smuzhiyun 	 * contains invalid flags or an invalid combination of flags. */
103*4882a593Smuzhiyun 
104*4882a593Smuzhiyun #define FDT_ERR_MAX		18
105*4882a593Smuzhiyun 
106*4882a593Smuzhiyun /* constants */
107*4882a593Smuzhiyun #define FDT_MAX_PHANDLE 0xfffffffe
108*4882a593Smuzhiyun 	/* Valid values for phandles range from 1 to 2^32-2. */
109*4882a593Smuzhiyun 
110*4882a593Smuzhiyun /**********************************************************************/
111*4882a593Smuzhiyun /* Low-level functions (you probably don't need these)                */
112*4882a593Smuzhiyun /**********************************************************************/
113*4882a593Smuzhiyun 
114*4882a593Smuzhiyun #ifndef SWIG /* This function is not useful in Python */
115*4882a593Smuzhiyun const void *fdt_offset_ptr(const void *fdt, int offset, unsigned int checklen);
116*4882a593Smuzhiyun #endif
fdt_offset_ptr_w(void * fdt,int offset,int checklen)117*4882a593Smuzhiyun static inline void *fdt_offset_ptr_w(void *fdt, int offset, int checklen)
118*4882a593Smuzhiyun {
119*4882a593Smuzhiyun 	return (void *)(uintptr_t)fdt_offset_ptr(fdt, offset, checklen);
120*4882a593Smuzhiyun }
121*4882a593Smuzhiyun 
122*4882a593Smuzhiyun uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
123*4882a593Smuzhiyun 
124*4882a593Smuzhiyun /*
125*4882a593Smuzhiyun  * Alignment helpers:
126*4882a593Smuzhiyun  *     These helpers access words from a device tree blob.  They're
127*4882a593Smuzhiyun  *     built to work even with unaligned pointers on platforms (ike
128*4882a593Smuzhiyun  *     ARM) that don't like unaligned loads and stores
129*4882a593Smuzhiyun  */
130*4882a593Smuzhiyun 
fdt32_ld(const fdt32_t * p)131*4882a593Smuzhiyun static inline uint32_t fdt32_ld(const fdt32_t *p)
132*4882a593Smuzhiyun {
133*4882a593Smuzhiyun 	const uint8_t *bp = (const uint8_t *)p;
134*4882a593Smuzhiyun 
135*4882a593Smuzhiyun 	return ((uint32_t)bp[0] << 24)
136*4882a593Smuzhiyun 		| ((uint32_t)bp[1] << 16)
137*4882a593Smuzhiyun 		| ((uint32_t)bp[2] << 8)
138*4882a593Smuzhiyun 		| bp[3];
139*4882a593Smuzhiyun }
140*4882a593Smuzhiyun 
fdt32_st(void * property,uint32_t value)141*4882a593Smuzhiyun static inline void fdt32_st(void *property, uint32_t value)
142*4882a593Smuzhiyun {
143*4882a593Smuzhiyun 	uint8_t *bp = (uint8_t *)property;
144*4882a593Smuzhiyun 
145*4882a593Smuzhiyun 	bp[0] = value >> 24;
146*4882a593Smuzhiyun 	bp[1] = (value >> 16) & 0xff;
147*4882a593Smuzhiyun 	bp[2] = (value >> 8) & 0xff;
148*4882a593Smuzhiyun 	bp[3] = value & 0xff;
149*4882a593Smuzhiyun }
150*4882a593Smuzhiyun 
fdt64_ld(const fdt64_t * p)151*4882a593Smuzhiyun static inline uint64_t fdt64_ld(const fdt64_t *p)
152*4882a593Smuzhiyun {
153*4882a593Smuzhiyun 	const uint8_t *bp = (const uint8_t *)p;
154*4882a593Smuzhiyun 
155*4882a593Smuzhiyun 	return ((uint64_t)bp[0] << 56)
156*4882a593Smuzhiyun 		| ((uint64_t)bp[1] << 48)
157*4882a593Smuzhiyun 		| ((uint64_t)bp[2] << 40)
158*4882a593Smuzhiyun 		| ((uint64_t)bp[3] << 32)
159*4882a593Smuzhiyun 		| ((uint64_t)bp[4] << 24)
160*4882a593Smuzhiyun 		| ((uint64_t)bp[5] << 16)
161*4882a593Smuzhiyun 		| ((uint64_t)bp[6] << 8)
162*4882a593Smuzhiyun 		| bp[7];
163*4882a593Smuzhiyun }
164*4882a593Smuzhiyun 
fdt64_st(void * property,uint64_t value)165*4882a593Smuzhiyun static inline void fdt64_st(void *property, uint64_t value)
166*4882a593Smuzhiyun {
167*4882a593Smuzhiyun 	uint8_t *bp = (uint8_t *)property;
168*4882a593Smuzhiyun 
169*4882a593Smuzhiyun 	bp[0] = value >> 56;
170*4882a593Smuzhiyun 	bp[1] = (value >> 48) & 0xff;
171*4882a593Smuzhiyun 	bp[2] = (value >> 40) & 0xff;
172*4882a593Smuzhiyun 	bp[3] = (value >> 32) & 0xff;
173*4882a593Smuzhiyun 	bp[4] = (value >> 24) & 0xff;
174*4882a593Smuzhiyun 	bp[5] = (value >> 16) & 0xff;
175*4882a593Smuzhiyun 	bp[6] = (value >> 8) & 0xff;
176*4882a593Smuzhiyun 	bp[7] = value & 0xff;
177*4882a593Smuzhiyun }
178*4882a593Smuzhiyun 
179*4882a593Smuzhiyun /**********************************************************************/
180*4882a593Smuzhiyun /* Traversal functions                                                */
181*4882a593Smuzhiyun /**********************************************************************/
182*4882a593Smuzhiyun 
183*4882a593Smuzhiyun int fdt_next_node(const void *fdt, int offset, int *depth);
184*4882a593Smuzhiyun 
185*4882a593Smuzhiyun /**
186*4882a593Smuzhiyun  * fdt_first_subnode() - get offset of first direct subnode
187*4882a593Smuzhiyun  *
188*4882a593Smuzhiyun  * @fdt:	FDT blob
189*4882a593Smuzhiyun  * @offset:	Offset of node to check
190*4882a593Smuzhiyun  * @return offset of first subnode, or -FDT_ERR_NOTFOUND if there is none
191*4882a593Smuzhiyun  */
192*4882a593Smuzhiyun int fdt_first_subnode(const void *fdt, int offset);
193*4882a593Smuzhiyun 
194*4882a593Smuzhiyun /**
195*4882a593Smuzhiyun  * fdt_next_subnode() - get offset of next direct subnode
196*4882a593Smuzhiyun  *
197*4882a593Smuzhiyun  * After first calling fdt_first_subnode(), call this function repeatedly to
198*4882a593Smuzhiyun  * get direct subnodes of a parent node.
199*4882a593Smuzhiyun  *
200*4882a593Smuzhiyun  * @fdt:	FDT blob
201*4882a593Smuzhiyun  * @offset:	Offset of previous subnode
202*4882a593Smuzhiyun  * @return offset of next subnode, or -FDT_ERR_NOTFOUND if there are no more
203*4882a593Smuzhiyun  * subnodes
204*4882a593Smuzhiyun  */
205*4882a593Smuzhiyun int fdt_next_subnode(const void *fdt, int offset);
206*4882a593Smuzhiyun 
207*4882a593Smuzhiyun /**
208*4882a593Smuzhiyun  * fdt_for_each_subnode - iterate over all subnodes of a parent
209*4882a593Smuzhiyun  *
210*4882a593Smuzhiyun  * @node:	child node (int, lvalue)
211*4882a593Smuzhiyun  * @fdt:	FDT blob (const void *)
212*4882a593Smuzhiyun  * @parent:	parent node (int)
213*4882a593Smuzhiyun  *
214*4882a593Smuzhiyun  * This is actually a wrapper around a for loop and would be used like so:
215*4882a593Smuzhiyun  *
216*4882a593Smuzhiyun  *	fdt_for_each_subnode(node, fdt, parent) {
217*4882a593Smuzhiyun  *		Use node
218*4882a593Smuzhiyun  *		...
219*4882a593Smuzhiyun  *	}
220*4882a593Smuzhiyun  *
221*4882a593Smuzhiyun  *	if ((node < 0) && (node != -FDT_ERR_NOTFOUND)) {
222*4882a593Smuzhiyun  *		Error handling
223*4882a593Smuzhiyun  *	}
224*4882a593Smuzhiyun  *
225*4882a593Smuzhiyun  * Note that this is implemented as a macro and @node is used as
226*4882a593Smuzhiyun  * iterator in the loop. The parent variable be constant or even a
227*4882a593Smuzhiyun  * literal.
228*4882a593Smuzhiyun  *
229*4882a593Smuzhiyun  */
230*4882a593Smuzhiyun #define fdt_for_each_subnode(node, fdt, parent)		\
231*4882a593Smuzhiyun 	for (node = fdt_first_subnode(fdt, parent);	\
232*4882a593Smuzhiyun 	     node >= 0;					\
233*4882a593Smuzhiyun 	     node = fdt_next_subnode(fdt, node))
234*4882a593Smuzhiyun 
235*4882a593Smuzhiyun /**********************************************************************/
236*4882a593Smuzhiyun /* General functions                                                  */
237*4882a593Smuzhiyun /**********************************************************************/
238*4882a593Smuzhiyun #define fdt_get_header(fdt, field) \
239*4882a593Smuzhiyun 	(fdt32_ld(&((const struct fdt_header *)(fdt))->field))
240*4882a593Smuzhiyun #define fdt_magic(fdt)			(fdt_get_header(fdt, magic))
241*4882a593Smuzhiyun #define fdt_totalsize(fdt)		(fdt_get_header(fdt, totalsize))
242*4882a593Smuzhiyun #define fdt_off_dt_struct(fdt)		(fdt_get_header(fdt, off_dt_struct))
243*4882a593Smuzhiyun #define fdt_off_dt_strings(fdt)		(fdt_get_header(fdt, off_dt_strings))
244*4882a593Smuzhiyun #define fdt_off_mem_rsvmap(fdt)		(fdt_get_header(fdt, off_mem_rsvmap))
245*4882a593Smuzhiyun #define fdt_version(fdt)		(fdt_get_header(fdt, version))
246*4882a593Smuzhiyun #define fdt_last_comp_version(fdt)	(fdt_get_header(fdt, last_comp_version))
247*4882a593Smuzhiyun #define fdt_boot_cpuid_phys(fdt)	(fdt_get_header(fdt, boot_cpuid_phys))
248*4882a593Smuzhiyun #define fdt_size_dt_strings(fdt)	(fdt_get_header(fdt, size_dt_strings))
249*4882a593Smuzhiyun #define fdt_size_dt_struct(fdt)		(fdt_get_header(fdt, size_dt_struct))
250*4882a593Smuzhiyun 
251*4882a593Smuzhiyun #define fdt_set_hdr_(name) \
252*4882a593Smuzhiyun 	static inline void fdt_set_##name(void *fdt, uint32_t val) \
253*4882a593Smuzhiyun 	{ \
254*4882a593Smuzhiyun 		struct fdt_header *fdth = (struct fdt_header *)fdt; \
255*4882a593Smuzhiyun 		fdth->name = cpu_to_fdt32(val); \
256*4882a593Smuzhiyun 	}
257*4882a593Smuzhiyun fdt_set_hdr_(magic);
258*4882a593Smuzhiyun fdt_set_hdr_(totalsize);
259*4882a593Smuzhiyun fdt_set_hdr_(off_dt_struct);
260*4882a593Smuzhiyun fdt_set_hdr_(off_dt_strings);
261*4882a593Smuzhiyun fdt_set_hdr_(off_mem_rsvmap);
262*4882a593Smuzhiyun fdt_set_hdr_(version);
263*4882a593Smuzhiyun fdt_set_hdr_(last_comp_version);
264*4882a593Smuzhiyun fdt_set_hdr_(boot_cpuid_phys);
265*4882a593Smuzhiyun fdt_set_hdr_(size_dt_strings);
266*4882a593Smuzhiyun fdt_set_hdr_(size_dt_struct);
267*4882a593Smuzhiyun #undef fdt_set_hdr_
268*4882a593Smuzhiyun 
269*4882a593Smuzhiyun /**
270*4882a593Smuzhiyun  * fdt_header_size - return the size of the tree's header
271*4882a593Smuzhiyun  * @fdt: pointer to a flattened device tree
272*4882a593Smuzhiyun  */
273*4882a593Smuzhiyun size_t fdt_header_size(const void *fdt);
274*4882a593Smuzhiyun 
275*4882a593Smuzhiyun /**
276*4882a593Smuzhiyun  * fdt_header_size_ - internal function which takes a version number
277*4882a593Smuzhiyun  */
278*4882a593Smuzhiyun size_t fdt_header_size_(uint32_t version);
279*4882a593Smuzhiyun 
280*4882a593Smuzhiyun /**
281*4882a593Smuzhiyun  * fdt_check_header - sanity check a device tree header
282*4882a593Smuzhiyun 
283*4882a593Smuzhiyun  * @fdt: pointer to data which might be a flattened device tree
284*4882a593Smuzhiyun  *
285*4882a593Smuzhiyun  * fdt_check_header() checks that the given buffer contains what
286*4882a593Smuzhiyun  * appears to be a flattened device tree, and that the header contains
287*4882a593Smuzhiyun  * valid information (to the extent that can be determined from the
288*4882a593Smuzhiyun  * header alone).
289*4882a593Smuzhiyun  *
290*4882a593Smuzhiyun  * returns:
291*4882a593Smuzhiyun  *     0, if the buffer appears to contain a valid device tree
292*4882a593Smuzhiyun  *     -FDT_ERR_BADMAGIC,
293*4882a593Smuzhiyun  *     -FDT_ERR_BADVERSION,
294*4882a593Smuzhiyun  *     -FDT_ERR_BADSTATE,
295*4882a593Smuzhiyun  *     -FDT_ERR_TRUNCATED, standard meanings, as above
296*4882a593Smuzhiyun  */
297*4882a593Smuzhiyun int fdt_check_header(const void *fdt);
298*4882a593Smuzhiyun 
299*4882a593Smuzhiyun /**
300*4882a593Smuzhiyun  * fdt_move - move a device tree around in memory
301*4882a593Smuzhiyun  * @fdt: pointer to the device tree to move
302*4882a593Smuzhiyun  * @buf: pointer to memory where the device is to be moved
303*4882a593Smuzhiyun  * @bufsize: size of the memory space at buf
304*4882a593Smuzhiyun  *
305*4882a593Smuzhiyun  * fdt_move() relocates, if possible, the device tree blob located at
306*4882a593Smuzhiyun  * fdt to the buffer at buf of size bufsize.  The buffer may overlap
307*4882a593Smuzhiyun  * with the existing device tree blob at fdt.  Therefore,
308*4882a593Smuzhiyun  *     fdt_move(fdt, fdt, fdt_totalsize(fdt))
309*4882a593Smuzhiyun  * should always succeed.
310*4882a593Smuzhiyun  *
311*4882a593Smuzhiyun  * returns:
312*4882a593Smuzhiyun  *     0, on success
313*4882a593Smuzhiyun  *     -FDT_ERR_NOSPACE, bufsize is insufficient to contain the device tree
314*4882a593Smuzhiyun  *     -FDT_ERR_BADMAGIC,
315*4882a593Smuzhiyun  *     -FDT_ERR_BADVERSION,
316*4882a593Smuzhiyun  *     -FDT_ERR_BADSTATE, standard meanings
317*4882a593Smuzhiyun  */
318*4882a593Smuzhiyun int fdt_move(const void *fdt, void *buf, int bufsize);
319*4882a593Smuzhiyun 
320*4882a593Smuzhiyun /**********************************************************************/
321*4882a593Smuzhiyun /* Read-only functions                                                */
322*4882a593Smuzhiyun /**********************************************************************/
323*4882a593Smuzhiyun 
324*4882a593Smuzhiyun int fdt_check_full(const void *fdt, size_t bufsize);
325*4882a593Smuzhiyun 
326*4882a593Smuzhiyun /**
327*4882a593Smuzhiyun  * fdt_get_string - retrieve a string from the strings block of a device tree
328*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
329*4882a593Smuzhiyun  * @stroffset: offset of the string within the strings block (native endian)
330*4882a593Smuzhiyun  * @lenp: optional pointer to return the string's length
331*4882a593Smuzhiyun  *
332*4882a593Smuzhiyun  * fdt_get_string() retrieves a pointer to a single string from the
333*4882a593Smuzhiyun  * strings block of the device tree blob at fdt, and optionally also
334*4882a593Smuzhiyun  * returns the string's length in *lenp.
335*4882a593Smuzhiyun  *
336*4882a593Smuzhiyun  * returns:
337*4882a593Smuzhiyun  *     a pointer to the string, on success
338*4882a593Smuzhiyun  *     NULL, if stroffset is out of bounds, or doesn't point to a valid string
339*4882a593Smuzhiyun  */
340*4882a593Smuzhiyun const char *fdt_get_string(const void *fdt, int stroffset, int *lenp);
341*4882a593Smuzhiyun 
342*4882a593Smuzhiyun /**
343*4882a593Smuzhiyun  * fdt_string - retrieve a string from the strings block of a device tree
344*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
345*4882a593Smuzhiyun  * @stroffset: offset of the string within the strings block (native endian)
346*4882a593Smuzhiyun  *
347*4882a593Smuzhiyun  * fdt_string() retrieves a pointer to a single string from the
348*4882a593Smuzhiyun  * strings block of the device tree blob at fdt.
349*4882a593Smuzhiyun  *
350*4882a593Smuzhiyun  * returns:
351*4882a593Smuzhiyun  *     a pointer to the string, on success
352*4882a593Smuzhiyun  *     NULL, if stroffset is out of bounds, or doesn't point to a valid string
353*4882a593Smuzhiyun  */
354*4882a593Smuzhiyun const char *fdt_string(const void *fdt, int stroffset);
355*4882a593Smuzhiyun 
356*4882a593Smuzhiyun /**
357*4882a593Smuzhiyun  * fdt_find_max_phandle - find and return the highest phandle in a tree
358*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
359*4882a593Smuzhiyun  * @phandle: return location for the highest phandle value found in the tree
360*4882a593Smuzhiyun  *
361*4882a593Smuzhiyun  * fdt_find_max_phandle() finds the highest phandle value in the given device
362*4882a593Smuzhiyun  * tree. The value returned in @phandle is only valid if the function returns
363*4882a593Smuzhiyun  * success.
364*4882a593Smuzhiyun  *
365*4882a593Smuzhiyun  * returns:
366*4882a593Smuzhiyun  *     0 on success or a negative error code on failure
367*4882a593Smuzhiyun  */
368*4882a593Smuzhiyun int fdt_find_max_phandle(const void *fdt, uint32_t *phandle);
369*4882a593Smuzhiyun 
370*4882a593Smuzhiyun /**
371*4882a593Smuzhiyun  * fdt_get_max_phandle - retrieves the highest phandle in a tree
372*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
373*4882a593Smuzhiyun  *
374*4882a593Smuzhiyun  * fdt_get_max_phandle retrieves the highest phandle in the given
375*4882a593Smuzhiyun  * device tree. This will ignore badly formatted phandles, or phandles
376*4882a593Smuzhiyun  * with a value of 0 or -1.
377*4882a593Smuzhiyun  *
378*4882a593Smuzhiyun  * This function is deprecated in favour of fdt_find_max_phandle().
379*4882a593Smuzhiyun  *
380*4882a593Smuzhiyun  * returns:
381*4882a593Smuzhiyun  *      the highest phandle on success
382*4882a593Smuzhiyun  *      0, if no phandle was found in the device tree
383*4882a593Smuzhiyun  *      -1, if an error occurred
384*4882a593Smuzhiyun  */
fdt_get_max_phandle(const void * fdt)385*4882a593Smuzhiyun static inline uint32_t fdt_get_max_phandle(const void *fdt)
386*4882a593Smuzhiyun {
387*4882a593Smuzhiyun 	uint32_t phandle;
388*4882a593Smuzhiyun 	int err;
389*4882a593Smuzhiyun 
390*4882a593Smuzhiyun 	err = fdt_find_max_phandle(fdt, &phandle);
391*4882a593Smuzhiyun 	if (err < 0)
392*4882a593Smuzhiyun 		return (uint32_t)-1;
393*4882a593Smuzhiyun 
394*4882a593Smuzhiyun 	return phandle;
395*4882a593Smuzhiyun }
396*4882a593Smuzhiyun 
397*4882a593Smuzhiyun /**
398*4882a593Smuzhiyun  * fdt_generate_phandle - return a new, unused phandle for a device tree blob
399*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
400*4882a593Smuzhiyun  * @phandle: return location for the new phandle
401*4882a593Smuzhiyun  *
402*4882a593Smuzhiyun  * Walks the device tree blob and looks for the highest phandle value. On
403*4882a593Smuzhiyun  * success, the new, unused phandle value (one higher than the previously
404*4882a593Smuzhiyun  * highest phandle value in the device tree blob) will be returned in the
405*4882a593Smuzhiyun  * @phandle parameter.
406*4882a593Smuzhiyun  *
407*4882a593Smuzhiyun  * Returns:
408*4882a593Smuzhiyun  *   0 on success or a negative error-code on failure
409*4882a593Smuzhiyun  */
410*4882a593Smuzhiyun int fdt_generate_phandle(const void *fdt, uint32_t *phandle);
411*4882a593Smuzhiyun 
412*4882a593Smuzhiyun /**
413*4882a593Smuzhiyun  * fdt_num_mem_rsv - retrieve the number of memory reserve map entries
414*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
415*4882a593Smuzhiyun  *
416*4882a593Smuzhiyun  * Returns the number of entries in the device tree blob's memory
417*4882a593Smuzhiyun  * reservation map.  This does not include the terminating 0,0 entry
418*4882a593Smuzhiyun  * or any other (0,0) entries reserved for expansion.
419*4882a593Smuzhiyun  *
420*4882a593Smuzhiyun  * returns:
421*4882a593Smuzhiyun  *     the number of entries
422*4882a593Smuzhiyun  */
423*4882a593Smuzhiyun int fdt_num_mem_rsv(const void *fdt);
424*4882a593Smuzhiyun 
425*4882a593Smuzhiyun /**
426*4882a593Smuzhiyun  * fdt_get_mem_rsv - retrieve one memory reserve map entry
427*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
428*4882a593Smuzhiyun  * @address, @size: pointers to 64-bit variables
429*4882a593Smuzhiyun  *
430*4882a593Smuzhiyun  * On success, *address and *size will contain the address and size of
431*4882a593Smuzhiyun  * the n-th reserve map entry from the device tree blob, in
432*4882a593Smuzhiyun  * native-endian format.
433*4882a593Smuzhiyun  *
434*4882a593Smuzhiyun  * returns:
435*4882a593Smuzhiyun  *     0, on success
436*4882a593Smuzhiyun  *     -FDT_ERR_BADMAGIC,
437*4882a593Smuzhiyun  *     -FDT_ERR_BADVERSION,
438*4882a593Smuzhiyun  *     -FDT_ERR_BADSTATE, standard meanings
439*4882a593Smuzhiyun  */
440*4882a593Smuzhiyun int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size);
441*4882a593Smuzhiyun 
442*4882a593Smuzhiyun /**
443*4882a593Smuzhiyun  * fdt_subnode_offset_namelen - find a subnode based on substring
444*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
445*4882a593Smuzhiyun  * @parentoffset: structure block offset of a node
446*4882a593Smuzhiyun  * @name: name of the subnode to locate
447*4882a593Smuzhiyun  * @namelen: number of characters of name to consider
448*4882a593Smuzhiyun  *
449*4882a593Smuzhiyun  * Identical to fdt_subnode_offset(), but only examine the first
450*4882a593Smuzhiyun  * namelen characters of name for matching the subnode name.  This is
451*4882a593Smuzhiyun  * useful for finding subnodes based on a portion of a larger string,
452*4882a593Smuzhiyun  * such as a full path.
453*4882a593Smuzhiyun  */
454*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
455*4882a593Smuzhiyun int fdt_subnode_offset_namelen(const void *fdt, int parentoffset,
456*4882a593Smuzhiyun 			       const char *name, int namelen);
457*4882a593Smuzhiyun #endif
458*4882a593Smuzhiyun /**
459*4882a593Smuzhiyun  * fdt_subnode_offset - find a subnode of a given node
460*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
461*4882a593Smuzhiyun  * @parentoffset: structure block offset of a node
462*4882a593Smuzhiyun  * @name: name of the subnode to locate
463*4882a593Smuzhiyun  *
464*4882a593Smuzhiyun  * fdt_subnode_offset() finds a subnode of the node at structure block
465*4882a593Smuzhiyun  * offset parentoffset with the given name.  name may include a unit
466*4882a593Smuzhiyun  * address, in which case fdt_subnode_offset() will find the subnode
467*4882a593Smuzhiyun  * with that unit address, or the unit address may be omitted, in
468*4882a593Smuzhiyun  * which case fdt_subnode_offset() will find an arbitrary subnode
469*4882a593Smuzhiyun  * whose name excluding unit address matches the given name.
470*4882a593Smuzhiyun  *
471*4882a593Smuzhiyun  * returns:
472*4882a593Smuzhiyun  *	structure block offset of the requested subnode (>=0), on success
473*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, if the requested subnode does not exist
474*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE
475*4882a593Smuzhiyun  *		tag
476*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
477*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
478*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
479*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
480*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings.
481*4882a593Smuzhiyun  */
482*4882a593Smuzhiyun int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
483*4882a593Smuzhiyun 
484*4882a593Smuzhiyun /**
485*4882a593Smuzhiyun  * fdt_path_offset_namelen - find a tree node by its full path
486*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
487*4882a593Smuzhiyun  * @path: full path of the node to locate
488*4882a593Smuzhiyun  * @namelen: number of characters of path to consider
489*4882a593Smuzhiyun  *
490*4882a593Smuzhiyun  * Identical to fdt_path_offset(), but only consider the first namelen
491*4882a593Smuzhiyun  * characters of path as the path name.
492*4882a593Smuzhiyun  */
493*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
494*4882a593Smuzhiyun int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen);
495*4882a593Smuzhiyun #endif
496*4882a593Smuzhiyun 
497*4882a593Smuzhiyun /**
498*4882a593Smuzhiyun  * fdt_path_offset - find a tree node by its full path
499*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
500*4882a593Smuzhiyun  * @path: full path of the node to locate
501*4882a593Smuzhiyun  *
502*4882a593Smuzhiyun  * fdt_path_offset() finds a node of a given path in the device tree.
503*4882a593Smuzhiyun  * Each path component may omit the unit address portion, but the
504*4882a593Smuzhiyun  * results of this are undefined if any such path component is
505*4882a593Smuzhiyun  * ambiguous (that is if there are multiple nodes at the relevant
506*4882a593Smuzhiyun  * level matching the given component, differentiated only by unit
507*4882a593Smuzhiyun  * address).
508*4882a593Smuzhiyun  *
509*4882a593Smuzhiyun  * returns:
510*4882a593Smuzhiyun  *	structure block offset of the node with the requested path (>=0), on
511*4882a593Smuzhiyun  *		success
512*4882a593Smuzhiyun  *	-FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
513*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, if the requested node does not exist
514*4882a593Smuzhiyun  *      -FDT_ERR_BADMAGIC,
515*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
516*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
517*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
518*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings.
519*4882a593Smuzhiyun  */
520*4882a593Smuzhiyun int fdt_path_offset(const void *fdt, const char *path);
521*4882a593Smuzhiyun 
522*4882a593Smuzhiyun /**
523*4882a593Smuzhiyun  * fdt_get_name - retrieve the name of a given node
524*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
525*4882a593Smuzhiyun  * @nodeoffset: structure block offset of the starting node
526*4882a593Smuzhiyun  * @lenp: pointer to an integer variable (will be overwritten) or NULL
527*4882a593Smuzhiyun  *
528*4882a593Smuzhiyun  * fdt_get_name() retrieves the name (including unit address) of the
529*4882a593Smuzhiyun  * device tree node at structure block offset nodeoffset.  If lenp is
530*4882a593Smuzhiyun  * non-NULL, the length of this name is also returned, in the integer
531*4882a593Smuzhiyun  * pointed to by lenp.
532*4882a593Smuzhiyun  *
533*4882a593Smuzhiyun  * returns:
534*4882a593Smuzhiyun  *	pointer to the node's name, on success
535*4882a593Smuzhiyun  *		If lenp is non-NULL, *lenp contains the length of that name
536*4882a593Smuzhiyun  *			(>=0)
537*4882a593Smuzhiyun  *	NULL, on error
538*4882a593Smuzhiyun  *		if lenp is non-NULL *lenp contains an error code (<0):
539*4882a593Smuzhiyun  *		-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE
540*4882a593Smuzhiyun  *			tag
541*4882a593Smuzhiyun  *		-FDT_ERR_BADMAGIC,
542*4882a593Smuzhiyun  *		-FDT_ERR_BADVERSION,
543*4882a593Smuzhiyun  *		-FDT_ERR_BADSTATE, standard meanings
544*4882a593Smuzhiyun  */
545*4882a593Smuzhiyun const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
546*4882a593Smuzhiyun 
547*4882a593Smuzhiyun /**
548*4882a593Smuzhiyun  * fdt_first_property_offset - find the offset of a node's first property
549*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
550*4882a593Smuzhiyun  * @nodeoffset: structure block offset of a node
551*4882a593Smuzhiyun  *
552*4882a593Smuzhiyun  * fdt_first_property_offset() finds the first property of the node at
553*4882a593Smuzhiyun  * the given structure block offset.
554*4882a593Smuzhiyun  *
555*4882a593Smuzhiyun  * returns:
556*4882a593Smuzhiyun  *	structure block offset of the property (>=0), on success
557*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, if the requested node has no properties
558*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, if nodeoffset did not point to an FDT_BEGIN_NODE tag
559*4882a593Smuzhiyun  *      -FDT_ERR_BADMAGIC,
560*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
561*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
562*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
563*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings.
564*4882a593Smuzhiyun  */
565*4882a593Smuzhiyun int fdt_first_property_offset(const void *fdt, int nodeoffset);
566*4882a593Smuzhiyun 
567*4882a593Smuzhiyun /**
568*4882a593Smuzhiyun  * fdt_next_property_offset - step through a node's properties
569*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
570*4882a593Smuzhiyun  * @offset: structure block offset of a property
571*4882a593Smuzhiyun  *
572*4882a593Smuzhiyun  * fdt_next_property_offset() finds the property immediately after the
573*4882a593Smuzhiyun  * one at the given structure block offset.  This will be a property
574*4882a593Smuzhiyun  * of the same node as the given property.
575*4882a593Smuzhiyun  *
576*4882a593Smuzhiyun  * returns:
577*4882a593Smuzhiyun  *	structure block offset of the next property (>=0), on success
578*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, if the given property is the last in its node
579*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, if nodeoffset did not point to an FDT_PROP tag
580*4882a593Smuzhiyun  *      -FDT_ERR_BADMAGIC,
581*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
582*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
583*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
584*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings.
585*4882a593Smuzhiyun  */
586*4882a593Smuzhiyun int fdt_next_property_offset(const void *fdt, int offset);
587*4882a593Smuzhiyun 
588*4882a593Smuzhiyun /**
589*4882a593Smuzhiyun  * fdt_for_each_property_offset - iterate over all properties of a node
590*4882a593Smuzhiyun  *
591*4882a593Smuzhiyun  * @property_offset:	property offset (int, lvalue)
592*4882a593Smuzhiyun  * @fdt:		FDT blob (const void *)
593*4882a593Smuzhiyun  * @node:		node offset (int)
594*4882a593Smuzhiyun  *
595*4882a593Smuzhiyun  * This is actually a wrapper around a for loop and would be used like so:
596*4882a593Smuzhiyun  *
597*4882a593Smuzhiyun  *	fdt_for_each_property_offset(property, fdt, node) {
598*4882a593Smuzhiyun  *		Use property
599*4882a593Smuzhiyun  *		...
600*4882a593Smuzhiyun  *	}
601*4882a593Smuzhiyun  *
602*4882a593Smuzhiyun  *	if ((property < 0) && (property != -FDT_ERR_NOTFOUND)) {
603*4882a593Smuzhiyun  *		Error handling
604*4882a593Smuzhiyun  *	}
605*4882a593Smuzhiyun  *
606*4882a593Smuzhiyun  * Note that this is implemented as a macro and property is used as
607*4882a593Smuzhiyun  * iterator in the loop. The node variable can be constant or even a
608*4882a593Smuzhiyun  * literal.
609*4882a593Smuzhiyun  */
610*4882a593Smuzhiyun #define fdt_for_each_property_offset(property, fdt, node)	\
611*4882a593Smuzhiyun 	for (property = fdt_first_property_offset(fdt, node);	\
612*4882a593Smuzhiyun 	     property >= 0;					\
613*4882a593Smuzhiyun 	     property = fdt_next_property_offset(fdt, property))
614*4882a593Smuzhiyun 
615*4882a593Smuzhiyun /**
616*4882a593Smuzhiyun  * fdt_get_property_by_offset - retrieve the property at a given offset
617*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
618*4882a593Smuzhiyun  * @offset: offset of the property to retrieve
619*4882a593Smuzhiyun  * @lenp: pointer to an integer variable (will be overwritten) or NULL
620*4882a593Smuzhiyun  *
621*4882a593Smuzhiyun  * fdt_get_property_by_offset() retrieves a pointer to the
622*4882a593Smuzhiyun  * fdt_property structure within the device tree blob at the given
623*4882a593Smuzhiyun  * offset.  If lenp is non-NULL, the length of the property value is
624*4882a593Smuzhiyun  * also returned, in the integer pointed to by lenp.
625*4882a593Smuzhiyun  *
626*4882a593Smuzhiyun  * Note that this code only works on device tree versions >= 16. fdt_getprop()
627*4882a593Smuzhiyun  * works on all versions.
628*4882a593Smuzhiyun  *
629*4882a593Smuzhiyun  * returns:
630*4882a593Smuzhiyun  *	pointer to the structure representing the property
631*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains the length of the property
632*4882a593Smuzhiyun  *		value (>=0)
633*4882a593Smuzhiyun  *	NULL, on error
634*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains an error code (<0):
635*4882a593Smuzhiyun  *		-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_PROP tag
636*4882a593Smuzhiyun  *		-FDT_ERR_BADMAGIC,
637*4882a593Smuzhiyun  *		-FDT_ERR_BADVERSION,
638*4882a593Smuzhiyun  *		-FDT_ERR_BADSTATE,
639*4882a593Smuzhiyun  *		-FDT_ERR_BADSTRUCTURE,
640*4882a593Smuzhiyun  *		-FDT_ERR_TRUNCATED, standard meanings
641*4882a593Smuzhiyun  */
642*4882a593Smuzhiyun const struct fdt_property *fdt_get_property_by_offset(const void *fdt,
643*4882a593Smuzhiyun 						      int offset,
644*4882a593Smuzhiyun 						      int *lenp);
645*4882a593Smuzhiyun 
646*4882a593Smuzhiyun /**
647*4882a593Smuzhiyun  * fdt_get_property_namelen - find a property based on substring
648*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
649*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to find
650*4882a593Smuzhiyun  * @name: name of the property to find
651*4882a593Smuzhiyun  * @namelen: number of characters of name to consider
652*4882a593Smuzhiyun  * @lenp: pointer to an integer variable (will be overwritten) or NULL
653*4882a593Smuzhiyun  *
654*4882a593Smuzhiyun  * Identical to fdt_get_property(), but only examine the first namelen
655*4882a593Smuzhiyun  * characters of name for matching the property name.
656*4882a593Smuzhiyun  */
657*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
658*4882a593Smuzhiyun const struct fdt_property *fdt_get_property_namelen(const void *fdt,
659*4882a593Smuzhiyun 						    int nodeoffset,
660*4882a593Smuzhiyun 						    const char *name,
661*4882a593Smuzhiyun 						    int namelen, int *lenp);
662*4882a593Smuzhiyun #endif
663*4882a593Smuzhiyun 
664*4882a593Smuzhiyun /**
665*4882a593Smuzhiyun  * fdt_get_property - find a given property in a given node
666*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
667*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to find
668*4882a593Smuzhiyun  * @name: name of the property to find
669*4882a593Smuzhiyun  * @lenp: pointer to an integer variable (will be overwritten) or NULL
670*4882a593Smuzhiyun  *
671*4882a593Smuzhiyun  * fdt_get_property() retrieves a pointer to the fdt_property
672*4882a593Smuzhiyun  * structure within the device tree blob corresponding to the property
673*4882a593Smuzhiyun  * named 'name' of the node at offset nodeoffset.  If lenp is
674*4882a593Smuzhiyun  * non-NULL, the length of the property value is also returned, in the
675*4882a593Smuzhiyun  * integer pointed to by lenp.
676*4882a593Smuzhiyun  *
677*4882a593Smuzhiyun  * returns:
678*4882a593Smuzhiyun  *	pointer to the structure representing the property
679*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains the length of the property
680*4882a593Smuzhiyun  *		value (>=0)
681*4882a593Smuzhiyun  *	NULL, on error
682*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains an error code (<0):
683*4882a593Smuzhiyun  *		-FDT_ERR_NOTFOUND, node does not have named property
684*4882a593Smuzhiyun  *		-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE
685*4882a593Smuzhiyun  *			tag
686*4882a593Smuzhiyun  *		-FDT_ERR_BADMAGIC,
687*4882a593Smuzhiyun  *		-FDT_ERR_BADVERSION,
688*4882a593Smuzhiyun  *		-FDT_ERR_BADSTATE,
689*4882a593Smuzhiyun  *		-FDT_ERR_BADSTRUCTURE,
690*4882a593Smuzhiyun  *		-FDT_ERR_TRUNCATED, standard meanings
691*4882a593Smuzhiyun  */
692*4882a593Smuzhiyun const struct fdt_property *fdt_get_property(const void *fdt, int nodeoffset,
693*4882a593Smuzhiyun 					    const char *name, int *lenp);
fdt_get_property_w(void * fdt,int nodeoffset,const char * name,int * lenp)694*4882a593Smuzhiyun static inline struct fdt_property *fdt_get_property_w(void *fdt, int nodeoffset,
695*4882a593Smuzhiyun 						      const char *name,
696*4882a593Smuzhiyun 						      int *lenp)
697*4882a593Smuzhiyun {
698*4882a593Smuzhiyun 	return (struct fdt_property *)(uintptr_t)
699*4882a593Smuzhiyun 		fdt_get_property(fdt, nodeoffset, name, lenp);
700*4882a593Smuzhiyun }
701*4882a593Smuzhiyun 
702*4882a593Smuzhiyun /**
703*4882a593Smuzhiyun  * fdt_getprop_by_offset - retrieve the value of a property at a given offset
704*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
705*4882a593Smuzhiyun  * @offset: offset of the property to read
706*4882a593Smuzhiyun  * @namep: pointer to a string variable (will be overwritten) or NULL
707*4882a593Smuzhiyun  * @lenp: pointer to an integer variable (will be overwritten) or NULL
708*4882a593Smuzhiyun  *
709*4882a593Smuzhiyun  * fdt_getprop_by_offset() retrieves a pointer to the value of the
710*4882a593Smuzhiyun  * property at structure block offset 'offset' (this will be a pointer
711*4882a593Smuzhiyun  * to within the device blob itself, not a copy of the value).  If
712*4882a593Smuzhiyun  * lenp is non-NULL, the length of the property value is also
713*4882a593Smuzhiyun  * returned, in the integer pointed to by lenp.  If namep is non-NULL,
714*4882a593Smuzhiyun  * the property's namne will also be returned in the char * pointed to
715*4882a593Smuzhiyun  * by namep (this will be a pointer to within the device tree's string
716*4882a593Smuzhiyun  * block, not a new copy of the name).
717*4882a593Smuzhiyun  *
718*4882a593Smuzhiyun  * returns:
719*4882a593Smuzhiyun  *	pointer to the property's value
720*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains the length of the property
721*4882a593Smuzhiyun  *		value (>=0)
722*4882a593Smuzhiyun  *		if namep is non-NULL *namep contiains a pointer to the property
723*4882a593Smuzhiyun  *		name.
724*4882a593Smuzhiyun  *	NULL, on error
725*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains an error code (<0):
726*4882a593Smuzhiyun  *		-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_PROP tag
727*4882a593Smuzhiyun  *		-FDT_ERR_BADMAGIC,
728*4882a593Smuzhiyun  *		-FDT_ERR_BADVERSION,
729*4882a593Smuzhiyun  *		-FDT_ERR_BADSTATE,
730*4882a593Smuzhiyun  *		-FDT_ERR_BADSTRUCTURE,
731*4882a593Smuzhiyun  *		-FDT_ERR_TRUNCATED, standard meanings
732*4882a593Smuzhiyun  */
733*4882a593Smuzhiyun #ifndef SWIG /* This function is not useful in Python */
734*4882a593Smuzhiyun const void *fdt_getprop_by_offset(const void *fdt, int offset,
735*4882a593Smuzhiyun 				  const char **namep, int *lenp);
736*4882a593Smuzhiyun #endif
737*4882a593Smuzhiyun 
738*4882a593Smuzhiyun /**
739*4882a593Smuzhiyun  * fdt_getprop_namelen - get property value based on substring
740*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
741*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to find
742*4882a593Smuzhiyun  * @name: name of the property to find
743*4882a593Smuzhiyun  * @namelen: number of characters of name to consider
744*4882a593Smuzhiyun  * @lenp: pointer to an integer variable (will be overwritten) or NULL
745*4882a593Smuzhiyun  *
746*4882a593Smuzhiyun  * Identical to fdt_getprop(), but only examine the first namelen
747*4882a593Smuzhiyun  * characters of name for matching the property name.
748*4882a593Smuzhiyun  */
749*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
750*4882a593Smuzhiyun const void *fdt_getprop_namelen(const void *fdt, int nodeoffset,
751*4882a593Smuzhiyun 				const char *name, int namelen, int *lenp);
fdt_getprop_namelen_w(void * fdt,int nodeoffset,const char * name,int namelen,int * lenp)752*4882a593Smuzhiyun static inline void *fdt_getprop_namelen_w(void *fdt, int nodeoffset,
753*4882a593Smuzhiyun 					  const char *name, int namelen,
754*4882a593Smuzhiyun 					  int *lenp)
755*4882a593Smuzhiyun {
756*4882a593Smuzhiyun 	return (void *)(uintptr_t)fdt_getprop_namelen(fdt, nodeoffset, name,
757*4882a593Smuzhiyun 						      namelen, lenp);
758*4882a593Smuzhiyun }
759*4882a593Smuzhiyun #endif
760*4882a593Smuzhiyun 
761*4882a593Smuzhiyun /**
762*4882a593Smuzhiyun  * fdt_getprop - retrieve the value of a given property
763*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
764*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to find
765*4882a593Smuzhiyun  * @name: name of the property to find
766*4882a593Smuzhiyun  * @lenp: pointer to an integer variable (will be overwritten) or NULL
767*4882a593Smuzhiyun  *
768*4882a593Smuzhiyun  * fdt_getprop() retrieves a pointer to the value of the property
769*4882a593Smuzhiyun  * named 'name' of the node at offset nodeoffset (this will be a
770*4882a593Smuzhiyun  * pointer to within the device blob itself, not a copy of the value).
771*4882a593Smuzhiyun  * If lenp is non-NULL, the length of the property value is also
772*4882a593Smuzhiyun  * returned, in the integer pointed to by lenp.
773*4882a593Smuzhiyun  *
774*4882a593Smuzhiyun  * returns:
775*4882a593Smuzhiyun  *	pointer to the property's value
776*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains the length of the property
777*4882a593Smuzhiyun  *		value (>=0)
778*4882a593Smuzhiyun  *	NULL, on error
779*4882a593Smuzhiyun  *		if lenp is non-NULL, *lenp contains an error code (<0):
780*4882a593Smuzhiyun  *		-FDT_ERR_NOTFOUND, node does not have named property
781*4882a593Smuzhiyun  *		-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE
782*4882a593Smuzhiyun  *			tag
783*4882a593Smuzhiyun  *		-FDT_ERR_BADMAGIC,
784*4882a593Smuzhiyun  *		-FDT_ERR_BADVERSION,
785*4882a593Smuzhiyun  *		-FDT_ERR_BADSTATE,
786*4882a593Smuzhiyun  *		-FDT_ERR_BADSTRUCTURE,
787*4882a593Smuzhiyun  *		-FDT_ERR_TRUNCATED, standard meanings
788*4882a593Smuzhiyun  */
789*4882a593Smuzhiyun const void *fdt_getprop(const void *fdt, int nodeoffset,
790*4882a593Smuzhiyun 			const char *name, int *lenp);
fdt_getprop_w(void * fdt,int nodeoffset,const char * name,int * lenp)791*4882a593Smuzhiyun static inline void *fdt_getprop_w(void *fdt, int nodeoffset,
792*4882a593Smuzhiyun 				  const char *name, int *lenp)
793*4882a593Smuzhiyun {
794*4882a593Smuzhiyun 	return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp);
795*4882a593Smuzhiyun }
796*4882a593Smuzhiyun 
797*4882a593Smuzhiyun /**
798*4882a593Smuzhiyun  * fdt_get_phandle - retrieve the phandle of a given node
799*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
800*4882a593Smuzhiyun  * @nodeoffset: structure block offset of the node
801*4882a593Smuzhiyun  *
802*4882a593Smuzhiyun  * fdt_get_phandle() retrieves the phandle of the device tree node at
803*4882a593Smuzhiyun  * structure block offset nodeoffset.
804*4882a593Smuzhiyun  *
805*4882a593Smuzhiyun  * returns:
806*4882a593Smuzhiyun  *	the phandle of the node at nodeoffset, on success (!= 0, != -1)
807*4882a593Smuzhiyun  *	0, if the node has no phandle, or another error occurs
808*4882a593Smuzhiyun  */
809*4882a593Smuzhiyun uint32_t fdt_get_phandle(const void *fdt, int nodeoffset);
810*4882a593Smuzhiyun 
811*4882a593Smuzhiyun /**
812*4882a593Smuzhiyun  * fdt_get_alias_namelen - get alias based on substring
813*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
814*4882a593Smuzhiyun  * @name: name of the alias th look up
815*4882a593Smuzhiyun  * @namelen: number of characters of name to consider
816*4882a593Smuzhiyun  *
817*4882a593Smuzhiyun  * Identical to fdt_get_alias(), but only examine the first namelen
818*4882a593Smuzhiyun  * characters of name for matching the alias name.
819*4882a593Smuzhiyun  */
820*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
821*4882a593Smuzhiyun const char *fdt_get_alias_namelen(const void *fdt,
822*4882a593Smuzhiyun 				  const char *name, int namelen);
823*4882a593Smuzhiyun #endif
824*4882a593Smuzhiyun 
825*4882a593Smuzhiyun /**
826*4882a593Smuzhiyun  * fdt_get_alias - retrieve the path referenced by a given alias
827*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
828*4882a593Smuzhiyun  * @name: name of the alias th look up
829*4882a593Smuzhiyun  *
830*4882a593Smuzhiyun  * fdt_get_alias() retrieves the value of a given alias.  That is, the
831*4882a593Smuzhiyun  * value of the property named 'name' in the node /aliases.
832*4882a593Smuzhiyun  *
833*4882a593Smuzhiyun  * returns:
834*4882a593Smuzhiyun  *	a pointer to the expansion of the alias named 'name', if it exists
835*4882a593Smuzhiyun  *	NULL, if the given alias or the /aliases node does not exist
836*4882a593Smuzhiyun  */
837*4882a593Smuzhiyun const char *fdt_get_alias(const void *fdt, const char *name);
838*4882a593Smuzhiyun 
839*4882a593Smuzhiyun /**
840*4882a593Smuzhiyun  * fdt_get_path - determine the full path of a node
841*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
842*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose path to find
843*4882a593Smuzhiyun  * @buf: character buffer to contain the returned path (will be overwritten)
844*4882a593Smuzhiyun  * @buflen: size of the character buffer at buf
845*4882a593Smuzhiyun  *
846*4882a593Smuzhiyun  * fdt_get_path() computes the full path of the node at offset
847*4882a593Smuzhiyun  * nodeoffset, and records that path in the buffer at buf.
848*4882a593Smuzhiyun  *
849*4882a593Smuzhiyun  * NOTE: This function is expensive, as it must scan the device tree
850*4882a593Smuzhiyun  * structure from the start to nodeoffset.
851*4882a593Smuzhiyun  *
852*4882a593Smuzhiyun  * returns:
853*4882a593Smuzhiyun  *	0, on success
854*4882a593Smuzhiyun  *		buf contains the absolute path of the node at
855*4882a593Smuzhiyun  *		nodeoffset, as a NUL-terminated string.
856*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
857*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
858*4882a593Smuzhiyun  *		characters and will not fit in the given buffer.
859*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
860*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
861*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
862*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
863*4882a593Smuzhiyun  */
864*4882a593Smuzhiyun int fdt_get_path(const void *fdt, int nodeoffset, char *buf, int buflen);
865*4882a593Smuzhiyun 
866*4882a593Smuzhiyun /**
867*4882a593Smuzhiyun  * fdt_supernode_atdepth_offset - find a specific ancestor of a node
868*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
869*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose parent to find
870*4882a593Smuzhiyun  * @supernodedepth: depth of the ancestor to find
871*4882a593Smuzhiyun  * @nodedepth: pointer to an integer variable (will be overwritten) or NULL
872*4882a593Smuzhiyun  *
873*4882a593Smuzhiyun  * fdt_supernode_atdepth_offset() finds an ancestor of the given node
874*4882a593Smuzhiyun  * at a specific depth from the root (where the root itself has depth
875*4882a593Smuzhiyun  * 0, its immediate subnodes depth 1 and so forth).  So
876*4882a593Smuzhiyun  *	fdt_supernode_atdepth_offset(fdt, nodeoffset, 0, NULL);
877*4882a593Smuzhiyun  * will always return 0, the offset of the root node.  If the node at
878*4882a593Smuzhiyun  * nodeoffset has depth D, then:
879*4882a593Smuzhiyun  *	fdt_supernode_atdepth_offset(fdt, nodeoffset, D, NULL);
880*4882a593Smuzhiyun  * will return nodeoffset itself.
881*4882a593Smuzhiyun  *
882*4882a593Smuzhiyun  * NOTE: This function is expensive, as it must scan the device tree
883*4882a593Smuzhiyun  * structure from the start to nodeoffset.
884*4882a593Smuzhiyun  *
885*4882a593Smuzhiyun  * returns:
886*4882a593Smuzhiyun  *	structure block offset of the node at node offset's ancestor
887*4882a593Smuzhiyun  *		of depth supernodedepth (>=0), on success
888*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
889*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, supernodedepth was greater than the depth of
890*4882a593Smuzhiyun  *		nodeoffset
891*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
892*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
893*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
894*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
895*4882a593Smuzhiyun  */
896*4882a593Smuzhiyun int fdt_supernode_atdepth_offset(const void *fdt, int nodeoffset,
897*4882a593Smuzhiyun 				 int supernodedepth, int *nodedepth);
898*4882a593Smuzhiyun 
899*4882a593Smuzhiyun /**
900*4882a593Smuzhiyun  * fdt_node_depth - find the depth of a given node
901*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
902*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose parent to find
903*4882a593Smuzhiyun  *
904*4882a593Smuzhiyun  * fdt_node_depth() finds the depth of a given node.  The root node
905*4882a593Smuzhiyun  * has depth 0, its immediate subnodes depth 1 and so forth.
906*4882a593Smuzhiyun  *
907*4882a593Smuzhiyun  * NOTE: This function is expensive, as it must scan the device tree
908*4882a593Smuzhiyun  * structure from the start to nodeoffset.
909*4882a593Smuzhiyun  *
910*4882a593Smuzhiyun  * returns:
911*4882a593Smuzhiyun  *	depth of the node at nodeoffset (>=0), on success
912*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
913*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
914*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
915*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
916*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
917*4882a593Smuzhiyun  */
918*4882a593Smuzhiyun int fdt_node_depth(const void *fdt, int nodeoffset);
919*4882a593Smuzhiyun 
920*4882a593Smuzhiyun /**
921*4882a593Smuzhiyun  * fdt_parent_offset - find the parent of a given node
922*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
923*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose parent to find
924*4882a593Smuzhiyun  *
925*4882a593Smuzhiyun  * fdt_parent_offset() locates the parent node of a given node (that
926*4882a593Smuzhiyun  * is, it finds the offset of the node which contains the node at
927*4882a593Smuzhiyun  * nodeoffset as a subnode).
928*4882a593Smuzhiyun  *
929*4882a593Smuzhiyun  * NOTE: This function is expensive, as it must scan the device tree
930*4882a593Smuzhiyun  * structure from the start to nodeoffset, *twice*.
931*4882a593Smuzhiyun  *
932*4882a593Smuzhiyun  * returns:
933*4882a593Smuzhiyun  *	structure block offset of the parent of the node at nodeoffset
934*4882a593Smuzhiyun  *		(>=0), on success
935*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
936*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
937*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
938*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
939*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
940*4882a593Smuzhiyun  */
941*4882a593Smuzhiyun int fdt_parent_offset(const void *fdt, int nodeoffset);
942*4882a593Smuzhiyun 
943*4882a593Smuzhiyun /**
944*4882a593Smuzhiyun  * fdt_node_offset_by_prop_value - find nodes with a given property value
945*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
946*4882a593Smuzhiyun  * @startoffset: only find nodes after this offset
947*4882a593Smuzhiyun  * @propname: property name to check
948*4882a593Smuzhiyun  * @propval: property value to search for
949*4882a593Smuzhiyun  * @proplen: length of the value in propval
950*4882a593Smuzhiyun  *
951*4882a593Smuzhiyun  * fdt_node_offset_by_prop_value() returns the offset of the first
952*4882a593Smuzhiyun  * node after startoffset, which has a property named propname whose
953*4882a593Smuzhiyun  * value is of length proplen and has value equal to propval; or if
954*4882a593Smuzhiyun  * startoffset is -1, the very first such node in the tree.
955*4882a593Smuzhiyun  *
956*4882a593Smuzhiyun  * To iterate through all nodes matching the criterion, the following
957*4882a593Smuzhiyun  * idiom can be used:
958*4882a593Smuzhiyun  *	offset = fdt_node_offset_by_prop_value(fdt, -1, propname,
959*4882a593Smuzhiyun  *					       propval, proplen);
960*4882a593Smuzhiyun  *	while (offset != -FDT_ERR_NOTFOUND) {
961*4882a593Smuzhiyun  *		// other code here
962*4882a593Smuzhiyun  *		offset = fdt_node_offset_by_prop_value(fdt, offset, propname,
963*4882a593Smuzhiyun  *						       propval, proplen);
964*4882a593Smuzhiyun  *	}
965*4882a593Smuzhiyun  *
966*4882a593Smuzhiyun  * Note the -1 in the first call to the function, if 0 is used here
967*4882a593Smuzhiyun  * instead, the function will never locate the root node, even if it
968*4882a593Smuzhiyun  * matches the criterion.
969*4882a593Smuzhiyun  *
970*4882a593Smuzhiyun  * returns:
971*4882a593Smuzhiyun  *	structure block offset of the located node (>= 0, >startoffset),
972*4882a593Smuzhiyun  *		 on success
973*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, no node matching the criterion exists in the
974*4882a593Smuzhiyun  *		tree after startoffset
975*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
976*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
977*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
978*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
979*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
980*4882a593Smuzhiyun  */
981*4882a593Smuzhiyun int fdt_node_offset_by_prop_value(const void *fdt, int startoffset,
982*4882a593Smuzhiyun 				  const char *propname,
983*4882a593Smuzhiyun 				  const void *propval, int proplen);
984*4882a593Smuzhiyun 
985*4882a593Smuzhiyun /**
986*4882a593Smuzhiyun  * fdt_node_offset_by_phandle - find the node with a given phandle
987*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
988*4882a593Smuzhiyun  * @phandle: phandle value
989*4882a593Smuzhiyun  *
990*4882a593Smuzhiyun  * fdt_node_offset_by_phandle() returns the offset of the node
991*4882a593Smuzhiyun  * which has the given phandle value.  If there is more than one node
992*4882a593Smuzhiyun  * in the tree with the given phandle (an invalid tree), results are
993*4882a593Smuzhiyun  * undefined.
994*4882a593Smuzhiyun  *
995*4882a593Smuzhiyun  * returns:
996*4882a593Smuzhiyun  *	structure block offset of the located node (>= 0), on success
997*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, no node with that phandle exists
998*4882a593Smuzhiyun  *	-FDT_ERR_BADPHANDLE, given phandle value was invalid (0 or -1)
999*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1000*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1001*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1002*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
1003*4882a593Smuzhiyun  */
1004*4882a593Smuzhiyun int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle);
1005*4882a593Smuzhiyun 
1006*4882a593Smuzhiyun /**
1007*4882a593Smuzhiyun  * fdt_node_check_compatible: check a node's compatible property
1008*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1009*4882a593Smuzhiyun  * @nodeoffset: offset of a tree node
1010*4882a593Smuzhiyun  * @compatible: string to match against
1011*4882a593Smuzhiyun  *
1012*4882a593Smuzhiyun  *
1013*4882a593Smuzhiyun  * fdt_node_check_compatible() returns 0 if the given node contains a
1014*4882a593Smuzhiyun  * 'compatible' property with the given string as one of its elements,
1015*4882a593Smuzhiyun  * it returns non-zero otherwise, or on error.
1016*4882a593Smuzhiyun  *
1017*4882a593Smuzhiyun  * returns:
1018*4882a593Smuzhiyun  *	0, if the node has a 'compatible' property listing the given string
1019*4882a593Smuzhiyun  *	1, if the node has a 'compatible' property, but it does not list
1020*4882a593Smuzhiyun  *		the given string
1021*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
1022*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, if nodeoffset does not refer to a BEGIN_NODE tag
1023*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1024*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1025*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1026*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
1027*4882a593Smuzhiyun  */
1028*4882a593Smuzhiyun int fdt_node_check_compatible(const void *fdt, int nodeoffset,
1029*4882a593Smuzhiyun 			      const char *compatible);
1030*4882a593Smuzhiyun 
1031*4882a593Smuzhiyun /**
1032*4882a593Smuzhiyun  * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
1033*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1034*4882a593Smuzhiyun  * @startoffset: only find nodes after this offset
1035*4882a593Smuzhiyun  * @compatible: 'compatible' string to match against
1036*4882a593Smuzhiyun  *
1037*4882a593Smuzhiyun  * fdt_node_offset_by_compatible() returns the offset of the first
1038*4882a593Smuzhiyun  * node after startoffset, which has a 'compatible' property which
1039*4882a593Smuzhiyun  * lists the given compatible string; or if startoffset is -1, the
1040*4882a593Smuzhiyun  * very first such node in the tree.
1041*4882a593Smuzhiyun  *
1042*4882a593Smuzhiyun  * To iterate through all nodes matching the criterion, the following
1043*4882a593Smuzhiyun  * idiom can be used:
1044*4882a593Smuzhiyun  *	offset = fdt_node_offset_by_compatible(fdt, -1, compatible);
1045*4882a593Smuzhiyun  *	while (offset != -FDT_ERR_NOTFOUND) {
1046*4882a593Smuzhiyun  *		// other code here
1047*4882a593Smuzhiyun  *		offset = fdt_node_offset_by_compatible(fdt, offset, compatible);
1048*4882a593Smuzhiyun  *	}
1049*4882a593Smuzhiyun  *
1050*4882a593Smuzhiyun  * Note the -1 in the first call to the function, if 0 is used here
1051*4882a593Smuzhiyun  * instead, the function will never locate the root node, even if it
1052*4882a593Smuzhiyun  * matches the criterion.
1053*4882a593Smuzhiyun  *
1054*4882a593Smuzhiyun  * returns:
1055*4882a593Smuzhiyun  *	structure block offset of the located node (>= 0, >startoffset),
1056*4882a593Smuzhiyun  *		 on success
1057*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, no node matching the criterion exists in the
1058*4882a593Smuzhiyun  *		tree after startoffset
1059*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset does not refer to a BEGIN_NODE tag
1060*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1061*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1062*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1063*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE, standard meanings
1064*4882a593Smuzhiyun  */
1065*4882a593Smuzhiyun int fdt_node_offset_by_compatible(const void *fdt, int startoffset,
1066*4882a593Smuzhiyun 				  const char *compatible);
1067*4882a593Smuzhiyun 
1068*4882a593Smuzhiyun /**
1069*4882a593Smuzhiyun  * fdt_stringlist_contains - check a string list property for a string
1070*4882a593Smuzhiyun  * @strlist: Property containing a list of strings to check
1071*4882a593Smuzhiyun  * @listlen: Length of property
1072*4882a593Smuzhiyun  * @str: String to search for
1073*4882a593Smuzhiyun  *
1074*4882a593Smuzhiyun  * This is a utility function provided for convenience. The list contains
1075*4882a593Smuzhiyun  * one or more strings, each terminated by \0, as is found in a device tree
1076*4882a593Smuzhiyun  * "compatible" property.
1077*4882a593Smuzhiyun  *
1078*4882a593Smuzhiyun  * @return: 1 if the string is found in the list, 0 not found, or invalid list
1079*4882a593Smuzhiyun  */
1080*4882a593Smuzhiyun int fdt_stringlist_contains(const char *strlist, int listlen, const char *str);
1081*4882a593Smuzhiyun 
1082*4882a593Smuzhiyun /**
1083*4882a593Smuzhiyun  * fdt_stringlist_count - count the number of strings in a string list
1084*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1085*4882a593Smuzhiyun  * @nodeoffset: offset of a tree node
1086*4882a593Smuzhiyun  * @property: name of the property containing the string list
1087*4882a593Smuzhiyun  * @return:
1088*4882a593Smuzhiyun  *   the number of strings in the given property
1089*4882a593Smuzhiyun  *   -FDT_ERR_BADVALUE if the property value is not NUL-terminated
1090*4882a593Smuzhiyun  *   -FDT_ERR_NOTFOUND if the property does not exist
1091*4882a593Smuzhiyun  */
1092*4882a593Smuzhiyun int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property);
1093*4882a593Smuzhiyun 
1094*4882a593Smuzhiyun /**
1095*4882a593Smuzhiyun  * fdt_stringlist_search - find a string in a string list and return its index
1096*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1097*4882a593Smuzhiyun  * @nodeoffset: offset of a tree node
1098*4882a593Smuzhiyun  * @property: name of the property containing the string list
1099*4882a593Smuzhiyun  * @string: string to look up in the string list
1100*4882a593Smuzhiyun  *
1101*4882a593Smuzhiyun  * Note that it is possible for this function to succeed on property values
1102*4882a593Smuzhiyun  * that are not NUL-terminated. That's because the function will stop after
1103*4882a593Smuzhiyun  * finding the first occurrence of @string. This can for example happen with
1104*4882a593Smuzhiyun  * small-valued cell properties, such as #address-cells, when searching for
1105*4882a593Smuzhiyun  * the empty string.
1106*4882a593Smuzhiyun  *
1107*4882a593Smuzhiyun  * @return:
1108*4882a593Smuzhiyun  *   the index of the string in the list of strings
1109*4882a593Smuzhiyun  *   -FDT_ERR_BADVALUE if the property value is not NUL-terminated
1110*4882a593Smuzhiyun  *   -FDT_ERR_NOTFOUND if the property does not exist or does not contain
1111*4882a593Smuzhiyun  *                     the given string
1112*4882a593Smuzhiyun  */
1113*4882a593Smuzhiyun int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property,
1114*4882a593Smuzhiyun 			  const char *string);
1115*4882a593Smuzhiyun 
1116*4882a593Smuzhiyun /**
1117*4882a593Smuzhiyun  * fdt_stringlist_get() - obtain the string at a given index in a string list
1118*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1119*4882a593Smuzhiyun  * @nodeoffset: offset of a tree node
1120*4882a593Smuzhiyun  * @property: name of the property containing the string list
1121*4882a593Smuzhiyun  * @index: index of the string to return
1122*4882a593Smuzhiyun  * @lenp: return location for the string length or an error code on failure
1123*4882a593Smuzhiyun  *
1124*4882a593Smuzhiyun  * Note that this will successfully extract strings from properties with
1125*4882a593Smuzhiyun  * non-NUL-terminated values. For example on small-valued cell properties
1126*4882a593Smuzhiyun  * this function will return the empty string.
1127*4882a593Smuzhiyun  *
1128*4882a593Smuzhiyun  * If non-NULL, the length of the string (on success) or a negative error-code
1129*4882a593Smuzhiyun  * (on failure) will be stored in the integer pointer to by lenp.
1130*4882a593Smuzhiyun  *
1131*4882a593Smuzhiyun  * @return:
1132*4882a593Smuzhiyun  *   A pointer to the string at the given index in the string list or NULL on
1133*4882a593Smuzhiyun  *   failure. On success the length of the string will be stored in the memory
1134*4882a593Smuzhiyun  *   location pointed to by the lenp parameter, if non-NULL. On failure one of
1135*4882a593Smuzhiyun  *   the following negative error codes will be returned in the lenp parameter
1136*4882a593Smuzhiyun  *   (if non-NULL):
1137*4882a593Smuzhiyun  *     -FDT_ERR_BADVALUE if the property value is not NUL-terminated
1138*4882a593Smuzhiyun  *     -FDT_ERR_NOTFOUND if the property does not exist
1139*4882a593Smuzhiyun  */
1140*4882a593Smuzhiyun const char *fdt_stringlist_get(const void *fdt, int nodeoffset,
1141*4882a593Smuzhiyun 			       const char *property, int index,
1142*4882a593Smuzhiyun 			       int *lenp);
1143*4882a593Smuzhiyun 
1144*4882a593Smuzhiyun /**********************************************************************/
1145*4882a593Smuzhiyun /* Read-only functions (addressing related)                           */
1146*4882a593Smuzhiyun /**********************************************************************/
1147*4882a593Smuzhiyun 
1148*4882a593Smuzhiyun /**
1149*4882a593Smuzhiyun  * FDT_MAX_NCELLS - maximum value for #address-cells and #size-cells
1150*4882a593Smuzhiyun  *
1151*4882a593Smuzhiyun  * This is the maximum value for #address-cells, #size-cells and
1152*4882a593Smuzhiyun  * similar properties that will be processed by libfdt.  IEE1275
1153*4882a593Smuzhiyun  * requires that OF implementations handle values up to 4.
1154*4882a593Smuzhiyun  * Implementations may support larger values, but in practice higher
1155*4882a593Smuzhiyun  * values aren't used.
1156*4882a593Smuzhiyun  */
1157*4882a593Smuzhiyun #define FDT_MAX_NCELLS		4
1158*4882a593Smuzhiyun 
1159*4882a593Smuzhiyun /**
1160*4882a593Smuzhiyun  * fdt_address_cells - retrieve address size for a bus represented in the tree
1161*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1162*4882a593Smuzhiyun  * @nodeoffset: offset of the node to find the address size for
1163*4882a593Smuzhiyun  *
1164*4882a593Smuzhiyun  * When the node has a valid #address-cells property, returns its value.
1165*4882a593Smuzhiyun  *
1166*4882a593Smuzhiyun  * returns:
1167*4882a593Smuzhiyun  *	0 <= n < FDT_MAX_NCELLS, on success
1168*4882a593Smuzhiyun  *      2, if the node has no #address-cells property
1169*4882a593Smuzhiyun  *      -FDT_ERR_BADNCELLS, if the node has a badly formatted or invalid
1170*4882a593Smuzhiyun  *		#address-cells property
1171*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1172*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1173*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1174*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1175*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1176*4882a593Smuzhiyun  */
1177*4882a593Smuzhiyun int fdt_address_cells(const void *fdt, int nodeoffset);
1178*4882a593Smuzhiyun 
1179*4882a593Smuzhiyun /**
1180*4882a593Smuzhiyun  * fdt_size_cells - retrieve address range size for a bus represented in the
1181*4882a593Smuzhiyun  *                  tree
1182*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1183*4882a593Smuzhiyun  * @nodeoffset: offset of the node to find the address range size for
1184*4882a593Smuzhiyun  *
1185*4882a593Smuzhiyun  * When the node has a valid #size-cells property, returns its value.
1186*4882a593Smuzhiyun  *
1187*4882a593Smuzhiyun  * returns:
1188*4882a593Smuzhiyun  *	0 <= n < FDT_MAX_NCELLS, on success
1189*4882a593Smuzhiyun  *      1, if the node has no #size-cells property
1190*4882a593Smuzhiyun  *      -FDT_ERR_BADNCELLS, if the node has a badly formatted or invalid
1191*4882a593Smuzhiyun  *		#size-cells property
1192*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1193*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1194*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1195*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1196*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1197*4882a593Smuzhiyun  */
1198*4882a593Smuzhiyun int fdt_size_cells(const void *fdt, int nodeoffset);
1199*4882a593Smuzhiyun 
1200*4882a593Smuzhiyun 
1201*4882a593Smuzhiyun /**********************************************************************/
1202*4882a593Smuzhiyun /* Write-in-place functions                                           */
1203*4882a593Smuzhiyun /**********************************************************************/
1204*4882a593Smuzhiyun 
1205*4882a593Smuzhiyun /**
1206*4882a593Smuzhiyun  * fdt_setprop_inplace_namelen_partial - change a property's value,
1207*4882a593Smuzhiyun  *                                       but not its size
1208*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1209*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1210*4882a593Smuzhiyun  * @name: name of the property to change
1211*4882a593Smuzhiyun  * @namelen: number of characters of name to consider
1212*4882a593Smuzhiyun  * @idx: index of the property to change in the array
1213*4882a593Smuzhiyun  * @val: pointer to data to replace the property value with
1214*4882a593Smuzhiyun  * @len: length of the property value
1215*4882a593Smuzhiyun  *
1216*4882a593Smuzhiyun  * Identical to fdt_setprop_inplace(), but modifies the given property
1217*4882a593Smuzhiyun  * starting from the given index, and using only the first characters
1218*4882a593Smuzhiyun  * of the name. It is useful when you want to manipulate only one value of
1219*4882a593Smuzhiyun  * an array and you have a string that doesn't end with \0.
1220*4882a593Smuzhiyun  */
1221*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
1222*4882a593Smuzhiyun int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
1223*4882a593Smuzhiyun 					const char *name, int namelen,
1224*4882a593Smuzhiyun 					uint32_t idx, const void *val,
1225*4882a593Smuzhiyun 					int len);
1226*4882a593Smuzhiyun #endif
1227*4882a593Smuzhiyun 
1228*4882a593Smuzhiyun /**
1229*4882a593Smuzhiyun  * fdt_setprop_inplace - change a property's value, but not its size
1230*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1231*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1232*4882a593Smuzhiyun  * @name: name of the property to change
1233*4882a593Smuzhiyun  * @val: pointer to data to replace the property value with
1234*4882a593Smuzhiyun  * @len: length of the property value
1235*4882a593Smuzhiyun  *
1236*4882a593Smuzhiyun  * fdt_setprop_inplace() replaces the value of a given property with
1237*4882a593Smuzhiyun  * the data in val, of length len.  This function cannot change the
1238*4882a593Smuzhiyun  * size of a property, and so will only work if len is equal to the
1239*4882a593Smuzhiyun  * current length of the property.
1240*4882a593Smuzhiyun  *
1241*4882a593Smuzhiyun  * This function will alter only the bytes in the blob which contain
1242*4882a593Smuzhiyun  * the given property value, and will not alter or move any other part
1243*4882a593Smuzhiyun  * of the tree.
1244*4882a593Smuzhiyun  *
1245*4882a593Smuzhiyun  * returns:
1246*4882a593Smuzhiyun  *	0, on success
1247*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, if len is not equal to the property's current length
1248*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, node does not have the named property
1249*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1250*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1251*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1252*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1253*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1254*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1255*4882a593Smuzhiyun  */
1256*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
1257*4882a593Smuzhiyun int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
1258*4882a593Smuzhiyun 			const void *val, int len);
1259*4882a593Smuzhiyun #endif
1260*4882a593Smuzhiyun 
1261*4882a593Smuzhiyun /**
1262*4882a593Smuzhiyun  * fdt_setprop_inplace_u32 - change the value of a 32-bit integer property
1263*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1264*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1265*4882a593Smuzhiyun  * @name: name of the property to change
1266*4882a593Smuzhiyun  * @val: 32-bit integer value to replace the property with
1267*4882a593Smuzhiyun  *
1268*4882a593Smuzhiyun  * fdt_setprop_inplace_u32() replaces the value of a given property
1269*4882a593Smuzhiyun  * with the 32-bit integer value in val, converting val to big-endian
1270*4882a593Smuzhiyun  * if necessary.  This function cannot change the size of a property,
1271*4882a593Smuzhiyun  * and so will only work if the property already exists and has length
1272*4882a593Smuzhiyun  * 4.
1273*4882a593Smuzhiyun  *
1274*4882a593Smuzhiyun  * This function will alter only the bytes in the blob which contain
1275*4882a593Smuzhiyun  * the given property value, and will not alter or move any other part
1276*4882a593Smuzhiyun  * of the tree.
1277*4882a593Smuzhiyun  *
1278*4882a593Smuzhiyun  * returns:
1279*4882a593Smuzhiyun  *	0, on success
1280*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, if the property's length is not equal to 4
1281*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, node does not have the named property
1282*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1283*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1284*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1285*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1286*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1287*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1288*4882a593Smuzhiyun  */
fdt_setprop_inplace_u32(void * fdt,int nodeoffset,const char * name,uint32_t val)1289*4882a593Smuzhiyun static inline int fdt_setprop_inplace_u32(void *fdt, int nodeoffset,
1290*4882a593Smuzhiyun 					  const char *name, uint32_t val)
1291*4882a593Smuzhiyun {
1292*4882a593Smuzhiyun 	fdt32_t tmp = cpu_to_fdt32(val);
1293*4882a593Smuzhiyun 	return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1294*4882a593Smuzhiyun }
1295*4882a593Smuzhiyun 
1296*4882a593Smuzhiyun /**
1297*4882a593Smuzhiyun  * fdt_setprop_inplace_u64 - change the value of a 64-bit integer property
1298*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1299*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1300*4882a593Smuzhiyun  * @name: name of the property to change
1301*4882a593Smuzhiyun  * @val: 64-bit integer value to replace the property with
1302*4882a593Smuzhiyun  *
1303*4882a593Smuzhiyun  * fdt_setprop_inplace_u64() replaces the value of a given property
1304*4882a593Smuzhiyun  * with the 64-bit integer value in val, converting val to big-endian
1305*4882a593Smuzhiyun  * if necessary.  This function cannot change the size of a property,
1306*4882a593Smuzhiyun  * and so will only work if the property already exists and has length
1307*4882a593Smuzhiyun  * 8.
1308*4882a593Smuzhiyun  *
1309*4882a593Smuzhiyun  * This function will alter only the bytes in the blob which contain
1310*4882a593Smuzhiyun  * the given property value, and will not alter or move any other part
1311*4882a593Smuzhiyun  * of the tree.
1312*4882a593Smuzhiyun  *
1313*4882a593Smuzhiyun  * returns:
1314*4882a593Smuzhiyun  *	0, on success
1315*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, if the property's length is not equal to 8
1316*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, node does not have the named property
1317*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1318*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1319*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1320*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1321*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1322*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1323*4882a593Smuzhiyun  */
fdt_setprop_inplace_u64(void * fdt,int nodeoffset,const char * name,uint64_t val)1324*4882a593Smuzhiyun static inline int fdt_setprop_inplace_u64(void *fdt, int nodeoffset,
1325*4882a593Smuzhiyun 					  const char *name, uint64_t val)
1326*4882a593Smuzhiyun {
1327*4882a593Smuzhiyun 	fdt64_t tmp = cpu_to_fdt64(val);
1328*4882a593Smuzhiyun 	return fdt_setprop_inplace(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1329*4882a593Smuzhiyun }
1330*4882a593Smuzhiyun 
1331*4882a593Smuzhiyun /**
1332*4882a593Smuzhiyun  * fdt_setprop_inplace_cell - change the value of a single-cell property
1333*4882a593Smuzhiyun  *
1334*4882a593Smuzhiyun  * This is an alternative name for fdt_setprop_inplace_u32()
1335*4882a593Smuzhiyun  */
fdt_setprop_inplace_cell(void * fdt,int nodeoffset,const char * name,uint32_t val)1336*4882a593Smuzhiyun static inline int fdt_setprop_inplace_cell(void *fdt, int nodeoffset,
1337*4882a593Smuzhiyun 					   const char *name, uint32_t val)
1338*4882a593Smuzhiyun {
1339*4882a593Smuzhiyun 	return fdt_setprop_inplace_u32(fdt, nodeoffset, name, val);
1340*4882a593Smuzhiyun }
1341*4882a593Smuzhiyun 
1342*4882a593Smuzhiyun /**
1343*4882a593Smuzhiyun  * fdt_nop_property - replace a property with nop tags
1344*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1345*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to nop
1346*4882a593Smuzhiyun  * @name: name of the property to nop
1347*4882a593Smuzhiyun  *
1348*4882a593Smuzhiyun  * fdt_nop_property() will replace a given property's representation
1349*4882a593Smuzhiyun  * in the blob with FDT_NOP tags, effectively removing it from the
1350*4882a593Smuzhiyun  * tree.
1351*4882a593Smuzhiyun  *
1352*4882a593Smuzhiyun  * This function will alter only the bytes in the blob which contain
1353*4882a593Smuzhiyun  * the property, and will not alter or move any other part of the
1354*4882a593Smuzhiyun  * tree.
1355*4882a593Smuzhiyun  *
1356*4882a593Smuzhiyun  * returns:
1357*4882a593Smuzhiyun  *	0, on success
1358*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, node does not have the named property
1359*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1360*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1361*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1362*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1363*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1364*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1365*4882a593Smuzhiyun  */
1366*4882a593Smuzhiyun int fdt_nop_property(void *fdt, int nodeoffset, const char *name);
1367*4882a593Smuzhiyun 
1368*4882a593Smuzhiyun /**
1369*4882a593Smuzhiyun  * fdt_nop_node - replace a node (subtree) with nop tags
1370*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1371*4882a593Smuzhiyun  * @nodeoffset: offset of the node to nop
1372*4882a593Smuzhiyun  *
1373*4882a593Smuzhiyun  * fdt_nop_node() will replace a given node's representation in the
1374*4882a593Smuzhiyun  * blob, including all its subnodes, if any, with FDT_NOP tags,
1375*4882a593Smuzhiyun  * effectively removing it from the tree.
1376*4882a593Smuzhiyun  *
1377*4882a593Smuzhiyun  * This function will alter only the bytes in the blob which contain
1378*4882a593Smuzhiyun  * the node and its properties and subnodes, and will not alter or
1379*4882a593Smuzhiyun  * move any other part of the tree.
1380*4882a593Smuzhiyun  *
1381*4882a593Smuzhiyun  * returns:
1382*4882a593Smuzhiyun  *	0, on success
1383*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1384*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1385*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1386*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1387*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1388*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1389*4882a593Smuzhiyun  */
1390*4882a593Smuzhiyun int fdt_nop_node(void *fdt, int nodeoffset);
1391*4882a593Smuzhiyun 
1392*4882a593Smuzhiyun /**********************************************************************/
1393*4882a593Smuzhiyun /* Sequential write functions                                         */
1394*4882a593Smuzhiyun /**********************************************************************/
1395*4882a593Smuzhiyun 
1396*4882a593Smuzhiyun /* fdt_create_with_flags flags */
1397*4882a593Smuzhiyun #define FDT_CREATE_FLAG_NO_NAME_DEDUP 0x1
1398*4882a593Smuzhiyun 	/* FDT_CREATE_FLAG_NO_NAME_DEDUP: Do not try to de-duplicate property
1399*4882a593Smuzhiyun 	 * names in the fdt. This can result in faster creation times, but
1400*4882a593Smuzhiyun 	 * a larger fdt. */
1401*4882a593Smuzhiyun 
1402*4882a593Smuzhiyun #define FDT_CREATE_FLAGS_ALL	(FDT_CREATE_FLAG_NO_NAME_DEDUP)
1403*4882a593Smuzhiyun 
1404*4882a593Smuzhiyun /**
1405*4882a593Smuzhiyun  * fdt_create_with_flags - begin creation of a new fdt
1406*4882a593Smuzhiyun  * @fdt: pointer to memory allocated where fdt will be created
1407*4882a593Smuzhiyun  * @bufsize: size of the memory space at fdt
1408*4882a593Smuzhiyun  * @flags: a valid combination of FDT_CREATE_FLAG_ flags, or 0.
1409*4882a593Smuzhiyun  *
1410*4882a593Smuzhiyun  * fdt_create_with_flags() begins the process of creating a new fdt with
1411*4882a593Smuzhiyun  * the sequential write interface.
1412*4882a593Smuzhiyun  *
1413*4882a593Smuzhiyun  * fdt creation process must end with fdt_finished() to produce a valid fdt.
1414*4882a593Smuzhiyun  *
1415*4882a593Smuzhiyun  * returns:
1416*4882a593Smuzhiyun  *	0, on success
1417*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, bufsize is insufficient for a minimal fdt
1418*4882a593Smuzhiyun  *	-FDT_ERR_BADFLAGS, flags is not valid
1419*4882a593Smuzhiyun  */
1420*4882a593Smuzhiyun int fdt_create_with_flags(void *buf, int bufsize, uint32_t flags);
1421*4882a593Smuzhiyun 
1422*4882a593Smuzhiyun /**
1423*4882a593Smuzhiyun  * fdt_create - begin creation of a new fdt
1424*4882a593Smuzhiyun  * @fdt: pointer to memory allocated where fdt will be created
1425*4882a593Smuzhiyun  * @bufsize: size of the memory space at fdt
1426*4882a593Smuzhiyun  *
1427*4882a593Smuzhiyun  * fdt_create() is equivalent to fdt_create_with_flags() with flags=0.
1428*4882a593Smuzhiyun  *
1429*4882a593Smuzhiyun  * returns:
1430*4882a593Smuzhiyun  *	0, on success
1431*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, bufsize is insufficient for a minimal fdt
1432*4882a593Smuzhiyun  */
1433*4882a593Smuzhiyun int fdt_create(void *buf, int bufsize);
1434*4882a593Smuzhiyun 
1435*4882a593Smuzhiyun int fdt_resize(void *fdt, void *buf, int bufsize);
1436*4882a593Smuzhiyun int fdt_add_reservemap_entry(void *fdt, uint64_t addr, uint64_t size);
1437*4882a593Smuzhiyun int fdt_finish_reservemap(void *fdt);
1438*4882a593Smuzhiyun int fdt_begin_node(void *fdt, const char *name);
1439*4882a593Smuzhiyun int fdt_property(void *fdt, const char *name, const void *val, int len);
fdt_property_u32(void * fdt,const char * name,uint32_t val)1440*4882a593Smuzhiyun static inline int fdt_property_u32(void *fdt, const char *name, uint32_t val)
1441*4882a593Smuzhiyun {
1442*4882a593Smuzhiyun 	fdt32_t tmp = cpu_to_fdt32(val);
1443*4882a593Smuzhiyun 	return fdt_property(fdt, name, &tmp, sizeof(tmp));
1444*4882a593Smuzhiyun }
fdt_property_u64(void * fdt,const char * name,uint64_t val)1445*4882a593Smuzhiyun static inline int fdt_property_u64(void *fdt, const char *name, uint64_t val)
1446*4882a593Smuzhiyun {
1447*4882a593Smuzhiyun 	fdt64_t tmp = cpu_to_fdt64(val);
1448*4882a593Smuzhiyun 	return fdt_property(fdt, name, &tmp, sizeof(tmp));
1449*4882a593Smuzhiyun }
1450*4882a593Smuzhiyun 
1451*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
fdt_property_cell(void * fdt,const char * name,uint32_t val)1452*4882a593Smuzhiyun static inline int fdt_property_cell(void *fdt, const char *name, uint32_t val)
1453*4882a593Smuzhiyun {
1454*4882a593Smuzhiyun 	return fdt_property_u32(fdt, name, val);
1455*4882a593Smuzhiyun }
1456*4882a593Smuzhiyun #endif
1457*4882a593Smuzhiyun 
1458*4882a593Smuzhiyun /**
1459*4882a593Smuzhiyun  * fdt_property_placeholder - add a new property and return a ptr to its value
1460*4882a593Smuzhiyun  *
1461*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1462*4882a593Smuzhiyun  * @name: name of property to add
1463*4882a593Smuzhiyun  * @len: length of property value in bytes
1464*4882a593Smuzhiyun  * @valp: returns a pointer to where where the value should be placed
1465*4882a593Smuzhiyun  *
1466*4882a593Smuzhiyun  * returns:
1467*4882a593Smuzhiyun  *	0, on success
1468*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1469*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, standard meanings
1470*4882a593Smuzhiyun  */
1471*4882a593Smuzhiyun int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
1472*4882a593Smuzhiyun 
1473*4882a593Smuzhiyun #define fdt_property_string(fdt, name, str) \
1474*4882a593Smuzhiyun 	fdt_property(fdt, name, str, strlen(str)+1)
1475*4882a593Smuzhiyun int fdt_end_node(void *fdt);
1476*4882a593Smuzhiyun int fdt_finish(void *fdt);
1477*4882a593Smuzhiyun 
1478*4882a593Smuzhiyun /**********************************************************************/
1479*4882a593Smuzhiyun /* Read-write functions                                               */
1480*4882a593Smuzhiyun /**********************************************************************/
1481*4882a593Smuzhiyun 
1482*4882a593Smuzhiyun int fdt_create_empty_tree(void *buf, int bufsize);
1483*4882a593Smuzhiyun int fdt_open_into(const void *fdt, void *buf, int bufsize);
1484*4882a593Smuzhiyun int fdt_pack(void *fdt);
1485*4882a593Smuzhiyun 
1486*4882a593Smuzhiyun /**
1487*4882a593Smuzhiyun  * fdt_add_mem_rsv - add one memory reserve map entry
1488*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1489*4882a593Smuzhiyun  * @address, @size: 64-bit values (native endian)
1490*4882a593Smuzhiyun  *
1491*4882a593Smuzhiyun  * Adds a reserve map entry to the given blob reserving a region at
1492*4882a593Smuzhiyun  * address address of length size.
1493*4882a593Smuzhiyun  *
1494*4882a593Smuzhiyun  * This function will insert data into the reserve map and will
1495*4882a593Smuzhiyun  * therefore change the indexes of some entries in the table.
1496*4882a593Smuzhiyun  *
1497*4882a593Smuzhiyun  * returns:
1498*4882a593Smuzhiyun  *	0, on success
1499*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1500*4882a593Smuzhiyun  *		contain the new reservation entry
1501*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1502*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1503*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1504*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1505*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1506*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1507*4882a593Smuzhiyun  */
1508*4882a593Smuzhiyun int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size);
1509*4882a593Smuzhiyun 
1510*4882a593Smuzhiyun /**
1511*4882a593Smuzhiyun  * fdt_del_mem_rsv - remove a memory reserve map entry
1512*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1513*4882a593Smuzhiyun  * @n: entry to remove
1514*4882a593Smuzhiyun  *
1515*4882a593Smuzhiyun  * fdt_del_mem_rsv() removes the n-th memory reserve map entry from
1516*4882a593Smuzhiyun  * the blob.
1517*4882a593Smuzhiyun  *
1518*4882a593Smuzhiyun  * This function will delete data from the reservation table and will
1519*4882a593Smuzhiyun  * therefore change the indexes of some entries in the table.
1520*4882a593Smuzhiyun  *
1521*4882a593Smuzhiyun  * returns:
1522*4882a593Smuzhiyun  *	0, on success
1523*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, there is no entry of the given index (i.e. there
1524*4882a593Smuzhiyun  *		are less than n+1 reserve map entries)
1525*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1526*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1527*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1528*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1529*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1530*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1531*4882a593Smuzhiyun  */
1532*4882a593Smuzhiyun int fdt_del_mem_rsv(void *fdt, int n);
1533*4882a593Smuzhiyun 
1534*4882a593Smuzhiyun /**
1535*4882a593Smuzhiyun  * fdt_set_name - change the name of a given node
1536*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1537*4882a593Smuzhiyun  * @nodeoffset: structure block offset of a node
1538*4882a593Smuzhiyun  * @name: name to give the node
1539*4882a593Smuzhiyun  *
1540*4882a593Smuzhiyun  * fdt_set_name() replaces the name (including unit address, if any)
1541*4882a593Smuzhiyun  * of the given node with the given string.  NOTE: this function can't
1542*4882a593Smuzhiyun  * efficiently check if the new name is unique amongst the given
1543*4882a593Smuzhiyun  * node's siblings; results are undefined if this function is invoked
1544*4882a593Smuzhiyun  * with a name equal to one of the given node's siblings.
1545*4882a593Smuzhiyun  *
1546*4882a593Smuzhiyun  * This function may insert or delete data from the blob, and will
1547*4882a593Smuzhiyun  * therefore change the offsets of some existing nodes.
1548*4882a593Smuzhiyun  *
1549*4882a593Smuzhiyun  * returns:
1550*4882a593Smuzhiyun  *	0, on success
1551*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob
1552*4882a593Smuzhiyun  *		to contain the new name
1553*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1554*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1555*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1556*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE, standard meanings
1557*4882a593Smuzhiyun  */
1558*4882a593Smuzhiyun int fdt_set_name(void *fdt, int nodeoffset, const char *name);
1559*4882a593Smuzhiyun 
1560*4882a593Smuzhiyun /**
1561*4882a593Smuzhiyun  * fdt_setprop - create or change a property
1562*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1563*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1564*4882a593Smuzhiyun  * @name: name of the property to change
1565*4882a593Smuzhiyun  * @val: pointer to data to set the property value to
1566*4882a593Smuzhiyun  * @len: length of the property value
1567*4882a593Smuzhiyun  *
1568*4882a593Smuzhiyun  * fdt_setprop() sets the value of the named property in the given
1569*4882a593Smuzhiyun  * node to the given value and length, creating the property if it
1570*4882a593Smuzhiyun  * does not already exist.
1571*4882a593Smuzhiyun  *
1572*4882a593Smuzhiyun  * This function may insert or delete data from the blob, and will
1573*4882a593Smuzhiyun  * therefore change the offsets of some existing nodes.
1574*4882a593Smuzhiyun  *
1575*4882a593Smuzhiyun  * returns:
1576*4882a593Smuzhiyun  *	0, on success
1577*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1578*4882a593Smuzhiyun  *		contain the new property value
1579*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1580*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1581*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1582*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1583*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1584*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1585*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1586*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1587*4882a593Smuzhiyun  */
1588*4882a593Smuzhiyun int fdt_setprop(void *fdt, int nodeoffset, const char *name,
1589*4882a593Smuzhiyun 		const void *val, int len);
1590*4882a593Smuzhiyun 
1591*4882a593Smuzhiyun /**
1592*4882a593Smuzhiyun  * fdt_setprop_placeholder - allocate space for a property
1593*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1594*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1595*4882a593Smuzhiyun  * @name: name of the property to change
1596*4882a593Smuzhiyun  * @len: length of the property value
1597*4882a593Smuzhiyun  * @prop_data: return pointer to property data
1598*4882a593Smuzhiyun  *
1599*4882a593Smuzhiyun  * fdt_setprop_placeholer() allocates the named property in the given node.
1600*4882a593Smuzhiyun  * If the property exists it is resized. In either case a pointer to the
1601*4882a593Smuzhiyun  * property data is returned.
1602*4882a593Smuzhiyun  *
1603*4882a593Smuzhiyun  * This function may insert or delete data from the blob, and will
1604*4882a593Smuzhiyun  * therefore change the offsets of some existing nodes.
1605*4882a593Smuzhiyun  *
1606*4882a593Smuzhiyun  * returns:
1607*4882a593Smuzhiyun  *	0, on success
1608*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1609*4882a593Smuzhiyun  *		contain the new property value
1610*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1611*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1612*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1613*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1614*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1615*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1616*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1617*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1618*4882a593Smuzhiyun  */
1619*4882a593Smuzhiyun int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name,
1620*4882a593Smuzhiyun 			    int len, void **prop_data);
1621*4882a593Smuzhiyun 
1622*4882a593Smuzhiyun /**
1623*4882a593Smuzhiyun  * fdt_setprop_u32 - set a property to a 32-bit integer
1624*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1625*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1626*4882a593Smuzhiyun  * @name: name of the property to change
1627*4882a593Smuzhiyun  * @val: 32-bit integer value for the property (native endian)
1628*4882a593Smuzhiyun  *
1629*4882a593Smuzhiyun  * fdt_setprop_u32() sets the value of the named property in the given
1630*4882a593Smuzhiyun  * node to the given 32-bit integer value (converting to big-endian if
1631*4882a593Smuzhiyun  * necessary), or creates a new property with that value if it does
1632*4882a593Smuzhiyun  * not already exist.
1633*4882a593Smuzhiyun  *
1634*4882a593Smuzhiyun  * This function may insert or delete data from the blob, and will
1635*4882a593Smuzhiyun  * therefore change the offsets of some existing nodes.
1636*4882a593Smuzhiyun  *
1637*4882a593Smuzhiyun  * returns:
1638*4882a593Smuzhiyun  *	0, on success
1639*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1640*4882a593Smuzhiyun  *		contain the new property value
1641*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1642*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1643*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1644*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1645*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1646*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1647*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1648*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1649*4882a593Smuzhiyun  */
fdt_setprop_u32(void * fdt,int nodeoffset,const char * name,uint32_t val)1650*4882a593Smuzhiyun static inline int fdt_setprop_u32(void *fdt, int nodeoffset, const char *name,
1651*4882a593Smuzhiyun 				  uint32_t val)
1652*4882a593Smuzhiyun {
1653*4882a593Smuzhiyun 	fdt32_t tmp = cpu_to_fdt32(val);
1654*4882a593Smuzhiyun 	return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1655*4882a593Smuzhiyun }
1656*4882a593Smuzhiyun 
1657*4882a593Smuzhiyun /**
1658*4882a593Smuzhiyun  * fdt_setprop_u64 - set a property to a 64-bit integer
1659*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1660*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1661*4882a593Smuzhiyun  * @name: name of the property to change
1662*4882a593Smuzhiyun  * @val: 64-bit integer value for the property (native endian)
1663*4882a593Smuzhiyun  *
1664*4882a593Smuzhiyun  * fdt_setprop_u64() sets the value of the named property in the given
1665*4882a593Smuzhiyun  * node to the given 64-bit integer value (converting to big-endian if
1666*4882a593Smuzhiyun  * necessary), or creates a new property with that value if it does
1667*4882a593Smuzhiyun  * not already exist.
1668*4882a593Smuzhiyun  *
1669*4882a593Smuzhiyun  * This function may insert or delete data from the blob, and will
1670*4882a593Smuzhiyun  * therefore change the offsets of some existing nodes.
1671*4882a593Smuzhiyun  *
1672*4882a593Smuzhiyun  * returns:
1673*4882a593Smuzhiyun  *	0, on success
1674*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1675*4882a593Smuzhiyun  *		contain the new property value
1676*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1677*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1678*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1679*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1680*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1681*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1682*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1683*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1684*4882a593Smuzhiyun  */
fdt_setprop_u64(void * fdt,int nodeoffset,const char * name,uint64_t val)1685*4882a593Smuzhiyun static inline int fdt_setprop_u64(void *fdt, int nodeoffset, const char *name,
1686*4882a593Smuzhiyun 				  uint64_t val)
1687*4882a593Smuzhiyun {
1688*4882a593Smuzhiyun 	fdt64_t tmp = cpu_to_fdt64(val);
1689*4882a593Smuzhiyun 	return fdt_setprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1690*4882a593Smuzhiyun }
1691*4882a593Smuzhiyun 
1692*4882a593Smuzhiyun /**
1693*4882a593Smuzhiyun  * fdt_setprop_cell - set a property to a single cell value
1694*4882a593Smuzhiyun  *
1695*4882a593Smuzhiyun  * This is an alternative name for fdt_setprop_u32()
1696*4882a593Smuzhiyun  */
fdt_setprop_cell(void * fdt,int nodeoffset,const char * name,uint32_t val)1697*4882a593Smuzhiyun static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name,
1698*4882a593Smuzhiyun 				   uint32_t val)
1699*4882a593Smuzhiyun {
1700*4882a593Smuzhiyun 	return fdt_setprop_u32(fdt, nodeoffset, name, val);
1701*4882a593Smuzhiyun }
1702*4882a593Smuzhiyun 
1703*4882a593Smuzhiyun /**
1704*4882a593Smuzhiyun  * fdt_setprop_string - set a property to a string value
1705*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1706*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1707*4882a593Smuzhiyun  * @name: name of the property to change
1708*4882a593Smuzhiyun  * @str: string value for the property
1709*4882a593Smuzhiyun  *
1710*4882a593Smuzhiyun  * fdt_setprop_string() sets the value of the named property in the
1711*4882a593Smuzhiyun  * given node to the given string value (using the length of the
1712*4882a593Smuzhiyun  * string to determine the new length of the property), or creates a
1713*4882a593Smuzhiyun  * new property with that value if it does not already exist.
1714*4882a593Smuzhiyun  *
1715*4882a593Smuzhiyun  * This function may insert or delete data from the blob, and will
1716*4882a593Smuzhiyun  * therefore change the offsets of some existing nodes.
1717*4882a593Smuzhiyun  *
1718*4882a593Smuzhiyun  * returns:
1719*4882a593Smuzhiyun  *	0, on success
1720*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1721*4882a593Smuzhiyun  *		contain the new property value
1722*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1723*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1724*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1725*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1726*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1727*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1728*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1729*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1730*4882a593Smuzhiyun  */
1731*4882a593Smuzhiyun #define fdt_setprop_string(fdt, nodeoffset, name, str) \
1732*4882a593Smuzhiyun 	fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1733*4882a593Smuzhiyun 
1734*4882a593Smuzhiyun 
1735*4882a593Smuzhiyun /**
1736*4882a593Smuzhiyun  * fdt_setprop_empty - set a property to an empty value
1737*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1738*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1739*4882a593Smuzhiyun  * @name: name of the property to change
1740*4882a593Smuzhiyun  *
1741*4882a593Smuzhiyun  * fdt_setprop_empty() sets the value of the named property in the
1742*4882a593Smuzhiyun  * given node to an empty (zero length) value, or creates a new empty
1743*4882a593Smuzhiyun  * property if it does not already exist.
1744*4882a593Smuzhiyun  *
1745*4882a593Smuzhiyun  * This function may insert or delete data from the blob, and will
1746*4882a593Smuzhiyun  * therefore change the offsets of some existing nodes.
1747*4882a593Smuzhiyun  *
1748*4882a593Smuzhiyun  * returns:
1749*4882a593Smuzhiyun  *	0, on success
1750*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1751*4882a593Smuzhiyun  *		contain the new property value
1752*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1753*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1754*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1755*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1756*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1757*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1758*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1759*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1760*4882a593Smuzhiyun  */
1761*4882a593Smuzhiyun #define fdt_setprop_empty(fdt, nodeoffset, name) \
1762*4882a593Smuzhiyun 	fdt_setprop((fdt), (nodeoffset), (name), NULL, 0)
1763*4882a593Smuzhiyun 
1764*4882a593Smuzhiyun /**
1765*4882a593Smuzhiyun  * fdt_appendprop - append to or create a property
1766*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1767*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1768*4882a593Smuzhiyun  * @name: name of the property to append to
1769*4882a593Smuzhiyun  * @val: pointer to data to append to the property value
1770*4882a593Smuzhiyun  * @len: length of the data to append to the property value
1771*4882a593Smuzhiyun  *
1772*4882a593Smuzhiyun  * fdt_appendprop() appends the value to the named property in the
1773*4882a593Smuzhiyun  * given node, creating the property if it does not already exist.
1774*4882a593Smuzhiyun  *
1775*4882a593Smuzhiyun  * This function may insert data into the blob, and will therefore
1776*4882a593Smuzhiyun  * change the offsets of some existing nodes.
1777*4882a593Smuzhiyun  *
1778*4882a593Smuzhiyun  * returns:
1779*4882a593Smuzhiyun  *	0, on success
1780*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1781*4882a593Smuzhiyun  *		contain the new property value
1782*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1783*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1784*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1785*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1786*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1787*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1788*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1789*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1790*4882a593Smuzhiyun  */
1791*4882a593Smuzhiyun int fdt_appendprop(void *fdt, int nodeoffset, const char *name,
1792*4882a593Smuzhiyun 		   const void *val, int len);
1793*4882a593Smuzhiyun 
1794*4882a593Smuzhiyun /**
1795*4882a593Smuzhiyun  * fdt_appendprop_u32 - append a 32-bit integer value to a property
1796*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1797*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1798*4882a593Smuzhiyun  * @name: name of the property to change
1799*4882a593Smuzhiyun  * @val: 32-bit integer value to append to the property (native endian)
1800*4882a593Smuzhiyun  *
1801*4882a593Smuzhiyun  * fdt_appendprop_u32() appends the given 32-bit integer value
1802*4882a593Smuzhiyun  * (converting to big-endian if necessary) to the value of the named
1803*4882a593Smuzhiyun  * property in the given node, or creates a new property with that
1804*4882a593Smuzhiyun  * value if it does not already exist.
1805*4882a593Smuzhiyun  *
1806*4882a593Smuzhiyun  * This function may insert data into the blob, and will therefore
1807*4882a593Smuzhiyun  * change the offsets of some existing nodes.
1808*4882a593Smuzhiyun  *
1809*4882a593Smuzhiyun  * returns:
1810*4882a593Smuzhiyun  *	0, on success
1811*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1812*4882a593Smuzhiyun  *		contain the new property value
1813*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1814*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1815*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1816*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1817*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1818*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1819*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1820*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1821*4882a593Smuzhiyun  */
fdt_appendprop_u32(void * fdt,int nodeoffset,const char * name,uint32_t val)1822*4882a593Smuzhiyun static inline int fdt_appendprop_u32(void *fdt, int nodeoffset,
1823*4882a593Smuzhiyun 				     const char *name, uint32_t val)
1824*4882a593Smuzhiyun {
1825*4882a593Smuzhiyun 	fdt32_t tmp = cpu_to_fdt32(val);
1826*4882a593Smuzhiyun 	return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1827*4882a593Smuzhiyun }
1828*4882a593Smuzhiyun 
1829*4882a593Smuzhiyun /**
1830*4882a593Smuzhiyun  * fdt_appendprop_u64 - append a 64-bit integer value to a property
1831*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1832*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1833*4882a593Smuzhiyun  * @name: name of the property to change
1834*4882a593Smuzhiyun  * @val: 64-bit integer value to append to the property (native endian)
1835*4882a593Smuzhiyun  *
1836*4882a593Smuzhiyun  * fdt_appendprop_u64() appends the given 64-bit integer value
1837*4882a593Smuzhiyun  * (converting to big-endian if necessary) to the value of the named
1838*4882a593Smuzhiyun  * property in the given node, or creates a new property with that
1839*4882a593Smuzhiyun  * value if it does not already exist.
1840*4882a593Smuzhiyun  *
1841*4882a593Smuzhiyun  * This function may insert data into the blob, and will therefore
1842*4882a593Smuzhiyun  * change the offsets of some existing nodes.
1843*4882a593Smuzhiyun  *
1844*4882a593Smuzhiyun  * returns:
1845*4882a593Smuzhiyun  *	0, on success
1846*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1847*4882a593Smuzhiyun  *		contain the new property value
1848*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1849*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1850*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1851*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1852*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1853*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1854*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1855*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1856*4882a593Smuzhiyun  */
fdt_appendprop_u64(void * fdt,int nodeoffset,const char * name,uint64_t val)1857*4882a593Smuzhiyun static inline int fdt_appendprop_u64(void *fdt, int nodeoffset,
1858*4882a593Smuzhiyun 				     const char *name, uint64_t val)
1859*4882a593Smuzhiyun {
1860*4882a593Smuzhiyun 	fdt64_t tmp = cpu_to_fdt64(val);
1861*4882a593Smuzhiyun 	return fdt_appendprop(fdt, nodeoffset, name, &tmp, sizeof(tmp));
1862*4882a593Smuzhiyun }
1863*4882a593Smuzhiyun 
1864*4882a593Smuzhiyun /**
1865*4882a593Smuzhiyun  * fdt_appendprop_cell - append a single cell value to a property
1866*4882a593Smuzhiyun  *
1867*4882a593Smuzhiyun  * This is an alternative name for fdt_appendprop_u32()
1868*4882a593Smuzhiyun  */
fdt_appendprop_cell(void * fdt,int nodeoffset,const char * name,uint32_t val)1869*4882a593Smuzhiyun static inline int fdt_appendprop_cell(void *fdt, int nodeoffset,
1870*4882a593Smuzhiyun 				      const char *name, uint32_t val)
1871*4882a593Smuzhiyun {
1872*4882a593Smuzhiyun 	return fdt_appendprop_u32(fdt, nodeoffset, name, val);
1873*4882a593Smuzhiyun }
1874*4882a593Smuzhiyun 
1875*4882a593Smuzhiyun /**
1876*4882a593Smuzhiyun  * fdt_appendprop_string - append a string to a property
1877*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1878*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to change
1879*4882a593Smuzhiyun  * @name: name of the property to change
1880*4882a593Smuzhiyun  * @str: string value to append to the property
1881*4882a593Smuzhiyun  *
1882*4882a593Smuzhiyun  * fdt_appendprop_string() appends the given string to the value of
1883*4882a593Smuzhiyun  * the named property in the given node, or creates a new property
1884*4882a593Smuzhiyun  * with that value if it does not already exist.
1885*4882a593Smuzhiyun  *
1886*4882a593Smuzhiyun  * This function may insert data into the blob, and will therefore
1887*4882a593Smuzhiyun  * change the offsets of some existing nodes.
1888*4882a593Smuzhiyun  *
1889*4882a593Smuzhiyun  * returns:
1890*4882a593Smuzhiyun  *	0, on success
1891*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1892*4882a593Smuzhiyun  *		contain the new property value
1893*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1894*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1895*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1896*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1897*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1898*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1899*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1900*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1901*4882a593Smuzhiyun  */
1902*4882a593Smuzhiyun #define fdt_appendprop_string(fdt, nodeoffset, name, str) \
1903*4882a593Smuzhiyun 	fdt_appendprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
1904*4882a593Smuzhiyun 
1905*4882a593Smuzhiyun /**
1906*4882a593Smuzhiyun  * fdt_appendprop_addrrange - append a address range property
1907*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1908*4882a593Smuzhiyun  * @parent: offset of the parent node
1909*4882a593Smuzhiyun  * @nodeoffset: offset of the node to add a property at
1910*4882a593Smuzhiyun  * @name: name of property
1911*4882a593Smuzhiyun  * @addr: start address of a given range
1912*4882a593Smuzhiyun  * @size: size of a given range
1913*4882a593Smuzhiyun  *
1914*4882a593Smuzhiyun  * fdt_appendprop_addrrange() appends an address range value (start
1915*4882a593Smuzhiyun  * address and size) to the value of the named property in the given
1916*4882a593Smuzhiyun  * node, or creates a new property with that value if it does not
1917*4882a593Smuzhiyun  * already exist.
1918*4882a593Smuzhiyun  * If "name" is not specified, a default "reg" is used.
1919*4882a593Smuzhiyun  * Cell sizes are determined by parent's #address-cells and #size-cells.
1920*4882a593Smuzhiyun  *
1921*4882a593Smuzhiyun  * This function may insert data into the blob, and will therefore
1922*4882a593Smuzhiyun  * change the offsets of some existing nodes.
1923*4882a593Smuzhiyun  *
1924*4882a593Smuzhiyun  * returns:
1925*4882a593Smuzhiyun  *	0, on success
1926*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1927*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1928*4882a593Smuzhiyun  *	-FDT_ERR_BADNCELLS, if the node has a badly formatted or invalid
1929*4882a593Smuzhiyun  *		#address-cells property
1930*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1931*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1932*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1933*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1934*4882a593Smuzhiyun  *	-FDT_ERR_BADVALUE, addr or size doesn't fit to respective cells size
1935*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there is insufficient free space in the blob to
1936*4882a593Smuzhiyun  *		contain a new property
1937*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1938*4882a593Smuzhiyun  */
1939*4882a593Smuzhiyun int fdt_appendprop_addrrange(void *fdt, int parent, int nodeoffset,
1940*4882a593Smuzhiyun 			     const char *name, uint64_t addr, uint64_t size);
1941*4882a593Smuzhiyun 
1942*4882a593Smuzhiyun /**
1943*4882a593Smuzhiyun  * fdt_delprop - delete a property
1944*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1945*4882a593Smuzhiyun  * @nodeoffset: offset of the node whose property to nop
1946*4882a593Smuzhiyun  * @name: name of the property to nop
1947*4882a593Smuzhiyun  *
1948*4882a593Smuzhiyun  * fdt_del_property() will delete the given property.
1949*4882a593Smuzhiyun  *
1950*4882a593Smuzhiyun  * This function will delete data from the blob, and will therefore
1951*4882a593Smuzhiyun  * change the offsets of some existing nodes.
1952*4882a593Smuzhiyun  *
1953*4882a593Smuzhiyun  * returns:
1954*4882a593Smuzhiyun  *	0, on success
1955*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, node does not have the named property
1956*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
1957*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
1958*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
1959*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
1960*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
1961*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
1962*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
1963*4882a593Smuzhiyun  */
1964*4882a593Smuzhiyun int fdt_delprop(void *fdt, int nodeoffset, const char *name);
1965*4882a593Smuzhiyun 
1966*4882a593Smuzhiyun /**
1967*4882a593Smuzhiyun  * fdt_add_subnode_namelen - creates a new node based on substring
1968*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1969*4882a593Smuzhiyun  * @parentoffset: structure block offset of a node
1970*4882a593Smuzhiyun  * @name: name of the subnode to locate
1971*4882a593Smuzhiyun  * @namelen: number of characters of name to consider
1972*4882a593Smuzhiyun  *
1973*4882a593Smuzhiyun  * Identical to fdt_add_subnode(), but use only the first namelen
1974*4882a593Smuzhiyun  * characters of name as the name of the new node.  This is useful for
1975*4882a593Smuzhiyun  * creating subnodes based on a portion of a larger string, such as a
1976*4882a593Smuzhiyun  * full path.
1977*4882a593Smuzhiyun  */
1978*4882a593Smuzhiyun #ifndef SWIG /* Not available in Python */
1979*4882a593Smuzhiyun int fdt_add_subnode_namelen(void *fdt, int parentoffset,
1980*4882a593Smuzhiyun 			    const char *name, int namelen);
1981*4882a593Smuzhiyun #endif
1982*4882a593Smuzhiyun 
1983*4882a593Smuzhiyun /**
1984*4882a593Smuzhiyun  * fdt_add_subnode - creates a new node
1985*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
1986*4882a593Smuzhiyun  * @parentoffset: structure block offset of a node
1987*4882a593Smuzhiyun  * @name: name of the subnode to locate
1988*4882a593Smuzhiyun  *
1989*4882a593Smuzhiyun  * fdt_add_subnode() creates a new node as a subnode of the node at
1990*4882a593Smuzhiyun  * structure block offset parentoffset, with the given name (which
1991*4882a593Smuzhiyun  * should include the unit address, if any).
1992*4882a593Smuzhiyun  *
1993*4882a593Smuzhiyun  * This function will insert data into the blob, and will therefore
1994*4882a593Smuzhiyun  * change the offsets of some existing nodes.
1995*4882a593Smuzhiyun 
1996*4882a593Smuzhiyun  * returns:
1997*4882a593Smuzhiyun  *	structure block offset of the created nodeequested subnode (>=0), on
1998*4882a593Smuzhiyun  *		success
1999*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, if the requested subnode does not exist
2000*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE
2001*4882a593Smuzhiyun  *		tag
2002*4882a593Smuzhiyun  *	-FDT_ERR_EXISTS, if the node at parentoffset already has a subnode of
2003*4882a593Smuzhiyun  *		the given name
2004*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, if there is insufficient free space in the
2005*4882a593Smuzhiyun  *		blob to contain the new node
2006*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE
2007*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT
2008*4882a593Smuzhiyun  *      -FDT_ERR_BADMAGIC,
2009*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
2010*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
2011*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
2012*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings.
2013*4882a593Smuzhiyun  */
2014*4882a593Smuzhiyun int fdt_add_subnode(void *fdt, int parentoffset, const char *name);
2015*4882a593Smuzhiyun 
2016*4882a593Smuzhiyun /**
2017*4882a593Smuzhiyun  * fdt_del_node - delete a node (subtree)
2018*4882a593Smuzhiyun  * @fdt: pointer to the device tree blob
2019*4882a593Smuzhiyun  * @nodeoffset: offset of the node to nop
2020*4882a593Smuzhiyun  *
2021*4882a593Smuzhiyun  * fdt_del_node() will remove the given node, including all its
2022*4882a593Smuzhiyun  * subnodes if any, from the blob.
2023*4882a593Smuzhiyun  *
2024*4882a593Smuzhiyun  * This function will delete data from the blob, and will therefore
2025*4882a593Smuzhiyun  * change the offsets of some existing nodes.
2026*4882a593Smuzhiyun  *
2027*4882a593Smuzhiyun  * returns:
2028*4882a593Smuzhiyun  *	0, on success
2029*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET, nodeoffset did not point to FDT_BEGIN_NODE tag
2030*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
2031*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
2032*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
2033*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
2034*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
2035*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
2036*4882a593Smuzhiyun  */
2037*4882a593Smuzhiyun int fdt_del_node(void *fdt, int nodeoffset);
2038*4882a593Smuzhiyun 
2039*4882a593Smuzhiyun /**
2040*4882a593Smuzhiyun  * fdt_overlay_apply - Applies a DT overlay on a base DT
2041*4882a593Smuzhiyun  * @fdt: pointer to the base device tree blob
2042*4882a593Smuzhiyun  * @fdto: pointer to the device tree overlay blob
2043*4882a593Smuzhiyun  *
2044*4882a593Smuzhiyun  * fdt_overlay_apply() will apply the given device tree overlay on the
2045*4882a593Smuzhiyun  * given base device tree.
2046*4882a593Smuzhiyun  *
2047*4882a593Smuzhiyun  * Expect the base device tree to be modified, even if the function
2048*4882a593Smuzhiyun  * returns an error.
2049*4882a593Smuzhiyun  *
2050*4882a593Smuzhiyun  * returns:
2051*4882a593Smuzhiyun  *	0, on success
2052*4882a593Smuzhiyun  *	-FDT_ERR_NOSPACE, there's not enough space in the base device tree
2053*4882a593Smuzhiyun  *	-FDT_ERR_NOTFOUND, the overlay points to some inexistant nodes or
2054*4882a593Smuzhiyun  *		properties in the base DT
2055*4882a593Smuzhiyun  *	-FDT_ERR_BADPHANDLE,
2056*4882a593Smuzhiyun  *	-FDT_ERR_BADOVERLAY,
2057*4882a593Smuzhiyun  *	-FDT_ERR_NOPHANDLES,
2058*4882a593Smuzhiyun  *	-FDT_ERR_INTERNAL,
2059*4882a593Smuzhiyun  *	-FDT_ERR_BADLAYOUT,
2060*4882a593Smuzhiyun  *	-FDT_ERR_BADMAGIC,
2061*4882a593Smuzhiyun  *	-FDT_ERR_BADOFFSET,
2062*4882a593Smuzhiyun  *	-FDT_ERR_BADPATH,
2063*4882a593Smuzhiyun  *	-FDT_ERR_BADVERSION,
2064*4882a593Smuzhiyun  *	-FDT_ERR_BADSTRUCTURE,
2065*4882a593Smuzhiyun  *	-FDT_ERR_BADSTATE,
2066*4882a593Smuzhiyun  *	-FDT_ERR_TRUNCATED, standard meanings
2067*4882a593Smuzhiyun  */
2068*4882a593Smuzhiyun int fdt_overlay_apply(void *fdt, void *fdto);
2069*4882a593Smuzhiyun 
2070*4882a593Smuzhiyun /**********************************************************************/
2071*4882a593Smuzhiyun /* Debugging / informational functions                                */
2072*4882a593Smuzhiyun /**********************************************************************/
2073*4882a593Smuzhiyun 
2074*4882a593Smuzhiyun const char *fdt_strerror(int errval);
2075*4882a593Smuzhiyun 
2076*4882a593Smuzhiyun #ifdef __cplusplus
2077*4882a593Smuzhiyun }
2078*4882a593Smuzhiyun #endif
2079*4882a593Smuzhiyun 
2080*4882a593Smuzhiyun #endif /* LIBFDT_H */
2081