blob: eef32b952a25f332ddd61af9f0a91bbc32ac4e5c [file] [log] [blame]
David Gibson7ba551f2006-12-01 16:59:43 +11001/*
2 * libfdt - Flat Device Tree manipulation
3 * Copyright (C) 2006 David Gibson, IBM Corporation.
4 *
David Gibson94816052007-06-13 16:30:48 +10005 * libfdt is dual licensed: you can use it either under the terms of
6 * the GPL, or the BSD license, at your option.
David Gibson7ba551f2006-12-01 16:59:43 +11007 *
David Gibson94816052007-06-13 16:30:48 +10008 * 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.
David Gibson7ba551f2006-12-01 16:59:43 +110012 *
David Gibson94816052007-06-13 16:30:48 +100013 * 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.
17 *
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,
21 * MA 02110-1301 USA
22 *
23 * Alternatively,
24 *
25 * b) Redistribution and use in source and binary forms, with or
26 * without modification, are permitted provided that the following
27 * conditions are met:
28 *
29 * 1. Redistributions of source code must retain the above
30 * copyright notice, this list of conditions and the following
31 * disclaimer.
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.
36 *
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.
David Gibson7ba551f2006-12-01 16:59:43 +110050 */
51#include "libfdt_env.h"
52
53#include <fdt.h>
54#include <libfdt.h>
55
56#include "libfdt_internal.h"
57
David Gibsona041dcd2007-11-01 11:37:31 +110058static int _blocks_misordered(const void *fdt,
59 int mem_rsv_size, int struct_size)
60{
61 return (fdt_off_mem_rsvmap(fdt) < ALIGN(sizeof(struct fdt_header), 8))
62 || (fdt_off_dt_struct(fdt) <
63 (fdt_off_mem_rsvmap(fdt) + mem_rsv_size))
64 || (fdt_off_dt_strings(fdt) <
65 (fdt_off_dt_struct(fdt) + struct_size))
66 || (fdt_totalsize(fdt) <
67 (fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt)));
68}
69
David Gibson73d60922006-12-15 15:12:47 +110070static int rw_check_header(void *fdt)
David Gibson7ba551f2006-12-01 16:59:43 +110071{
David Gibson8a4e7502008-02-18 18:06:31 +110072 CHECK_HEADER(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +110073
David Gibson4a5df5c2007-10-30 13:22:12 +110074 if (fdt_version(fdt) < 17)
David Gibson9a9fdf52006-12-15 15:12:51 +110075 return -FDT_ERR_BADVERSION;
David Gibsona041dcd2007-11-01 11:37:31 +110076 if (_blocks_misordered(fdt, sizeof(struct fdt_reserve_entry),
77 fdt_size_dt_struct(fdt)))
David Gibson9a9fdf52006-12-15 15:12:51 +110078 return -FDT_ERR_BADLAYOUT;
David Gibson4a5df5c2007-10-30 13:22:12 +110079 if (fdt_version(fdt) > 17)
80 fdt_set_version(fdt, 17);
81
David Gibson7ba551f2006-12-01 16:59:43 +110082 return 0;
83}
84
David Gibson9a9fdf52006-12-15 15:12:51 +110085#define RW_CHECK_HEADER(fdt) \
David Gibson7ba551f2006-12-01 16:59:43 +110086 { \
87 int err; \
88 if ((err = rw_check_header(fdt)) != 0) \
David Gibson9a9fdf52006-12-15 15:12:51 +110089 return err; \
David Gibson7ba551f2006-12-01 16:59:43 +110090 }
91
David Gibson73d60922006-12-15 15:12:47 +110092static inline int _blob_data_size(void *fdt)
David Gibson7ba551f2006-12-01 16:59:43 +110093{
94 return fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt);
95}
96
David Gibson36786db2008-07-07 10:10:48 +100097static int _blob_splice(void *fdt, void *splicepoint, int oldlen, int newlen)
David Gibson7ba551f2006-12-01 16:59:43 +110098{
David Gibson36786db2008-07-07 10:10:48 +100099 char *p = splicepoint;
100 char *end = (char *)fdt + _blob_data_size(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +1100101
102 if (((p + oldlen) < p) || ((p + oldlen) > end))
David Gibson9a9fdf52006-12-15 15:12:51 +1100103 return -FDT_ERR_BADOFFSET;
David Gibson36786db2008-07-07 10:10:48 +1000104 if ((end - oldlen + newlen) > ((char *)fdt + fdt_totalsize(fdt)))
David Gibson9a9fdf52006-12-15 15:12:51 +1100105 return -FDT_ERR_NOSPACE;
David Gibson7ba551f2006-12-01 16:59:43 +1100106 memmove(p + newlen, p + oldlen, end - p - oldlen);
107 return 0;
108}
109
David Gibsonfd1bf3a2007-10-10 17:12:12 +1000110static int _blob_splice_mem_rsv(void *fdt, struct fdt_reserve_entry *p,
111 int oldn, int newn)
112{
113 int delta = (newn - oldn) * sizeof(*p);
114 int err;
115 err = _blob_splice(fdt, p, oldn * sizeof(*p), newn * sizeof(*p));
116 if (err)
117 return err;
David Gibson9b911342007-10-25 14:29:38 +1000118 fdt_set_off_dt_struct(fdt, fdt_off_dt_struct(fdt) + delta);
119 fdt_set_off_dt_strings(fdt, fdt_off_dt_strings(fdt) + delta);
David Gibsonfd1bf3a2007-10-10 17:12:12 +1000120 return 0;
121}
122
David Gibson73d60922006-12-15 15:12:47 +1100123static int _blob_splice_struct(void *fdt, void *p,
David Gibson7ba551f2006-12-01 16:59:43 +1100124 int oldlen, int newlen)
125{
126 int delta = newlen - oldlen;
127 int err;
128
129 if ((err = _blob_splice(fdt, p, oldlen, newlen)))
130 return err;
131
David Gibson9b911342007-10-25 14:29:38 +1000132 fdt_set_size_dt_struct(fdt, fdt_size_dt_struct(fdt) + delta);
133 fdt_set_off_dt_strings(fdt, fdt_off_dt_strings(fdt) + delta);
David Gibson7ba551f2006-12-01 16:59:43 +1100134 return 0;
135}
136
David Gibson73d60922006-12-15 15:12:47 +1100137static int _blob_splice_string(void *fdt, int newlen)
David Gibson7ba551f2006-12-01 16:59:43 +1100138{
David Gibson36786db2008-07-07 10:10:48 +1000139 void *p = (char *)fdt
140 + fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +1100141 int err;
142
143 if ((err = _blob_splice(fdt, p, 0, newlen)))
144 return err;
145
David Gibson9b911342007-10-25 14:29:38 +1000146 fdt_set_size_dt_strings(fdt, fdt_size_dt_strings(fdt) + newlen);
David Gibson7ba551f2006-12-01 16:59:43 +1100147 return 0;
148}
149
David Gibson73d60922006-12-15 15:12:47 +1100150static int _find_add_string(void *fdt, const char *s)
David Gibson7ba551f2006-12-01 16:59:43 +1100151{
152 char *strtab = (char *)fdt + fdt_off_dt_strings(fdt);
153 const char *p;
154 char *new;
155 int len = strlen(s) + 1;
156 int err;
157
158 p = _fdt_find_string(strtab, fdt_size_dt_strings(fdt), s);
159 if (p)
160 /* found it */
161 return (p - strtab);
162
163 new = strtab + fdt_size_dt_strings(fdt);
164 err = _blob_splice_string(fdt, len);
165 if (err)
David Gibson9a9fdf52006-12-15 15:12:51 +1100166 return err;
David Gibson7ba551f2006-12-01 16:59:43 +1100167
168 memcpy(new, s, len);
169 return (new - strtab);
170}
171
David Gibsonfd1bf3a2007-10-10 17:12:12 +1000172int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size)
173{
174 struct fdt_reserve_entry *re;
175 int err;
176
David Gibsonaa1baab2008-05-20 17:19:11 +1000177 RW_CHECK_HEADER(fdt);
David Gibsonfd1bf3a2007-10-10 17:12:12 +1000178
179 re = _fdt_mem_rsv_w(fdt, fdt_num_mem_rsv(fdt));
180 err = _blob_splice_mem_rsv(fdt, re, 0, 1);
181 if (err)
182 return err;
183
184 re->address = cpu_to_fdt64(address);
185 re->size = cpu_to_fdt64(size);
186 return 0;
187}
188
189int fdt_del_mem_rsv(void *fdt, int n)
190{
191 struct fdt_reserve_entry *re = _fdt_mem_rsv_w(fdt, n);
192 int err;
193
David Gibsonaa1baab2008-05-20 17:19:11 +1000194 RW_CHECK_HEADER(fdt);
195
David Gibsonfd1bf3a2007-10-10 17:12:12 +1000196 if (n >= fdt_num_mem_rsv(fdt))
197 return -FDT_ERR_NOTFOUND;
198
199 err = _blob_splice_mem_rsv(fdt, re, 1, 0);
200 if (err)
201 return err;
202 return 0;
203}
204
David Gibsona7ee95d2006-12-15 15:12:49 +1100205static int _resize_property(void *fdt, int nodeoffset, const char *name, int len,
206 struct fdt_property **prop)
David Gibson7ba551f2006-12-01 16:59:43 +1100207{
David Gibson7ba551f2006-12-01 16:59:43 +1100208 int oldlen;
209 int err;
210
David Gibsona6c76f92007-06-13 14:18:10 +1000211 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
David Gibsona7ee95d2006-12-15 15:12:49 +1100212 if (! (*prop))
David Gibson9a9fdf52006-12-15 15:12:51 +1100213 return oldlen;
David Gibson7ba551f2006-12-01 16:59:43 +1100214
David Gibsona7ee95d2006-12-15 15:12:49 +1100215 if ((err = _blob_splice_struct(fdt, (*prop)->data,
David Gibson7ba551f2006-12-01 16:59:43 +1100216 ALIGN(oldlen, FDT_TAGSIZE),
217 ALIGN(len, FDT_TAGSIZE))))
David Gibsona7ee95d2006-12-15 15:12:49 +1100218 return err;
David Gibson7ba551f2006-12-01 16:59:43 +1100219
David Gibsona7ee95d2006-12-15 15:12:49 +1100220 (*prop)->len = cpu_to_fdt32(len);
221 return 0;
David Gibson7ba551f2006-12-01 16:59:43 +1100222}
223
David Gibsona7ee95d2006-12-15 15:12:49 +1100224static int _add_property(void *fdt, int nodeoffset, const char *name, int len,
225 struct fdt_property **prop)
David Gibson7ba551f2006-12-01 16:59:43 +1100226{
David Gibson7ba551f2006-12-01 16:59:43 +1100227 int proplen;
228 int nextoffset;
229 int namestroff;
230 int err;
231
David Gibsonaa1baab2008-05-20 17:19:11 +1000232 if ((nextoffset = _fdt_check_node_offset(fdt, nodeoffset)) < 0)
233 return nextoffset;
David Gibson7ba551f2006-12-01 16:59:43 +1100234
235 namestroff = _find_add_string(fdt, name);
236 if (namestroff < 0)
David Gibson9a9fdf52006-12-15 15:12:51 +1100237 return namestroff;
David Gibson7ba551f2006-12-01 16:59:43 +1100238
David Gibsona6c76f92007-06-13 14:18:10 +1000239 *prop = _fdt_offset_ptr_w(fdt, nextoffset);
David Gibsona7ee95d2006-12-15 15:12:49 +1100240 proplen = sizeof(**prop) + ALIGN(len, FDT_TAGSIZE);
David Gibson7ba551f2006-12-01 16:59:43 +1100241
David Gibsona7ee95d2006-12-15 15:12:49 +1100242 err = _blob_splice_struct(fdt, *prop, 0, proplen);
David Gibson7ba551f2006-12-01 16:59:43 +1100243 if (err)
David Gibsona7ee95d2006-12-15 15:12:49 +1100244 return err;
David Gibson7ba551f2006-12-01 16:59:43 +1100245
David Gibsona7ee95d2006-12-15 15:12:49 +1100246 (*prop)->tag = cpu_to_fdt32(FDT_PROP);
247 (*prop)->nameoff = cpu_to_fdt32(namestroff);
248 (*prop)->len = cpu_to_fdt32(len);
249 return 0;
David Gibson7ba551f2006-12-01 16:59:43 +1100250}
251
David Gibson82b327d2008-01-11 14:55:05 +1100252int fdt_set_name(void *fdt, int nodeoffset, const char *name)
253{
254 char *namep;
255 int oldlen, newlen;
256 int err;
257
David Gibsonaa1baab2008-05-20 17:19:11 +1000258 RW_CHECK_HEADER(fdt);
David Gibson82b327d2008-01-11 14:55:05 +1100259
David Gibson14090972008-07-07 10:14:15 +1000260 namep = (char *)(uintptr_t)fdt_get_name(fdt, nodeoffset, &oldlen);
David Gibson82b327d2008-01-11 14:55:05 +1100261 if (!namep)
262 return oldlen;
263
264 newlen = strlen(name);
265
266 err = _blob_splice_struct(fdt, namep, ALIGN(oldlen+1, FDT_TAGSIZE),
267 ALIGN(newlen+1, FDT_TAGSIZE));
268 if (err)
269 return err;
270
271 memcpy(namep, name, newlen+1);
272 return 0;
273}
274
David Gibson73d60922006-12-15 15:12:47 +1100275int fdt_setprop(void *fdt, int nodeoffset, const char *name,
David Gibson7ba551f2006-12-01 16:59:43 +1100276 const void *val, int len)
277{
278 struct fdt_property *prop;
279 int err;
280
David Gibsonaa1baab2008-05-20 17:19:11 +1000281 RW_CHECK_HEADER(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +1100282
David Gibsona7ee95d2006-12-15 15:12:49 +1100283 err = _resize_property(fdt, nodeoffset, name, len, &prop);
David Gibson9a9fdf52006-12-15 15:12:51 +1100284 if (err == -FDT_ERR_NOTFOUND)
David Gibsona7ee95d2006-12-15 15:12:49 +1100285 err = _add_property(fdt, nodeoffset, name, len, &prop);
David Gibson7ba551f2006-12-01 16:59:43 +1100286 if (err)
287 return err;
288
289 memcpy(prop->data, val, len);
290 return 0;
291}
292
David Gibson73d60922006-12-15 15:12:47 +1100293int fdt_delprop(void *fdt, int nodeoffset, const char *name)
David Gibson7ba551f2006-12-01 16:59:43 +1100294{
295 struct fdt_property *prop;
296 int len, proplen;
David Gibson7ba551f2006-12-01 16:59:43 +1100297
David Gibson9a9fdf52006-12-15 15:12:51 +1100298 RW_CHECK_HEADER(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +1100299
David Gibsona6c76f92007-06-13 14:18:10 +1000300 prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
David Gibsona7ee95d2006-12-15 15:12:49 +1100301 if (! prop)
David Gibson9a9fdf52006-12-15 15:12:51 +1100302 return len;
David Gibson7ba551f2006-12-01 16:59:43 +1100303
304 proplen = sizeof(*prop) + ALIGN(len, FDT_TAGSIZE);
305 return _blob_splice_struct(fdt, prop, proplen, 0);
306}
307
David Gibson73d60922006-12-15 15:12:47 +1100308int fdt_add_subnode_namelen(void *fdt, int parentoffset,
David Gibson7ba551f2006-12-01 16:59:43 +1100309 const char *name, int namelen)
310{
311 struct fdt_node_header *nh;
312 int offset, nextoffset;
313 int nodelen;
314 int err;
315 uint32_t tag;
316 uint32_t *endtag;
317
David Gibson9a9fdf52006-12-15 15:12:51 +1100318 RW_CHECK_HEADER(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +1100319
320 offset = fdt_subnode_offset_namelen(fdt, parentoffset, name, namelen);
David Gibson9a9fdf52006-12-15 15:12:51 +1100321 if (offset >= 0)
322 return -FDT_ERR_EXISTS;
323 else if (offset != -FDT_ERR_NOTFOUND)
324 return offset;
David Gibson7ba551f2006-12-01 16:59:43 +1100325
326 /* Try to place the new node after the parent's properties */
David Gibson3c44c872007-10-24 11:06:09 +1000327 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
David Gibson7ba551f2006-12-01 16:59:43 +1100328 do {
329 offset = nextoffset;
David Gibson3c44c872007-10-24 11:06:09 +1000330 tag = fdt_next_tag(fdt, offset, &nextoffset);
David Gibson089adb92008-02-14 16:50:34 +1100331 } while ((tag == FDT_PROP) || (tag == FDT_NOP));
David Gibson7ba551f2006-12-01 16:59:43 +1100332
David Gibsona6c76f92007-06-13 14:18:10 +1000333 nh = _fdt_offset_ptr_w(fdt, offset);
David Gibson7ba551f2006-12-01 16:59:43 +1100334 nodelen = sizeof(*nh) + ALIGN(namelen+1, FDT_TAGSIZE) + FDT_TAGSIZE;
David Gibson568b5692006-12-12 15:46:14 +1100335
David Gibson7ba551f2006-12-01 16:59:43 +1100336 err = _blob_splice_struct(fdt, nh, 0, nodelen);
337 if (err)
David Gibson9a9fdf52006-12-15 15:12:51 +1100338 return err;
David Gibson7ba551f2006-12-01 16:59:43 +1100339
340 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
341 memset(nh->name, 0, ALIGN(namelen+1, FDT_TAGSIZE));
342 memcpy(nh->name, name, namelen);
David Gibson36786db2008-07-07 10:10:48 +1000343 endtag = (uint32_t *)((char *)nh + nodelen - FDT_TAGSIZE);
David Gibson7ba551f2006-12-01 16:59:43 +1100344 *endtag = cpu_to_fdt32(FDT_END_NODE);
345
346 return offset;
347}
348
David Gibson73d60922006-12-15 15:12:47 +1100349int fdt_add_subnode(void *fdt, int parentoffset, const char *name)
David Gibson7ba551f2006-12-01 16:59:43 +1100350{
351 return fdt_add_subnode_namelen(fdt, parentoffset, name, strlen(name));
352}
353
David Gibson73d60922006-12-15 15:12:47 +1100354int fdt_del_node(void *fdt, int nodeoffset)
David Gibson7ba551f2006-12-01 16:59:43 +1100355{
David Gibson7ba551f2006-12-01 16:59:43 +1100356 int endoffset;
David Gibson7ba551f2006-12-01 16:59:43 +1100357
David Gibson394e4722007-10-18 14:17:25 +1000358 RW_CHECK_HEADER(fdt);
359
David Gibson7ba551f2006-12-01 16:59:43 +1100360 endoffset = _fdt_node_end_offset(fdt, nodeoffset);
David Gibson9a9fdf52006-12-15 15:12:51 +1100361 if (endoffset < 0)
362 return endoffset;
David Gibson7ba551f2006-12-01 16:59:43 +1100363
David Gibsona6c76f92007-06-13 14:18:10 +1000364 return _blob_splice_struct(fdt, _fdt_offset_ptr_w(fdt, nodeoffset),
David Gibson568b5692006-12-12 15:46:14 +1100365 endoffset - nodeoffset, 0);
David Gibson7ba551f2006-12-01 16:59:43 +1100366}
367
David Gibson36786db2008-07-07 10:10:48 +1000368static void _packblocks(const char *old, char *new,
David Gibsona041dcd2007-11-01 11:37:31 +1100369 int mem_rsv_size, int struct_size)
370{
371 int mem_rsv_off, struct_off, strings_off;
372
373 mem_rsv_off = ALIGN(sizeof(struct fdt_header), 8);
374 struct_off = mem_rsv_off + mem_rsv_size;
375 strings_off = struct_off + struct_size;
376
David Gibson36786db2008-07-07 10:10:48 +1000377 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size);
378 fdt_set_off_mem_rsvmap(new, mem_rsv_off);
David Gibsona041dcd2007-11-01 11:37:31 +1100379
David Gibson36786db2008-07-07 10:10:48 +1000380 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size);
381 fdt_set_off_dt_struct(new, struct_off);
382 fdt_set_size_dt_struct(new, struct_size);
David Gibsona041dcd2007-11-01 11:37:31 +1100383
David Gibson36786db2008-07-07 10:10:48 +1000384 memmove(new + strings_off, old + fdt_off_dt_strings(old),
385 fdt_size_dt_strings(old));
386 fdt_set_off_dt_strings(new, strings_off);
387 fdt_set_size_dt_strings(new, fdt_size_dt_strings(old));
David Gibsona041dcd2007-11-01 11:37:31 +1100388}
389
390int fdt_open_into(const void *fdt, void *buf, int bufsize)
David Gibson7ba551f2006-12-01 16:59:43 +1100391{
392 int err;
David Gibsona041dcd2007-11-01 11:37:31 +1100393 int mem_rsv_size, struct_size;
394 int newsize;
David Gibson36786db2008-07-07 10:10:48 +1000395 const char *fdtstart = fdt;
396 const char *fdtend = fdtstart + fdt_totalsize(fdt);
397 char *tmp;
David Gibson7ba551f2006-12-01 16:59:43 +1100398
David Gibson8a4e7502008-02-18 18:06:31 +1100399 CHECK_HEADER(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +1100400
David Gibsona041dcd2007-11-01 11:37:31 +1100401 mem_rsv_size = (fdt_num_mem_rsv(fdt)+1)
402 * sizeof(struct fdt_reserve_entry);
David Gibson73d60922006-12-15 15:12:47 +1100403
David Gibsona041dcd2007-11-01 11:37:31 +1100404 if (fdt_version(fdt) >= 17) {
405 struct_size = fdt_size_dt_struct(fdt);
406 } else {
407 struct_size = 0;
408 while (fdt_next_tag(fdt, struct_size, &struct_size) != FDT_END)
409 ;
410 }
David Gibson7ba551f2006-12-01 16:59:43 +1100411
David Gibsona041dcd2007-11-01 11:37:31 +1100412 if (!_blocks_misordered(fdt, mem_rsv_size, struct_size)) {
413 /* no further work necessary */
414 err = fdt_move(fdt, buf, bufsize);
415 if (err)
416 return err;
417 fdt_set_version(buf, 17);
418 fdt_set_size_dt_struct(buf, struct_size);
419 fdt_set_totalsize(buf, bufsize);
420 return 0;
421 }
David Gibson7ba551f2006-12-01 16:59:43 +1100422
David Gibsona041dcd2007-11-01 11:37:31 +1100423 /* Need to reorder */
424 newsize = ALIGN(sizeof(struct fdt_header), 8) + mem_rsv_size
425 + struct_size + fdt_size_dt_strings(fdt);
426
427 if (bufsize < newsize)
428 return -FDT_ERR_NOSPACE;
429
David Gibson36786db2008-07-07 10:10:48 +1000430 /* First attempt to build converted tree at beginning of buffer */
431 tmp = buf;
432 /* But if that overlaps with the old tree... */
433 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) {
434 /* Try right after the old tree instead */
David Gibson14090972008-07-07 10:14:15 +1000435 tmp = (char *)(uintptr_t)fdtend;
David Gibson36786db2008-07-07 10:10:48 +1000436 if ((tmp + newsize) > ((char *)buf + bufsize))
David Gibsona041dcd2007-11-01 11:37:31 +1100437 return -FDT_ERR_NOSPACE;
438 }
439
440 _packblocks(fdt, tmp, mem_rsv_size, struct_size);
441 memmove(buf, tmp, newsize);
442
443 fdt_set_magic(buf, FDT_MAGIC);
444 fdt_set_totalsize(buf, bufsize);
445 fdt_set_version(buf, 17);
446 fdt_set_last_comp_version(buf, 16);
447 fdt_set_boot_cpuid_phys(buf, fdt_boot_cpuid_phys(fdt));
David Gibson7ba551f2006-12-01 16:59:43 +1100448
David Gibson9a9fdf52006-12-15 15:12:51 +1100449 return 0;
David Gibson7ba551f2006-12-01 16:59:43 +1100450}
451
David Gibson73d60922006-12-15 15:12:47 +1100452int fdt_pack(void *fdt)
David Gibson7ba551f2006-12-01 16:59:43 +1100453{
David Gibsona041dcd2007-11-01 11:37:31 +1100454 int mem_rsv_size;
David Gibson7ba551f2006-12-01 16:59:43 +1100455
David Gibsonaa1baab2008-05-20 17:19:11 +1000456 RW_CHECK_HEADER(fdt);
David Gibson7ba551f2006-12-01 16:59:43 +1100457
David Gibsona041dcd2007-11-01 11:37:31 +1100458 mem_rsv_size = (fdt_num_mem_rsv(fdt)+1)
459 * sizeof(struct fdt_reserve_entry);
460 _packblocks(fdt, fdt, mem_rsv_size, fdt_size_dt_struct(fdt));
David Gibson9b911342007-10-25 14:29:38 +1000461 fdt_set_totalsize(fdt, _blob_data_size(fdt));
David Gibsona041dcd2007-11-01 11:37:31 +1100462
David Gibson9a9fdf52006-12-15 15:12:51 +1100463 return 0;
David Gibson7ba551f2006-12-01 16:59:43 +1100464}