blob: 6837fb1edbc3ea4109e37fef995300171fc37df4 [file] [log] [blame]
Gerald Van Baren35748172007-03-31 12:00:56 -04001/*
2 * libfdt - Flat Device Tree manipulation
3 * Copyright (C) 2006 David Gibson, IBM Corporation.
4 *
Kumar Gala8d04f022007-10-24 11:04:22 -05005 * libfdt is dual licensed: you can use it either under the terms of
6 * the GPL, or the BSD license, at your option.
Gerald Van Baren35748172007-03-31 12:00:56 -04007 *
Kumar Gala8d04f022007-10-24 11:04:22 -05008 * 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.
Gerald Van Baren35748172007-03-31 12:00:56 -040012 *
Kumar Gala8d04f022007-10-24 11:04:22 -050013 * 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.
Gerald Van Baren35748172007-03-31 12:00:56 -040050 */
51#include "libfdt_env.h"
52
Bartlomiej Sieka8cf30802008-02-29 16:00:24 +010053#ifndef USE_HOSTCC
Gerald Van Baren35748172007-03-31 12:00:56 -040054#include <fdt.h>
55#include <libfdt.h>
Bartlomiej Sieka8cf30802008-02-29 16:00:24 +010056#else
57#include "fdt_host.h"
58#endif
Gerald Van Baren35748172007-03-31 12:00:56 -040059
60#include "libfdt_internal.h"
61
Kumar Gala8d04f022007-10-24 11:04:22 -050062static int _blocks_misordered(const void *fdt,
63 int mem_rsv_size, int struct_size)
64{
65 return (fdt_off_mem_rsvmap(fdt) < ALIGN(sizeof(struct fdt_header), 8))
66 || (fdt_off_dt_struct(fdt) <
67 (fdt_off_mem_rsvmap(fdt) + mem_rsv_size))
68 || (fdt_off_dt_strings(fdt) <
69 (fdt_off_dt_struct(fdt) + struct_size))
70 || (fdt_totalsize(fdt) <
71 (fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt)));
72}
73
Gerald Van Baren35748172007-03-31 12:00:56 -040074static int rw_check_header(void *fdt)
75{
David Gibsond0ccb9b2008-02-18 18:06:31 +110076 CHECK_HEADER(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -040077
Kumar Gala8d04f022007-10-24 11:04:22 -050078 if (fdt_version(fdt) < 17)
Gerald Van Baren35748172007-03-31 12:00:56 -040079 return -FDT_ERR_BADVERSION;
Kumar Gala8d04f022007-10-24 11:04:22 -050080 if (_blocks_misordered(fdt, sizeof(struct fdt_reserve_entry),
81 fdt_size_dt_struct(fdt)))
Gerald Van Baren35748172007-03-31 12:00:56 -040082 return -FDT_ERR_BADLAYOUT;
Kumar Gala8d04f022007-10-24 11:04:22 -050083 if (fdt_version(fdt) > 17)
84 fdt_set_version(fdt, 17);
85
Gerald Van Baren35748172007-03-31 12:00:56 -040086 return 0;
87}
88
89#define RW_CHECK_HEADER(fdt) \
90 { \
91 int err; \
92 if ((err = rw_check_header(fdt)) != 0) \
93 return err; \
94 }
95
96static inline int _blob_data_size(void *fdt)
97{
98 return fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt);
99}
100
David Gibsonef4e8ce2008-07-07 10:10:48 +1000101static int _blob_splice(void *fdt, void *splicepoint, int oldlen, int newlen)
Gerald Van Baren35748172007-03-31 12:00:56 -0400102{
David Gibsonef4e8ce2008-07-07 10:10:48 +1000103 char *p = splicepoint;
104 char *end = (char *)fdt + _blob_data_size(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -0400105
106 if (((p + oldlen) < p) || ((p + oldlen) > end))
107 return -FDT_ERR_BADOFFSET;
David Gibsonef4e8ce2008-07-07 10:10:48 +1000108 if ((end - oldlen + newlen) > ((char *)fdt + fdt_totalsize(fdt)))
Gerald Van Baren35748172007-03-31 12:00:56 -0400109 return -FDT_ERR_NOSPACE;
110 memmove(p + newlen, p + oldlen, end - p - oldlen);
111 return 0;
112}
113
Kumar Gala8d04f022007-10-24 11:04:22 -0500114static int _blob_splice_mem_rsv(void *fdt, struct fdt_reserve_entry *p,
115 int oldn, int newn)
116{
117 int delta = (newn - oldn) * sizeof(*p);
118 int err;
119 err = _blob_splice(fdt, p, oldn * sizeof(*p), newn * sizeof(*p));
120 if (err)
121 return err;
122 fdt_set_off_dt_struct(fdt, fdt_off_dt_struct(fdt) + delta);
123 fdt_set_off_dt_strings(fdt, fdt_off_dt_strings(fdt) + delta);
124 return 0;
125}
126
Gerald Van Baren35748172007-03-31 12:00:56 -0400127static int _blob_splice_struct(void *fdt, void *p,
128 int oldlen, int newlen)
129{
130 int delta = newlen - oldlen;
131 int err;
132
133 if ((err = _blob_splice(fdt, p, oldlen, newlen)))
134 return err;
135
Kumar Gala8d04f022007-10-24 11:04:22 -0500136 fdt_set_size_dt_struct(fdt, fdt_size_dt_struct(fdt) + delta);
137 fdt_set_off_dt_strings(fdt, fdt_off_dt_strings(fdt) + delta);
Gerald Van Baren35748172007-03-31 12:00:56 -0400138 return 0;
139}
140
141static int _blob_splice_string(void *fdt, int newlen)
142{
David Gibsonef4e8ce2008-07-07 10:10:48 +1000143 void *p = (char *)fdt
144 + fdt_off_dt_strings(fdt) + fdt_size_dt_strings(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -0400145 int err;
146
147 if ((err = _blob_splice(fdt, p, 0, newlen)))
148 return err;
149
Kumar Gala8d04f022007-10-24 11:04:22 -0500150 fdt_set_size_dt_strings(fdt, fdt_size_dt_strings(fdt) + newlen);
Gerald Van Baren35748172007-03-31 12:00:56 -0400151 return 0;
152}
153
154static int _find_add_string(void *fdt, const char *s)
155{
156 char *strtab = (char *)fdt + fdt_off_dt_strings(fdt);
157 const char *p;
158 char *new;
159 int len = strlen(s) + 1;
160 int err;
161
162 p = _fdt_find_string(strtab, fdt_size_dt_strings(fdt), s);
163 if (p)
164 /* found it */
165 return (p - strtab);
166
167 new = strtab + fdt_size_dt_strings(fdt);
168 err = _blob_splice_string(fdt, len);
169 if (err)
170 return err;
171
172 memcpy(new, s, len);
173 return (new - strtab);
174}
175
Kumar Gala8d04f022007-10-24 11:04:22 -0500176int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size)
177{
178 struct fdt_reserve_entry *re;
179 int err;
180
David Gibson2f08bfa2008-05-20 17:19:11 +1000181 RW_CHECK_HEADER(fdt);
Kumar Gala8d04f022007-10-24 11:04:22 -0500182
183 re = _fdt_mem_rsv_w(fdt, fdt_num_mem_rsv(fdt));
184 err = _blob_splice_mem_rsv(fdt, re, 0, 1);
185 if (err)
186 return err;
187
188 re->address = cpu_to_fdt64(address);
189 re->size = cpu_to_fdt64(size);
190 return 0;
191}
192
193int fdt_del_mem_rsv(void *fdt, int n)
194{
195 struct fdt_reserve_entry *re = _fdt_mem_rsv_w(fdt, n);
196 int err;
197
David Gibson2f08bfa2008-05-20 17:19:11 +1000198 RW_CHECK_HEADER(fdt);
199
Kumar Gala8d04f022007-10-24 11:04:22 -0500200 if (n >= fdt_num_mem_rsv(fdt))
201 return -FDT_ERR_NOTFOUND;
202
203 err = _blob_splice_mem_rsv(fdt, re, 1, 0);
204 if (err)
205 return err;
206 return 0;
207}
208
Gerald Van Baren35748172007-03-31 12:00:56 -0400209static int _resize_property(void *fdt, int nodeoffset, const char *name, int len,
210 struct fdt_property **prop)
211{
212 int oldlen;
213 int err;
214
Kumar Gala8d04f022007-10-24 11:04:22 -0500215 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
Gerald Van Baren35748172007-03-31 12:00:56 -0400216 if (! (*prop))
217 return oldlen;
218
219 if ((err = _blob_splice_struct(fdt, (*prop)->data,
220 ALIGN(oldlen, FDT_TAGSIZE),
221 ALIGN(len, FDT_TAGSIZE))))
222 return err;
223
224 (*prop)->len = cpu_to_fdt32(len);
225 return 0;
226}
227
228static int _add_property(void *fdt, int nodeoffset, const char *name, int len,
229 struct fdt_property **prop)
230{
Gerald Van Baren35748172007-03-31 12:00:56 -0400231 int proplen;
232 int nextoffset;
233 int namestroff;
234 int err;
235
David Gibson2f08bfa2008-05-20 17:19:11 +1000236 if ((nextoffset = _fdt_check_node_offset(fdt, nodeoffset)) < 0)
237 return nextoffset;
Gerald Van Baren35748172007-03-31 12:00:56 -0400238
239 namestroff = _find_add_string(fdt, name);
240 if (namestroff < 0)
241 return namestroff;
242
Kumar Gala8d04f022007-10-24 11:04:22 -0500243 *prop = _fdt_offset_ptr_w(fdt, nextoffset);
Gerald Van Baren35748172007-03-31 12:00:56 -0400244 proplen = sizeof(**prop) + ALIGN(len, FDT_TAGSIZE);
245
246 err = _blob_splice_struct(fdt, *prop, 0, proplen);
247 if (err)
248 return err;
249
250 (*prop)->tag = cpu_to_fdt32(FDT_PROP);
251 (*prop)->nameoff = cpu_to_fdt32(namestroff);
252 (*prop)->len = cpu_to_fdt32(len);
253 return 0;
254}
255
David Gibson9eaeb072008-01-11 14:55:05 +1100256int fdt_set_name(void *fdt, int nodeoffset, const char *name)
257{
258 char *namep;
259 int oldlen, newlen;
260 int err;
261
David Gibson2f08bfa2008-05-20 17:19:11 +1000262 RW_CHECK_HEADER(fdt);
David Gibson9eaeb072008-01-11 14:55:05 +1100263
David Gibsonc6683022008-07-07 10:14:15 +1000264 namep = (char *)(uintptr_t)fdt_get_name(fdt, nodeoffset, &oldlen);
David Gibson9eaeb072008-01-11 14:55:05 +1100265 if (!namep)
266 return oldlen;
267
268 newlen = strlen(name);
269
270 err = _blob_splice_struct(fdt, namep, ALIGN(oldlen+1, FDT_TAGSIZE),
271 ALIGN(newlen+1, FDT_TAGSIZE));
272 if (err)
273 return err;
274
275 memcpy(namep, name, newlen+1);
276 return 0;
277}
278
Gerald Van Baren35748172007-03-31 12:00:56 -0400279int fdt_setprop(void *fdt, int nodeoffset, const char *name,
280 const void *val, int len)
281{
282 struct fdt_property *prop;
283 int err;
284
David Gibson2f08bfa2008-05-20 17:19:11 +1000285 RW_CHECK_HEADER(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -0400286
287 err = _resize_property(fdt, nodeoffset, name, len, &prop);
288 if (err == -FDT_ERR_NOTFOUND)
289 err = _add_property(fdt, nodeoffset, name, len, &prop);
290 if (err)
291 return err;
292
293 memcpy(prop->data, val, len);
294 return 0;
295}
296
297int fdt_delprop(void *fdt, int nodeoffset, const char *name)
298{
299 struct fdt_property *prop;
300 int len, proplen;
301
302 RW_CHECK_HEADER(fdt);
303
Kumar Gala8d04f022007-10-24 11:04:22 -0500304 prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
Gerald Van Baren35748172007-03-31 12:00:56 -0400305 if (! prop)
306 return len;
307
308 proplen = sizeof(*prop) + ALIGN(len, FDT_TAGSIZE);
309 return _blob_splice_struct(fdt, prop, proplen, 0);
310}
311
312int fdt_add_subnode_namelen(void *fdt, int parentoffset,
313 const char *name, int namelen)
314{
315 struct fdt_node_header *nh;
316 int offset, nextoffset;
317 int nodelen;
318 int err;
319 uint32_t tag;
320 uint32_t *endtag;
321
322 RW_CHECK_HEADER(fdt);
323
324 offset = fdt_subnode_offset_namelen(fdt, parentoffset, name, namelen);
325 if (offset >= 0)
326 return -FDT_ERR_EXISTS;
327 else if (offset != -FDT_ERR_NOTFOUND)
328 return offset;
329
330 /* Try to place the new node after the parent's properties */
Kumar Gala8d04f022007-10-24 11:04:22 -0500331 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
Gerald Van Baren35748172007-03-31 12:00:56 -0400332 do {
333 offset = nextoffset;
Kumar Gala8d04f022007-10-24 11:04:22 -0500334 tag = fdt_next_tag(fdt, offset, &nextoffset);
David Gibsonf84d65f2008-02-14 16:50:34 +1100335 } while ((tag == FDT_PROP) || (tag == FDT_NOP));
Gerald Van Baren35748172007-03-31 12:00:56 -0400336
Kumar Gala8d04f022007-10-24 11:04:22 -0500337 nh = _fdt_offset_ptr_w(fdt, offset);
Gerald Van Baren35748172007-03-31 12:00:56 -0400338 nodelen = sizeof(*nh) + ALIGN(namelen+1, FDT_TAGSIZE) + FDT_TAGSIZE;
339
340 err = _blob_splice_struct(fdt, nh, 0, nodelen);
341 if (err)
342 return err;
343
344 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
345 memset(nh->name, 0, ALIGN(namelen+1, FDT_TAGSIZE));
346 memcpy(nh->name, name, namelen);
David Gibsonef4e8ce2008-07-07 10:10:48 +1000347 endtag = (uint32_t *)((char *)nh + nodelen - FDT_TAGSIZE);
Gerald Van Baren35748172007-03-31 12:00:56 -0400348 *endtag = cpu_to_fdt32(FDT_END_NODE);
349
350 return offset;
351}
352
353int fdt_add_subnode(void *fdt, int parentoffset, const char *name)
354{
355 return fdt_add_subnode_namelen(fdt, parentoffset, name, strlen(name));
356}
357
358int fdt_del_node(void *fdt, int nodeoffset)
359{
360 int endoffset;
361
Kumar Gala8d04f022007-10-24 11:04:22 -0500362 RW_CHECK_HEADER(fdt);
363
Gerald Van Baren35748172007-03-31 12:00:56 -0400364 endoffset = _fdt_node_end_offset(fdt, nodeoffset);
365 if (endoffset < 0)
366 return endoffset;
367
Kumar Gala8d04f022007-10-24 11:04:22 -0500368 return _blob_splice_struct(fdt, _fdt_offset_ptr_w(fdt, nodeoffset),
Gerald Van Baren35748172007-03-31 12:00:56 -0400369 endoffset - nodeoffset, 0);
370}
371
David Gibsonef4e8ce2008-07-07 10:10:48 +1000372static void _packblocks(const char *old, char *new,
Kumar Gala8d04f022007-10-24 11:04:22 -0500373 int mem_rsv_size, int struct_size)
374{
375 int mem_rsv_off, struct_off, strings_off;
376
377 mem_rsv_off = ALIGN(sizeof(struct fdt_header), 8);
378 struct_off = mem_rsv_off + mem_rsv_size;
379 strings_off = struct_off + struct_size;
380
David Gibsonef4e8ce2008-07-07 10:10:48 +1000381 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size);
382 fdt_set_off_mem_rsvmap(new, mem_rsv_off);
Kumar Gala8d04f022007-10-24 11:04:22 -0500383
David Gibsonef4e8ce2008-07-07 10:10:48 +1000384 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size);
385 fdt_set_off_dt_struct(new, struct_off);
386 fdt_set_size_dt_struct(new, struct_size);
Kumar Gala8d04f022007-10-24 11:04:22 -0500387
David Gibsonef4e8ce2008-07-07 10:10:48 +1000388 memmove(new + strings_off, old + fdt_off_dt_strings(old),
389 fdt_size_dt_strings(old));
390 fdt_set_off_dt_strings(new, strings_off);
391 fdt_set_size_dt_strings(new, fdt_size_dt_strings(old));
Kumar Gala8d04f022007-10-24 11:04:22 -0500392}
393
394int fdt_open_into(const void *fdt, void *buf, int bufsize)
Gerald Van Baren35748172007-03-31 12:00:56 -0400395{
396 int err;
Kumar Gala8d04f022007-10-24 11:04:22 -0500397 int mem_rsv_size, struct_size;
398 int newsize;
David Gibsonef4e8ce2008-07-07 10:10:48 +1000399 const char *fdtstart = fdt;
400 const char *fdtend = fdtstart + fdt_totalsize(fdt);
401 char *tmp;
Gerald Van Baren35748172007-03-31 12:00:56 -0400402
David Gibsond0ccb9b2008-02-18 18:06:31 +1100403 CHECK_HEADER(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -0400404
Kumar Gala8d04f022007-10-24 11:04:22 -0500405 mem_rsv_size = (fdt_num_mem_rsv(fdt)+1)
406 * sizeof(struct fdt_reserve_entry);
Gerald Van Baren35748172007-03-31 12:00:56 -0400407
Kumar Gala8d04f022007-10-24 11:04:22 -0500408 if (fdt_version(fdt) >= 17) {
409 struct_size = fdt_size_dt_struct(fdt);
410 } else {
411 struct_size = 0;
412 while (fdt_next_tag(fdt, struct_size, &struct_size) != FDT_END)
413 ;
414 }
Gerald Van Baren35748172007-03-31 12:00:56 -0400415
Kumar Gala8d04f022007-10-24 11:04:22 -0500416 if (!_blocks_misordered(fdt, mem_rsv_size, struct_size)) {
417 /* no further work necessary */
418 err = fdt_move(fdt, buf, bufsize);
419 if (err)
420 return err;
421 fdt_set_version(buf, 17);
422 fdt_set_size_dt_struct(buf, struct_size);
423 fdt_set_totalsize(buf, bufsize);
424 return 0;
425 }
Gerald Van Baren35748172007-03-31 12:00:56 -0400426
Kumar Gala8d04f022007-10-24 11:04:22 -0500427 /* Need to reorder */
428 newsize = ALIGN(sizeof(struct fdt_header), 8) + mem_rsv_size
429 + struct_size + fdt_size_dt_strings(fdt);
430
431 if (bufsize < newsize)
432 return -FDT_ERR_NOSPACE;
433
David Gibsonef4e8ce2008-07-07 10:10:48 +1000434 /* First attempt to build converted tree at beginning of buffer */
435 tmp = buf;
436 /* But if that overlaps with the old tree... */
437 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) {
438 /* Try right after the old tree instead */
David Gibsonc6683022008-07-07 10:14:15 +1000439 tmp = (char *)(uintptr_t)fdtend;
David Gibsonef4e8ce2008-07-07 10:10:48 +1000440 if ((tmp + newsize) > ((char *)buf + bufsize))
Kumar Gala8d04f022007-10-24 11:04:22 -0500441 return -FDT_ERR_NOSPACE;
442 }
443
444 _packblocks(fdt, tmp, mem_rsv_size, struct_size);
445 memmove(buf, tmp, newsize);
446
447 fdt_set_magic(buf, FDT_MAGIC);
448 fdt_set_totalsize(buf, bufsize);
449 fdt_set_version(buf, 17);
450 fdt_set_last_comp_version(buf, 16);
451 fdt_set_boot_cpuid_phys(buf, fdt_boot_cpuid_phys(fdt));
Gerald Van Baren35748172007-03-31 12:00:56 -0400452
453 return 0;
454}
455
456int fdt_pack(void *fdt)
457{
Kumar Gala8d04f022007-10-24 11:04:22 -0500458 int mem_rsv_size;
Gerald Van Baren35748172007-03-31 12:00:56 -0400459
David Gibson2f08bfa2008-05-20 17:19:11 +1000460 RW_CHECK_HEADER(fdt);
Gerald Van Baren35748172007-03-31 12:00:56 -0400461
Kumar Gala8d04f022007-10-24 11:04:22 -0500462 mem_rsv_size = (fdt_num_mem_rsv(fdt)+1)
463 * sizeof(struct fdt_reserve_entry);
464 _packblocks(fdt, fdt, mem_rsv_size, fdt_size_dt_struct(fdt));
465 fdt_set_totalsize(fdt, _blob_data_size(fdt));
466
Gerald Van Baren35748172007-03-31 12:00:56 -0400467 return 0;
468}