2 * libfdt - Flat Device Tree manipulation
3 * Copyright (C) 2006 David Gibson, IBM Corporation.
5 * libfdt is dual licensed: you can use it either under the terms of
6 * the GPL, or the BSD license, at your option.
8 * a) This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this library; if not, write to the Free
20 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25 * b) Redistribution and use in source and binary forms, with or
26 * without modification, are permitted provided that the following
29 * 1. Redistributions of source code must retain the above
30 * copyright notice, this list of conditions and the following
32 * 2. Redistributions in binary form must reproduce the above
33 * copyright notice, this list of conditions and the following
34 * disclaimer in the documentation and/or other materials
35 * provided with the distribution.
37 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
38 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
39 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
40 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
41 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
42 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
47 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
48 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
49 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51 #include "libfdt_env.h"
56 #include "libfdt_internal.h"
58 static int check_header_sw(void *fdt
)
60 if (fdt_magic(fdt
) != SW_MAGIC
)
61 return -FDT_ERR_BADMAGIC
;
65 static void *grab_space(void *fdt
, int len
)
67 int offset
= fdt_size_dt_struct(fdt
);
70 spaceleft
= fdt_totalsize(fdt
) - fdt_off_dt_struct(fdt
)
71 - fdt_size_dt_strings(fdt
);
73 if ((offset
+ len
< offset
) || (offset
+ len
> spaceleft
))
76 fdt_set_size_dt_struct(fdt
, offset
+ len
);
77 return fdt_offset_ptr_w(fdt
, offset
, len
);
80 int fdt_create(void *buf
, int bufsize
)
84 if (bufsize
< sizeof(struct fdt_header
))
85 return -FDT_ERR_NOSPACE
;
87 memset(buf
, 0, bufsize
);
89 fdt_set_magic(fdt
, SW_MAGIC
);
90 fdt_set_version(fdt
, FDT_LAST_SUPPORTED_VERSION
);
91 fdt_set_last_comp_version(fdt
, FDT_FIRST_SUPPORTED_VERSION
);
92 fdt_set_totalsize(fdt
, bufsize
);
94 fdt_set_off_mem_rsvmap(fdt
, ALIGN(sizeof(struct fdt_header
),
95 sizeof(struct fdt_reserve_entry
)));
96 fdt_set_off_dt_struct(fdt
, fdt_off_mem_rsvmap(fdt
));
97 fdt_set_off_dt_strings(fdt
, bufsize
);
102 int fdt_add_reservemap_entry(void *fdt
, uint64_t addr
, uint64_t size
)
104 struct fdt_reserve_entry
*re
;
105 int err
= check_header_sw(fdt
);
110 if (fdt_size_dt_struct(fdt
))
111 return -FDT_ERR_BADSTATE
;
113 offset
= fdt_off_dt_struct(fdt
);
114 if ((offset
+ sizeof(*re
)) > fdt_totalsize(fdt
))
115 return -FDT_ERR_NOSPACE
;
117 re
= (struct fdt_reserve_entry
*)(fdt
+ offset
);
118 re
->address
= cpu_to_fdt64(addr
);
119 re
->size
= cpu_to_fdt64(size
);
121 fdt_set_off_dt_struct(fdt
, offset
+ sizeof(*re
));
126 int fdt_finish_reservemap(void *fdt
)
128 return fdt_add_reservemap_entry(fdt
, 0, 0);
131 int fdt_begin_node(void *fdt
, const char *name
)
133 struct fdt_node_header
*nh
;
134 int err
= check_header_sw(fdt
);
135 int namelen
= strlen(name
) + 1;
140 nh
= grab_space(fdt
, sizeof(*nh
) + ALIGN(namelen
, FDT_TAGSIZE
));
142 return -FDT_ERR_NOSPACE
;
144 nh
->tag
= cpu_to_fdt32(FDT_BEGIN_NODE
);
145 memcpy(nh
->name
, name
, namelen
);
149 int fdt_end_node(void *fdt
)
152 int err
= check_header_sw(fdt
);
157 en
= grab_space(fdt
, FDT_TAGSIZE
);
159 return -FDT_ERR_NOSPACE
;
161 *en
= cpu_to_fdt32(FDT_END_NODE
);
165 static int find_add_string(void *fdt
, const char *s
)
167 char *strtab
= (char *)fdt
+ fdt_totalsize(fdt
);
169 int strtabsize
= fdt_size_dt_strings(fdt
);
170 int len
= strlen(s
) + 1;
171 int struct_top
, offset
;
173 p
= _fdt_find_string(strtab
- strtabsize
, strtabsize
, s
);
178 offset
= -strtabsize
- len
;
179 struct_top
= fdt_off_dt_struct(fdt
) + fdt_size_dt_struct(fdt
);
180 if (fdt_totalsize(fdt
) + offset
< struct_top
)
181 return 0; /* no more room :( */
183 memcpy(strtab
+ offset
, s
, len
);
184 fdt_set_size_dt_strings(fdt
, strtabsize
+ len
);
188 int fdt_property(void *fdt
, const char *name
, const void *val
, int len
)
190 struct fdt_property
*prop
;
191 int err
= check_header_sw(fdt
);
197 nameoff
= find_add_string(fdt
, name
);
199 return -FDT_ERR_NOSPACE
;
201 prop
= grab_space(fdt
, sizeof(*prop
) + ALIGN(len
, FDT_TAGSIZE
));
203 return -FDT_ERR_NOSPACE
;
205 prop
->tag
= cpu_to_fdt32(FDT_PROP
);
206 prop
->nameoff
= cpu_to_fdt32(nameoff
);
207 prop
->len
= cpu_to_fdt32(len
);
208 memcpy(prop
->data
, val
, len
);
212 int fdt_finish(void *fdt
)
214 int err
= check_header_sw(fdt
);
215 char *p
= (char *)fdt
;
217 int oldstroffset
, newstroffset
;
219 int offset
, nextoffset
;
225 end
= grab_space(fdt
, sizeof(*end
));
227 return -FDT_ERR_NOSPACE
;
228 *end
= cpu_to_fdt32(FDT_END
);
230 /* Relocate the string table */
231 oldstroffset
= fdt_totalsize(fdt
) - fdt_size_dt_strings(fdt
);
232 newstroffset
= fdt_off_dt_struct(fdt
) + fdt_size_dt_struct(fdt
);
233 memmove(p
+ newstroffset
, p
+ oldstroffset
, fdt_size_dt_strings(fdt
));
234 fdt_set_off_dt_strings(fdt
, newstroffset
);
236 /* Walk the structure, correcting string offsets */
238 while ((tag
= fdt_next_tag(fdt
, offset
, &nextoffset
)) != FDT_END
) {
239 if (tag
== FDT_PROP
) {
240 struct fdt_property
*prop
=
241 fdt_offset_ptr_w(fdt
, offset
, sizeof(*prop
));
245 return -FDT_ERR_BADSTRUCTURE
;
247 nameoff
= fdt32_to_cpu(prop
->nameoff
);
248 nameoff
+= fdt_size_dt_strings(fdt
);
249 prop
->nameoff
= cpu_to_fdt32(nameoff
);
254 /* Finally, adjust the header */
255 fdt_set_totalsize(fdt
, newstroffset
+ fdt_size_dt_strings(fdt
));
256 fdt_set_magic(fdt
, FDT_MAGIC
);