blob: 28d0b2381df6e526a09043da4b79247ce1998c41 [file] [log] [blame]
David Gibsonfc14dad2005-06-08 17:18:34 +10001/*
2 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
3 *
David Gibson63dc9c72007-09-18 11:44:04 +10004 *
David Gibsonfc14dad2005-06-08 17:18:34 +10005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
David Gibson63dc9c72007-09-18 11:44:04 +100014 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
David Gibsonfc14dad2005-06-08 17:18:34 +100019 */
20
21#include "dtc.h"
David Gibsona742aad2008-05-16 13:22:09 +100022#include "srcpos.h"
David Gibsonfc14dad2005-06-08 17:18:34 +100023
24#define FTF_FULLPATH 0x1
25#define FTF_VARALIGN 0x2
26#define FTF_NAMEPROPS 0x4
27#define FTF_BOOTCPUID 0x8
28#define FTF_STRTABSIZE 0x10
David Gibson46c88df2007-03-14 11:02:40 +110029#define FTF_STRUCTSIZE 0x20
Milton Millerce243222007-06-09 23:21:31 -050030#define FTF_NOPS 0x40
David Gibsonfc14dad2005-06-08 17:18:34 +100031
David Gibson230f2532005-08-29 12:48:02 +100032static struct version_info {
David Gibsonfc14dad2005-06-08 17:18:34 +100033 int version;
34 int last_comp_version;
35 int hdr_size;
36 int flags;
37} version_table[] = {
David Gibsonfb7c7ac2007-09-26 13:11:05 +100038 {1, 1, FDT_V1_SIZE,
David Gibsonfc14dad2005-06-08 17:18:34 +100039 FTF_FULLPATH|FTF_VARALIGN|FTF_NAMEPROPS},
David Gibsonfb7c7ac2007-09-26 13:11:05 +100040 {2, 1, FDT_V2_SIZE,
David Gibsonfc14dad2005-06-08 17:18:34 +100041 FTF_FULLPATH|FTF_VARALIGN|FTF_NAMEPROPS|FTF_BOOTCPUID},
David Gibsonfb7c7ac2007-09-26 13:11:05 +100042 {3, 1, FDT_V3_SIZE,
David Gibsonfc14dad2005-06-08 17:18:34 +100043 FTF_FULLPATH|FTF_VARALIGN|FTF_NAMEPROPS|FTF_BOOTCPUID|FTF_STRTABSIZE},
David Gibsonfb7c7ac2007-09-26 13:11:05 +100044 {16, 16, FDT_V3_SIZE,
Milton Millerce243222007-06-09 23:21:31 -050045 FTF_BOOTCPUID|FTF_STRTABSIZE|FTF_NOPS},
David Gibsonfb7c7ac2007-09-26 13:11:05 +100046 {17, 16, FDT_V17_SIZE,
Milton Millerce243222007-06-09 23:21:31 -050047 FTF_BOOTCPUID|FTF_STRTABSIZE|FTF_STRUCTSIZE|FTF_NOPS},
David Gibsonfc14dad2005-06-08 17:18:34 +100048};
49
50struct emitter {
51 void (*cell)(void *, cell_t);
52 void (*string)(void *, char *, int);
53 void (*align)(void *, int);
54 void (*data)(void *, struct data);
David Gibson05898c62010-02-24 18:22:17 +110055 void (*beginnode)(void *, struct label *labels);
56 void (*endnode)(void *, struct label *labels);
57 void (*property)(void *, struct label *labels);
David Gibsonfc14dad2005-06-08 17:18:34 +100058};
59
60static void bin_emit_cell(void *e, cell_t val)
61{
62 struct data *dtbuf = e;
63
64 *dtbuf = data_append_cell(*dtbuf, val);
65}
66
67static void bin_emit_string(void *e, char *str, int len)
68{
69 struct data *dtbuf = e;
70
71 if (len == 0)
72 len = strlen(str);
73
74 *dtbuf = data_append_data(*dtbuf, str, len);
75 *dtbuf = data_append_byte(*dtbuf, '\0');
76}
77
78static void bin_emit_align(void *e, int a)
79{
80 struct data *dtbuf = e;
81
82 *dtbuf = data_append_align(*dtbuf, a);
83}
84
85static void bin_emit_data(void *e, struct data d)
86{
87 struct data *dtbuf = e;
88
89 *dtbuf = data_append_data(*dtbuf, d.val, d.len);
90}
91
David Gibson05898c62010-02-24 18:22:17 +110092static void bin_emit_beginnode(void *e, struct label *labels)
David Gibsonfc14dad2005-06-08 17:18:34 +100093{
David Gibsonfb7c7ac2007-09-26 13:11:05 +100094 bin_emit_cell(e, FDT_BEGIN_NODE);
David Gibsonfc14dad2005-06-08 17:18:34 +100095}
96
David Gibson05898c62010-02-24 18:22:17 +110097static void bin_emit_endnode(void *e, struct label *labels)
David Gibsonfc14dad2005-06-08 17:18:34 +100098{
David Gibsonfb7c7ac2007-09-26 13:11:05 +100099 bin_emit_cell(e, FDT_END_NODE);
David Gibsonfc14dad2005-06-08 17:18:34 +1000100}
101
David Gibson05898c62010-02-24 18:22:17 +1100102static void bin_emit_property(void *e, struct label *labels)
David Gibsonfc14dad2005-06-08 17:18:34 +1000103{
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000104 bin_emit_cell(e, FDT_PROP);
David Gibsonfc14dad2005-06-08 17:18:34 +1000105}
106
David Gibson230f2532005-08-29 12:48:02 +1000107static struct emitter bin_emitter = {
David Gibsonfc14dad2005-06-08 17:18:34 +1000108 .cell = bin_emit_cell,
109 .string = bin_emit_string,
110 .align = bin_emit_align,
111 .data = bin_emit_data,
112 .beginnode = bin_emit_beginnode,
113 .endnode = bin_emit_endnode,
David Gibson63dc9c72007-09-18 11:44:04 +1000114 .property = bin_emit_property,
David Gibsonfc14dad2005-06-08 17:18:34 +1000115};
116
David Gibson92cb9a22007-12-04 14:26:15 +1100117static void emit_label(FILE *f, const char *prefix, const char *label)
David Gibson4102d842005-06-16 14:36:37 +1000118{
119 fprintf(f, "\t.globl\t%s_%s\n", prefix, label);
120 fprintf(f, "%s_%s:\n", prefix, label);
121 fprintf(f, "_%s_%s:\n", prefix, label);
122}
123
David Gibson92cb9a22007-12-04 14:26:15 +1100124static void emit_offset_label(FILE *f, const char *label, int offset)
Milton Miller6a99b132007-07-07 01:18:51 -0500125{
126 fprintf(f, "\t.globl\t%s\n", label);
127 fprintf(f, "%s\t= . + %d\n", label, offset);
128}
129
David Gibson26d93f62009-01-08 11:47:55 +1100130#define ASM_EMIT_BELONG(f, fmt, ...) \
131 { \
132 fprintf((f), "\t.byte\t((" fmt ") >> 24) & 0xff\n", __VA_ARGS__); \
133 fprintf((f), "\t.byte\t((" fmt ") >> 16) & 0xff\n", __VA_ARGS__); \
134 fprintf((f), "\t.byte\t((" fmt ") >> 8) & 0xff\n", __VA_ARGS__); \
135 fprintf((f), "\t.byte\t(" fmt ") & 0xff\n", __VA_ARGS__); \
136 }
137
David Gibsonfc14dad2005-06-08 17:18:34 +1000138static void asm_emit_cell(void *e, cell_t val)
139{
140 FILE *f = e;
141
David Gibson26d93f62009-01-08 11:47:55 +1100142 fprintf(f, "\t.byte 0x%02x; .byte 0x%02x; .byte 0x%02x; .byte 0x%02x\n",
143 (val >> 24) & 0xff, (val >> 16) & 0xff,
144 (val >> 8) & 0xff, val & 0xff);
David Gibsonfc14dad2005-06-08 17:18:34 +1000145}
146
147static void asm_emit_string(void *e, char *str, int len)
148{
149 FILE *f = e;
Jon Loeliger2d50f8f2007-10-18 09:46:52 -0500150 char c = 0;
David Gibsonfc14dad2005-06-08 17:18:34 +1000151
152 if (len != 0) {
153 /* XXX: ewww */
154 c = str[len];
155 str[len] = '\0';
156 }
David Gibson63dc9c72007-09-18 11:44:04 +1000157
David Gibsonfc14dad2005-06-08 17:18:34 +1000158 fprintf(f, "\t.string\t\"%s\"\n", str);
159
160 if (len != 0) {
161 str[len] = c;
162 }
163}
164
165static void asm_emit_align(void *e, int a)
166{
167 FILE *f = e;
168
David Gibsonb31b2712009-11-12 13:30:02 +1100169 fprintf(f, "\t.balign\t%d, 0\n", a);
David Gibsonfc14dad2005-06-08 17:18:34 +1000170}
171
172static void asm_emit_data(void *e, struct data d)
173{
174 FILE *f = e;
175 int off = 0;
David Gibson5ac97df2008-02-28 20:58:28 +1100176 struct marker *m = d.markers;
Milton Miller6a99b132007-07-07 01:18:51 -0500177
David Gibson5ac97df2008-02-28 20:58:28 +1100178 for_each_marker_of_type(m, LABEL)
179 emit_offset_label(f, m->ref, m->offset);
David Gibsonfc14dad2005-06-08 17:18:34 +1000180
David Gibson53359012008-06-25 13:53:07 +1000181 while ((d.len - off) >= sizeof(uint32_t)) {
David Gibson26d93f62009-01-08 11:47:55 +1100182 asm_emit_cell(e, fdt32_to_cpu(*((uint32_t *)(d.val+off))));
David Gibson53359012008-06-25 13:53:07 +1000183 off += sizeof(uint32_t);
David Gibsonfc14dad2005-06-08 17:18:34 +1000184 }
185
David Gibsonc8c374b2008-06-25 14:27:53 +1000186 while ((d.len - off) >= 1) {
David Gibsonfc14dad2005-06-08 17:18:34 +1000187 fprintf(f, "\t.byte\t0x%hhx\n", d.val[off]);
188 off += 1;
189 }
190
191 assert(off == d.len);
192}
193
David Gibson05898c62010-02-24 18:22:17 +1100194static void asm_emit_beginnode(void *e, struct label *labels)
David Gibsonfc14dad2005-06-08 17:18:34 +1000195{
196 FILE *f = e;
David Gibson05898c62010-02-24 18:22:17 +1100197 struct label *l;
David Gibsonfc14dad2005-06-08 17:18:34 +1000198
David Gibson05898c62010-02-24 18:22:17 +1100199 for_each_label(labels, l) {
200 fprintf(f, "\t.globl\t%s\n", l->label);
201 fprintf(f, "%s:\n", l->label);
David Gibson4102d842005-06-16 14:36:37 +1000202 }
David Gibson26d93f62009-01-08 11:47:55 +1100203 fprintf(f, "\t/* FDT_BEGIN_NODE */\n");
204 asm_emit_cell(e, FDT_BEGIN_NODE);
David Gibsonfc14dad2005-06-08 17:18:34 +1000205}
206
David Gibson05898c62010-02-24 18:22:17 +1100207static void asm_emit_endnode(void *e, struct label *labels)
David Gibsonfc14dad2005-06-08 17:18:34 +1000208{
209 FILE *f = e;
David Gibson05898c62010-02-24 18:22:17 +1100210 struct label *l;
David Gibsonfc14dad2005-06-08 17:18:34 +1000211
David Gibson26d93f62009-01-08 11:47:55 +1100212 fprintf(f, "\t/* FDT_END_NODE */\n");
213 asm_emit_cell(e, FDT_END_NODE);
David Gibson05898c62010-02-24 18:22:17 +1100214 for_each_label(labels, l) {
215 fprintf(f, "\t.globl\t%s_end\n", l->label);
216 fprintf(f, "%s_end:\n", l->label);
David Gibson4102d842005-06-16 14:36:37 +1000217 }
David Gibsonfc14dad2005-06-08 17:18:34 +1000218}
219
David Gibson05898c62010-02-24 18:22:17 +1100220static void asm_emit_property(void *e, struct label *labels)
David Gibsonfc14dad2005-06-08 17:18:34 +1000221{
222 FILE *f = e;
David Gibson05898c62010-02-24 18:22:17 +1100223 struct label *l;
David Gibsonfc14dad2005-06-08 17:18:34 +1000224
David Gibson05898c62010-02-24 18:22:17 +1100225 for_each_label(labels, l) {
226 fprintf(f, "\t.globl\t%s\n", l->label);
227 fprintf(f, "%s:\n", l->label);
David Gibson4102d842005-06-16 14:36:37 +1000228 }
David Gibson26d93f62009-01-08 11:47:55 +1100229 fprintf(f, "\t/* FDT_PROP */\n");
230 asm_emit_cell(e, FDT_PROP);
David Gibsonfc14dad2005-06-08 17:18:34 +1000231}
232
David Gibson230f2532005-08-29 12:48:02 +1000233static struct emitter asm_emitter = {
David Gibsonfc14dad2005-06-08 17:18:34 +1000234 .cell = asm_emit_cell,
235 .string = asm_emit_string,
236 .align = asm_emit_align,
237 .data = asm_emit_data,
238 .beginnode = asm_emit_beginnode,
239 .endnode = asm_emit_endnode,
David Gibson63dc9c72007-09-18 11:44:04 +1000240 .property = asm_emit_property,
David Gibsonfc14dad2005-06-08 17:18:34 +1000241};
242
David Gibson92cb9a22007-12-04 14:26:15 +1100243static int stringtable_insert(struct data *d, const char *str)
David Gibsonfc14dad2005-06-08 17:18:34 +1000244{
245 int i;
246
247 /* FIXME: do this more efficiently? */
248
249 for (i = 0; i < d->len; i++) {
250 if (streq(str, d->val + i))
251 return i;
252 }
253
254 *d = data_append_data(*d, str, strlen(str)+1);
David Gibsona6c69572005-07-11 17:09:42 +1000255 return i;
David Gibsonfc14dad2005-06-08 17:18:34 +1000256}
257
258static void flatten_tree(struct node *tree, struct emitter *emit,
259 void *etarget, struct data *strbuf,
260 struct version_info *vi)
261{
262 struct property *prop;
263 struct node *child;
264 int seen_name_prop = 0;
265
David Gibson05898c62010-02-24 18:22:17 +1100266 emit->beginnode(etarget, tree->labels);
David Gibsonfc14dad2005-06-08 17:18:34 +1000267
268 if (vi->flags & FTF_FULLPATH)
269 emit->string(etarget, tree->fullpath, 0);
270 else
271 emit->string(etarget, tree->name, 0);
272
273 emit->align(etarget, sizeof(cell_t));
274
275 for_each_property(tree, prop) {
276 int nameoff;
277
278 if (streq(prop->name, "name"))
279 seen_name_prop = 1;
280
281 nameoff = stringtable_insert(strbuf, prop->name);
282
David Gibson05898c62010-02-24 18:22:17 +1100283 emit->property(etarget, prop->labels);
David Gibsonfc14dad2005-06-08 17:18:34 +1000284 emit->cell(etarget, prop->val.len);
285 emit->cell(etarget, nameoff);
286
287 if ((vi->flags & FTF_VARALIGN) && (prop->val.len >= 8))
288 emit->align(etarget, 8);
289
290 emit->data(etarget, prop->val);
291 emit->align(etarget, sizeof(cell_t));
292 }
293
294 if ((vi->flags & FTF_NAMEPROPS) && !seen_name_prop) {
David Gibson4102d842005-06-16 14:36:37 +1000295 emit->property(etarget, NULL);
David Gibsonfc14dad2005-06-08 17:18:34 +1000296 emit->cell(etarget, tree->basenamelen+1);
297 emit->cell(etarget, stringtable_insert(strbuf, "name"));
298
299 if ((vi->flags & FTF_VARALIGN) && ((tree->basenamelen+1) >= 8))
300 emit->align(etarget, 8);
301
302 emit->string(etarget, tree->name, tree->basenamelen);
David Gibson41916132005-08-25 15:39:09 +1000303 emit->align(etarget, sizeof(cell_t));
David Gibsonfc14dad2005-06-08 17:18:34 +1000304 }
305
306 for_each_child(tree, child) {
307 flatten_tree(child, emit, etarget, strbuf, vi);
308 }
309
David Gibson05898c62010-02-24 18:22:17 +1100310 emit->endnode(etarget, tree->labels);
David Gibsonfc14dad2005-06-08 17:18:34 +1000311}
312
David Gibsonf040d952005-10-24 18:18:38 +1000313static struct data flatten_reserve_list(struct reserve_info *reservelist,
314 struct version_info *vi)
315{
316 struct reserve_info *re;
317 struct data d = empty_data;
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000318 static struct fdt_reserve_entry null_re = {0,0};
Jerry Van Baren4384b232007-04-04 22:04:33 -0400319 int j;
David Gibsonf040d952005-10-24 18:18:38 +1000320
321 for (re = reservelist; re; re = re->next) {
322 d = data_append_re(d, &re->re);
323 }
Jerry Van Baren4384b232007-04-04 22:04:33 -0400324 /*
325 * Add additional reserved slots if the user asked for them.
326 */
327 for (j = 0; j < reservenum; j++) {
328 d = data_append_re(d, &null_re);
329 }
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400330
David Gibsonf040d952005-10-24 18:18:38 +1000331 return d;
332}
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400333
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000334static void make_fdt_header(struct fdt_header *fdt,
335 struct version_info *vi,
336 int reservesize, int dtsize, int strsize,
337 int boot_cpuid_phys)
David Gibsonfc14dad2005-06-08 17:18:34 +1000338{
David Gibson47f23de2005-07-11 17:19:26 +1000339 int reserve_off;
David Gibsonf040d952005-10-24 18:18:38 +1000340
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000341 reservesize += sizeof(struct fdt_reserve_entry);
David Gibsonfc14dad2005-06-08 17:18:34 +1000342
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000343 memset(fdt, 0xff, sizeof(*fdt));
David Gibsonfc14dad2005-06-08 17:18:34 +1000344
David Gibsonc8c374b2008-06-25 14:27:53 +1000345 fdt->magic = cpu_to_fdt32(FDT_MAGIC);
346 fdt->version = cpu_to_fdt32(vi->version);
347 fdt->last_comp_version = cpu_to_fdt32(vi->last_comp_version);
David Gibsonfc14dad2005-06-08 17:18:34 +1000348
David Gibson47f23de2005-07-11 17:19:26 +1000349 /* Reserve map should be doubleword aligned */
350 reserve_off = ALIGN(vi->hdr_size, 8);
351
David Gibsonc8c374b2008-06-25 14:27:53 +1000352 fdt->off_mem_rsvmap = cpu_to_fdt32(reserve_off);
353 fdt->off_dt_struct = cpu_to_fdt32(reserve_off + reservesize);
354 fdt->off_dt_strings = cpu_to_fdt32(reserve_off + reservesize
David Gibsonfc14dad2005-06-08 17:18:34 +1000355 + dtsize);
David Gibsonc8c374b2008-06-25 14:27:53 +1000356 fdt->totalsize = cpu_to_fdt32(reserve_off + reservesize + dtsize + strsize);
Jerry Van Baren4384b232007-04-04 22:04:33 -0400357
David Gibsonfc14dad2005-06-08 17:18:34 +1000358 if (vi->flags & FTF_BOOTCPUID)
David Gibsonc8c374b2008-06-25 14:27:53 +1000359 fdt->boot_cpuid_phys = cpu_to_fdt32(boot_cpuid_phys);
David Gibsonfc14dad2005-06-08 17:18:34 +1000360 if (vi->flags & FTF_STRTABSIZE)
David Gibsonc8c374b2008-06-25 14:27:53 +1000361 fdt->size_dt_strings = cpu_to_fdt32(strsize);
David Gibson46c88df2007-03-14 11:02:40 +1100362 if (vi->flags & FTF_STRUCTSIZE)
David Gibsonc8c374b2008-06-25 14:27:53 +1000363 fdt->size_dt_struct = cpu_to_fdt32(dtsize);
David Gibsonfc14dad2005-06-08 17:18:34 +1000364}
365
David Gibson548767f2008-05-16 13:22:57 +1000366void dt_to_blob(FILE *f, struct boot_info *bi, int version)
David Gibsonfc14dad2005-06-08 17:18:34 +1000367{
368 struct version_info *vi = NULL;
369 int i;
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400370 struct data blob = empty_data;
371 struct data reservebuf = empty_data;
372 struct data dtbuf = empty_data;
373 struct data strbuf = empty_data;
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000374 struct fdt_header fdt;
Kumar Gala2b7dc8d2007-11-28 10:21:12 -0600375 int padlen = 0;
David Gibsonfc14dad2005-06-08 17:18:34 +1000376
377 for (i = 0; i < ARRAY_SIZE(version_table); i++) {
378 if (version_table[i].version == version)
379 vi = &version_table[i];
380 }
381 if (!vi)
382 die("Unknown device tree blob version %d\n", version);
383
David Gibsonf0517db2005-07-15 17:14:24 +1000384 flatten_tree(bi->dt, &bin_emitter, &dtbuf, &strbuf, vi);
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000385 bin_emit_cell(&dtbuf, FDT_END);
David Gibsonfc14dad2005-06-08 17:18:34 +1000386
David Gibsonf040d952005-10-24 18:18:38 +1000387 reservebuf = flatten_reserve_list(bi->reservelist, vi);
388
David Gibsonf0517db2005-07-15 17:14:24 +1000389 /* Make header */
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000390 make_fdt_header(&fdt, vi, reservebuf.len, dtbuf.len, strbuf.len,
David Gibson548767f2008-05-16 13:22:57 +1000391 bi->boot_cpuid_phys);
David Gibsonfc14dad2005-06-08 17:18:34 +1000392
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400393 /*
Jerry Van Baren7ea144f2007-04-19 22:22:35 -0400394 * If the user asked for more space than is used, adjust the totalsize.
395 */
Kumar Gala2b7dc8d2007-11-28 10:21:12 -0600396 if (minsize > 0) {
David Gibsonc8c374b2008-06-25 14:27:53 +1000397 padlen = minsize - fdt32_to_cpu(fdt.totalsize);
Kumar Gala2b7dc8d2007-11-28 10:21:12 -0600398 if ((padlen < 0) && (quiet < 1))
Jerry Van Baren7ea144f2007-04-19 22:22:35 -0400399 fprintf(stderr,
400 "Warning: blob size %d >= minimum size %d\n",
David Gibsonc8c374b2008-06-25 14:27:53 +1000401 fdt32_to_cpu(fdt.totalsize), minsize);
Jerry Van Baren7ea144f2007-04-19 22:22:35 -0400402 }
403
Kumar Gala2b7dc8d2007-11-28 10:21:12 -0600404 if (padsize > 0)
405 padlen = padsize;
406
Kumar Gala80c72a82007-12-04 17:36:08 -0600407 if (padlen > 0) {
David Gibsonc8c374b2008-06-25 14:27:53 +1000408 int tsize = fdt32_to_cpu(fdt.totalsize);
Kumar Gala80c72a82007-12-04 17:36:08 -0600409 tsize += padlen;
David Gibsonc8c374b2008-06-25 14:27:53 +1000410 fdt.totalsize = cpu_to_fdt32(tsize);
Kumar Gala80c72a82007-12-04 17:36:08 -0600411 }
412
Jerry Van Baren7ea144f2007-04-19 22:22:35 -0400413 /*
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400414 * Assemble the blob: start with the header, add with alignment
415 * the reserve buffer, add the reserve map terminating zeroes,
416 * the device tree itself, and finally the strings.
417 */
David Gibsona266e5c2008-02-28 20:55:37 +1100418 blob = data_append_data(blob, &fdt, vi->hdr_size);
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400419 blob = data_append_align(blob, 8);
420 blob = data_merge(blob, reservebuf);
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000421 blob = data_append_zeroes(blob, sizeof(struct fdt_reserve_entry));
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400422 blob = data_merge(blob, dtbuf);
423 blob = data_merge(blob, strbuf);
David Gibson47f23de2005-07-11 17:19:26 +1000424
David Gibsonf0517db2005-07-15 17:14:24 +1000425 /*
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400426 * If the user asked for more space than is used, pad out the blob.
David Gibsonf0517db2005-07-15 17:14:24 +1000427 */
Kumar Gala80c72a82007-12-04 17:36:08 -0600428 if (padlen > 0)
Jerry Van Baren7ea144f2007-04-19 22:22:35 -0400429 blob = data_append_zeroes(blob, padlen);
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400430
David Gibson0783d7e2008-11-07 11:41:11 +1100431 if (fwrite(blob.val, blob.len, 1, f) != 1) {
432 if (ferror(f))
433 die("Error writing device tree blob: %s\n",
434 strerror(errno));
435 else
436 die("Short write on device tree blob\n");
437 }
David Gibsonfc14dad2005-06-08 17:18:34 +1000438
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400439 /*
440 * data_merge() frees the right-hand element so only the blob
441 * remains to be freed.
442 */
443 data_free(blob);
David Gibsonfc14dad2005-06-08 17:18:34 +1000444}
445
David Gibson230f2532005-08-29 12:48:02 +1000446static void dump_stringtable_asm(FILE *f, struct data strbuf)
David Gibsonfc14dad2005-06-08 17:18:34 +1000447{
David Gibson92cb9a22007-12-04 14:26:15 +1100448 const char *p;
David Gibsonfc14dad2005-06-08 17:18:34 +1000449 int len;
450
451 p = strbuf.val;
452
453 while (p < (strbuf.val + strbuf.len)) {
454 len = strlen(p);
455 fprintf(f, "\t.string \"%s\"\n", p);
456 p += len+1;
457 }
458}
459
David Gibson548767f2008-05-16 13:22:57 +1000460void dt_to_asm(FILE *f, struct boot_info *bi, int version)
David Gibsonfc14dad2005-06-08 17:18:34 +1000461{
462 struct version_info *vi = NULL;
463 int i;
464 struct data strbuf = empty_data;
David Gibsonf040d952005-10-24 18:18:38 +1000465 struct reserve_info *re;
David Gibson92cb9a22007-12-04 14:26:15 +1100466 const char *symprefix = "dt";
David Gibsonfc14dad2005-06-08 17:18:34 +1000467
468 for (i = 0; i < ARRAY_SIZE(version_table); i++) {
469 if (version_table[i].version == version)
470 vi = &version_table[i];
471 }
472 if (!vi)
473 die("Unknown device tree blob version %d\n", version);
474
475 fprintf(f, "/* autogenerated by dtc, do not edit */\n\n");
David Gibsonfc14dad2005-06-08 17:18:34 +1000476
477 emit_label(f, symprefix, "blob_start");
478 emit_label(f, symprefix, "header");
David Gibson26d93f62009-01-08 11:47:55 +1100479 fprintf(f, "\t/* magic */\n");
480 asm_emit_cell(f, FDT_MAGIC);
481 fprintf(f, "\t/* totalsize */\n");
482 ASM_EMIT_BELONG(f, "_%s_blob_abs_end - _%s_blob_start",
David Gibsonfc14dad2005-06-08 17:18:34 +1000483 symprefix, symprefix);
David Gibson26d93f62009-01-08 11:47:55 +1100484 fprintf(f, "\t/* off_dt_struct */\n");
485 ASM_EMIT_BELONG(f, "_%s_struct_start - _%s_blob_start",
486 symprefix, symprefix);
487 fprintf(f, "\t/* off_dt_strings */\n");
488 ASM_EMIT_BELONG(f, "_%s_strings_start - _%s_blob_start",
489 symprefix, symprefix);
490 fprintf(f, "\t/* off_mem_rsvmap */\n");
491 ASM_EMIT_BELONG(f, "_%s_reserve_map - _%s_blob_start",
492 symprefix, symprefix);
493 fprintf(f, "\t/* version */\n");
494 asm_emit_cell(f, vi->version);
495 fprintf(f, "\t/* last_comp_version */\n");
496 asm_emit_cell(f, vi->last_comp_version);
David Gibsonfc14dad2005-06-08 17:18:34 +1000497
David Gibson26d93f62009-01-08 11:47:55 +1100498 if (vi->flags & FTF_BOOTCPUID) {
499 fprintf(f, "\t/* boot_cpuid_phys */\n");
500 asm_emit_cell(f, bi->boot_cpuid_phys);
501 }
502
503 if (vi->flags & FTF_STRTABSIZE) {
504 fprintf(f, "\t/* size_dt_strings */\n");
505 ASM_EMIT_BELONG(f, "_%s_strings_end - _%s_strings_start",
506 symprefix, symprefix);
507 }
508
509 if (vi->flags & FTF_STRUCTSIZE) {
510 fprintf(f, "\t/* size_dt_struct */\n");
511 ASM_EMIT_BELONG(f, "_%s_struct_end - _%s_struct_start",
Milton Miller81fda8a2007-07-07 01:18:47 -0500512 symprefix, symprefix);
David Gibson26d93f62009-01-08 11:47:55 +1100513 }
Milton Miller81fda8a2007-07-07 01:18:47 -0500514
David Gibsonf0517db2005-07-15 17:14:24 +1000515 /*
516 * Reserve map entries.
517 * Align the reserve map to a doubleword boundary.
518 * Each entry is an (address, size) pair of u64 values.
David Gibsonf0517db2005-07-15 17:14:24 +1000519 * Always supply a zero-sized temination entry.
520 */
David Gibson47f23de2005-07-11 17:19:26 +1000521 asm_emit_align(f, 8);
David Gibsonfc14dad2005-06-08 17:18:34 +1000522 emit_label(f, symprefix, "reserve_map");
David Gibsonf0517db2005-07-15 17:14:24 +1000523
David Gibsonf040d952005-10-24 18:18:38 +1000524 fprintf(f, "/* Memory reserve map from source file */\n");
Jon Loeliger05ae3d82006-04-19 11:58:45 -0500525
526 /*
527 * Use .long on high and low halfs of u64s to avoid .quad
528 * as it appears .quad isn't available in some assemblers.
529 */
David Gibsonf040d952005-10-24 18:18:38 +1000530 for (re = bi->reservelist; re; re = re->next) {
David Gibson05898c62010-02-24 18:22:17 +1100531 struct label *l;
532
533 for_each_label(re->labels, l) {
534 fprintf(f, "\t.globl\t%s\n", l->label);
535 fprintf(f, "%s:\n", l->label);
Milton Millerd4290332007-07-07 01:18:49 -0500536 }
David Gibson26d93f62009-01-08 11:47:55 +1100537 ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.address >> 32));
538 ASM_EMIT_BELONG(f, "0x%08x",
539 (unsigned int)(re->re.address & 0xffffffff));
540 ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.size >> 32));
541 ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.size & 0xffffffff));
David Gibsonfc14dad2005-06-08 17:18:34 +1000542 }
Jerry Van Barenca25e542007-04-17 18:14:41 -0400543 for (i = 0; i < reservenum; i++) {
544 fprintf(f, "\t.long\t0, 0\n\t.long\t0, 0\n");
545 }
David Gibsonfc14dad2005-06-08 17:18:34 +1000546
Jon Loeliger05ae3d82006-04-19 11:58:45 -0500547 fprintf(f, "\t.long\t0, 0\n\t.long\t0, 0\n");
David Gibsonf0517db2005-07-15 17:14:24 +1000548
David Gibsonfc14dad2005-06-08 17:18:34 +1000549 emit_label(f, symprefix, "struct_start");
David Gibsonf0517db2005-07-15 17:14:24 +1000550 flatten_tree(bi->dt, &asm_emitter, f, &strbuf, vi);
David Gibson26d93f62009-01-08 11:47:55 +1100551
552 fprintf(f, "\t/* FDT_END */\n");
553 asm_emit_cell(f, FDT_END);
David Gibsonfc14dad2005-06-08 17:18:34 +1000554 emit_label(f, symprefix, "struct_end");
555
556 emit_label(f, symprefix, "strings_start");
557 dump_stringtable_asm(f, strbuf);
558 emit_label(f, symprefix, "strings_end");
559
560 emit_label(f, symprefix, "blob_end");
561
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400562 /*
563 * If the user asked for more space than is used, pad it out.
564 */
565 if (minsize > 0) {
566 fprintf(f, "\t.space\t%d - (_%s_blob_end - _%s_blob_start), 0\n",
567 minsize, symprefix, symprefix);
568 }
Kumar Gala2b7dc8d2007-11-28 10:21:12 -0600569 if (padsize > 0) {
570 fprintf(f, "\t.space\t%d, 0\n", padsize);
571 }
Jerry Van Baren86c01ee2007-04-18 21:59:51 -0400572 emit_label(f, symprefix, "blob_abs_end");
573
David Gibsonfc14dad2005-06-08 17:18:34 +1000574 data_free(strbuf);
575}
576
577struct inbuf {
578 char *base, *limit, *ptr;
579};
580
581static void inbuf_init(struct inbuf *inb, void *base, void *limit)
582{
583 inb->base = base;
584 inb->limit = limit;
585 inb->ptr = inb->base;
586}
587
588static void flat_read_chunk(struct inbuf *inb, void *p, int len)
589{
590 if ((inb->ptr + len) > inb->limit)
591 die("Premature end of data parsing flat device tree\n");
592
593 memcpy(p, inb->ptr, len);
594
595 inb->ptr += len;
596}
597
David Gibson53359012008-06-25 13:53:07 +1000598static uint32_t flat_read_word(struct inbuf *inb)
David Gibsonfc14dad2005-06-08 17:18:34 +1000599{
David Gibson53359012008-06-25 13:53:07 +1000600 uint32_t val;
David Gibsonfc14dad2005-06-08 17:18:34 +1000601
602 assert(((inb->ptr - inb->base) % sizeof(val)) == 0);
603
604 flat_read_chunk(inb, &val, sizeof(val));
605
David Gibsonc8c374b2008-06-25 14:27:53 +1000606 return fdt32_to_cpu(val);
David Gibsonfc14dad2005-06-08 17:18:34 +1000607}
608
609static void flat_realign(struct inbuf *inb, int align)
610{
611 int off = inb->ptr - inb->base;
612
613 inb->ptr = inb->base + ALIGN(off, align);
614 if (inb->ptr > inb->limit)
615 die("Premature end of data parsing flat device tree\n");
616}
617
618static char *flat_read_string(struct inbuf *inb)
619{
620 int len = 0;
David Gibson92cb9a22007-12-04 14:26:15 +1100621 const char *p = inb->ptr;
David Gibsonfc14dad2005-06-08 17:18:34 +1000622 char *str;
623
624 do {
625 if (p >= inb->limit)
626 die("Premature end of data parsing flat device tree\n");
627 len++;
628 } while ((*p++) != '\0');
629
Jon Loeliger879e4d22008-10-03 11:12:33 -0500630 str = xstrdup(inb->ptr);
David Gibsonfc14dad2005-06-08 17:18:34 +1000631
632 inb->ptr += len;
633
David Gibson53359012008-06-25 13:53:07 +1000634 flat_realign(inb, sizeof(uint32_t));
David Gibsonfc14dad2005-06-08 17:18:34 +1000635
636 return str;
637}
638
639static struct data flat_read_data(struct inbuf *inb, int len)
640{
641 struct data d = empty_data;
642
643 if (len == 0)
644 return empty_data;
645
646 d = data_grow_for(d, len);
647 d.len = len;
648
649 flat_read_chunk(inb, d.val, len);
650
David Gibson53359012008-06-25 13:53:07 +1000651 flat_realign(inb, sizeof(uint32_t));
David Gibsonfc14dad2005-06-08 17:18:34 +1000652
653 return d;
654}
655
656static char *flat_read_stringtable(struct inbuf *inb, int offset)
657{
David Gibson92cb9a22007-12-04 14:26:15 +1100658 const char *p;
David Gibsonfc14dad2005-06-08 17:18:34 +1000659
660 p = inb->base + offset;
661 while (1) {
David Gibson4ddf7c02005-08-19 16:11:11 +1000662 if (p >= inb->limit || p < inb->base)
David Gibson7ee3ffd2005-07-11 16:45:57 +1000663 die("String offset %d overruns string table\n",
664 offset);
David Gibsonfc14dad2005-06-08 17:18:34 +1000665
666 if (*p == '\0')
667 break;
668
669 p++;
670 }
671
Jon Loeliger879e4d22008-10-03 11:12:33 -0500672 return xstrdup(inb->base + offset);
David Gibsonfc14dad2005-06-08 17:18:34 +1000673}
674
David Gibson230f2532005-08-29 12:48:02 +1000675static struct property *flat_read_property(struct inbuf *dtbuf,
676 struct inbuf *strbuf, int flags)
David Gibsonfc14dad2005-06-08 17:18:34 +1000677{
David Gibson53359012008-06-25 13:53:07 +1000678 uint32_t proplen, stroff;
David Gibsonfc14dad2005-06-08 17:18:34 +1000679 char *name;
680 struct data val;
681
682 proplen = flat_read_word(dtbuf);
683 stroff = flat_read_word(dtbuf);
684
685 name = flat_read_stringtable(strbuf, stroff);
686
687 if ((flags & FTF_VARALIGN) && (proplen >= 8))
688 flat_realign(dtbuf, 8);
689
690 val = flat_read_data(dtbuf, proplen);
691
David Gibson05898c62010-02-24 18:22:17 +1100692 return build_property(name, val);
David Gibsonfc14dad2005-06-08 17:18:34 +1000693}
694
David Gibsonf0517db2005-07-15 17:14:24 +1000695
David Gibsonf040d952005-10-24 18:18:38 +1000696static struct reserve_info *flat_read_mem_reserve(struct inbuf *inb)
David Gibsonf0517db2005-07-15 17:14:24 +1000697{
David Gibsonf040d952005-10-24 18:18:38 +1000698 struct reserve_info *reservelist = NULL;
699 struct reserve_info *new;
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000700 struct fdt_reserve_entry re;
David Gibsonf0517db2005-07-15 17:14:24 +1000701
702 /*
703 * Each entry is a pair of u64 (addr, size) values for 4 cell_t's.
704 * List terminates at an entry with size equal to zero.
705 *
706 * First pass, count entries.
707 */
David Gibson6c0f3672005-08-29 13:36:15 +1000708 while (1) {
709 flat_read_chunk(inb, &re, sizeof(re));
David Gibsonc8c374b2008-06-25 14:27:53 +1000710 re.address = fdt64_to_cpu(re.address);
711 re.size = fdt64_to_cpu(re.size);
David Gibson6c0f3672005-08-29 13:36:15 +1000712 if (re.size == 0)
713 break;
David Gibsonf0517db2005-07-15 17:14:24 +1000714
David Gibson05898c62010-02-24 18:22:17 +1100715 new = build_reserve_entry(re.address, re.size);
David Gibsonf040d952005-10-24 18:18:38 +1000716 reservelist = add_reserve_entry(reservelist, new);
David Gibson6c0f3672005-08-29 13:36:15 +1000717 }
David Gibsonf0517db2005-07-15 17:14:24 +1000718
David Gibsonf040d952005-10-24 18:18:38 +1000719 return reservelist;
David Gibsonf0517db2005-07-15 17:14:24 +1000720}
721
722
David Gibson92cb9a22007-12-04 14:26:15 +1100723static char *nodename_from_path(const char *ppath, const char *cpath)
David Gibsonfc14dad2005-06-08 17:18:34 +1000724{
David Gibsonfc14dad2005-06-08 17:18:34 +1000725 int plen;
726
David Gibsonb2de5182008-02-29 16:51:28 +1100727 plen = strlen(ppath);
David Gibsonfc14dad2005-06-08 17:18:34 +1000728
David Gibsonb2de5182008-02-29 16:51:28 +1100729 if (!strneq(ppath, cpath, plen))
730 die("Path \"%s\" is not valid as a child of \"%s\"\n",
731 cpath, ppath);
David Gibsonfc14dad2005-06-08 17:18:34 +1000732
David Gibsonb2de5182008-02-29 16:51:28 +1100733 /* root node is a special case */
734 if (!streq(ppath, "/"))
735 plen++;
David Gibsonfc14dad2005-06-08 17:18:34 +1000736
Jon Loeliger879e4d22008-10-03 11:12:33 -0500737 return xstrdup(cpath + plen);
David Gibsonfc14dad2005-06-08 17:18:34 +1000738}
739
740static struct node *unflatten_tree(struct inbuf *dtbuf,
741 struct inbuf *strbuf,
David Gibsonb2de5182008-02-29 16:51:28 +1100742 const char *parent_flatname, int flags)
David Gibsonfc14dad2005-06-08 17:18:34 +1000743{
744 struct node *node;
David Gibsonb2de5182008-02-29 16:51:28 +1100745 char *flatname;
David Gibson53359012008-06-25 13:53:07 +1000746 uint32_t val;
David Gibsonfc14dad2005-06-08 17:18:34 +1000747
748 node = build_node(NULL, NULL);
749
David Gibsonb2de5182008-02-29 16:51:28 +1100750 flatname = flat_read_string(dtbuf);
David Gibsonfc14dad2005-06-08 17:18:34 +1000751
David Gibsonb2de5182008-02-29 16:51:28 +1100752 if (flags & FTF_FULLPATH)
753 node->name = nodename_from_path(parent_flatname, flatname);
754 else
755 node->name = flatname;
David Gibsonfc14dad2005-06-08 17:18:34 +1000756
757 do {
758 struct property *prop;
759 struct node *child;
760
761 val = flat_read_word(dtbuf);
762 switch (val) {
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000763 case FDT_PROP:
David Gibson592ea582007-09-04 10:43:03 +1000764 if (node->children)
765 fprintf(stderr, "Warning: Flat tree input has "
766 "subnodes preceding a property.\n");
David Gibsonfc14dad2005-06-08 17:18:34 +1000767 prop = flat_read_property(dtbuf, strbuf, flags);
768 add_property(node, prop);
769 break;
770
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000771 case FDT_BEGIN_NODE:
David Gibsonb2de5182008-02-29 16:51:28 +1100772 child = unflatten_tree(dtbuf,strbuf, flatname, flags);
David Gibsonfc14dad2005-06-08 17:18:34 +1000773 add_child(node, child);
774 break;
775
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000776 case FDT_END_NODE:
David Gibsonfc14dad2005-06-08 17:18:34 +1000777 break;
778
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000779 case FDT_END:
780 die("Premature FDT_END in device tree blob\n");
David Gibsonfc14dad2005-06-08 17:18:34 +1000781 break;
782
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000783 case FDT_NOP:
David Gibson07387742007-06-26 11:30:47 +1000784 if (!(flags & FTF_NOPS))
785 fprintf(stderr, "Warning: NOP tag found in flat tree"
786 " version <16\n");
Milton Millerce243222007-06-09 23:21:31 -0500787
David Gibson07387742007-06-26 11:30:47 +1000788 /* Ignore */
Milton Millerce243222007-06-09 23:21:31 -0500789 break;
790
David Gibsonfc14dad2005-06-08 17:18:34 +1000791 default:
792 die("Invalid opcode word %08x in device tree blob\n",
793 val);
794 }
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000795 } while (val != FDT_END_NODE);
David Gibsonfc14dad2005-06-08 17:18:34 +1000796
797 return node;
798}
799
David Gibsonf0517db2005-07-15 17:14:24 +1000800
David Gibsona742aad2008-05-16 13:22:09 +1000801struct boot_info *dt_from_blob(const char *fname)
David Gibsonfc14dad2005-06-08 17:18:34 +1000802{
David Gibsond68cb362009-12-08 14:24:42 +1100803 FILE *f;
David Gibson53359012008-06-25 13:53:07 +1000804 uint32_t magic, totalsize, version, size_dt, boot_cpuid_phys;
805 uint32_t off_dt, off_str, off_mem_rsvmap;
David Gibsonfc14dad2005-06-08 17:18:34 +1000806 int rc;
807 char *blob;
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000808 struct fdt_header *fdt;
David Gibsonfc14dad2005-06-08 17:18:34 +1000809 char *p;
810 struct inbuf dtbuf, strbuf;
David Gibsonf0517db2005-07-15 17:14:24 +1000811 struct inbuf memresvbuf;
David Gibsonfc14dad2005-06-08 17:18:34 +1000812 int sizeleft;
David Gibsonf040d952005-10-24 18:18:38 +1000813 struct reserve_info *reservelist;
David Gibsonfc14dad2005-06-08 17:18:34 +1000814 struct node *tree;
David Gibson53359012008-06-25 13:53:07 +1000815 uint32_t val;
David Gibsonfc14dad2005-06-08 17:18:34 +1000816 int flags = 0;
817
David Gibsond68cb362009-12-08 14:24:42 +1100818 f = srcfile_relative_open(fname, NULL);
David Gibsona742aad2008-05-16 13:22:09 +1000819
David Gibsond68cb362009-12-08 14:24:42 +1100820 rc = fread(&magic, sizeof(magic), 1, f);
821 if (ferror(f))
David Gibsonfc14dad2005-06-08 17:18:34 +1000822 die("Error reading DT blob magic number: %s\n",
823 strerror(errno));
824 if (rc < 1) {
David Gibsond68cb362009-12-08 14:24:42 +1100825 if (feof(f))
David Gibsonfc14dad2005-06-08 17:18:34 +1000826 die("EOF reading DT blob magic number\n");
827 else
828 die("Mysterious short read reading magic number\n");
829 }
830
David Gibsonc8c374b2008-06-25 14:27:53 +1000831 magic = fdt32_to_cpu(magic);
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000832 if (magic != FDT_MAGIC)
David Gibsonfc14dad2005-06-08 17:18:34 +1000833 die("Blob has incorrect magic number\n");
834
David Gibsond68cb362009-12-08 14:24:42 +1100835 rc = fread(&totalsize, sizeof(totalsize), 1, f);
836 if (ferror(f))
David Gibsonfc14dad2005-06-08 17:18:34 +1000837 die("Error reading DT blob size: %s\n", strerror(errno));
838 if (rc < 1) {
David Gibsond68cb362009-12-08 14:24:42 +1100839 if (feof(f))
David Gibsonfc14dad2005-06-08 17:18:34 +1000840 die("EOF reading DT blob size\n");
841 else
842 die("Mysterious short read reading blob size\n");
843 }
844
David Gibsonc8c374b2008-06-25 14:27:53 +1000845 totalsize = fdt32_to_cpu(totalsize);
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000846 if (totalsize < FDT_V1_SIZE)
David Gibsonfc14dad2005-06-08 17:18:34 +1000847 die("DT blob size (%d) is too small\n", totalsize);
848
849 blob = xmalloc(totalsize);
850
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000851 fdt = (struct fdt_header *)blob;
David Gibsonc8c374b2008-06-25 14:27:53 +1000852 fdt->magic = cpu_to_fdt32(magic);
853 fdt->totalsize = cpu_to_fdt32(totalsize);
David Gibsonfc14dad2005-06-08 17:18:34 +1000854
855 sizeleft = totalsize - sizeof(magic) - sizeof(totalsize);
856 p = blob + sizeof(magic) + sizeof(totalsize);
857
858 while (sizeleft) {
David Gibsond68cb362009-12-08 14:24:42 +1100859 if (feof(f))
David Gibsonfc14dad2005-06-08 17:18:34 +1000860 die("EOF before reading %d bytes of DT blob\n",
861 totalsize);
862
David Gibsond68cb362009-12-08 14:24:42 +1100863 rc = fread(p, 1, sizeleft, f);
864 if (ferror(f))
David Gibsonfc14dad2005-06-08 17:18:34 +1000865 die("Error reading DT blob: %s\n",
866 strerror(errno));
867
868 sizeleft -= rc;
869 p += rc;
870 }
871
David Gibsonc8c374b2008-06-25 14:27:53 +1000872 off_dt = fdt32_to_cpu(fdt->off_dt_struct);
873 off_str = fdt32_to_cpu(fdt->off_dt_strings);
874 off_mem_rsvmap = fdt32_to_cpu(fdt->off_mem_rsvmap);
875 version = fdt32_to_cpu(fdt->version);
876 boot_cpuid_phys = fdt32_to_cpu(fdt->boot_cpuid_phys);
David Gibsonfc14dad2005-06-08 17:18:34 +1000877
David Gibsonf0517db2005-07-15 17:14:24 +1000878 if (off_mem_rsvmap >= totalsize)
879 die("Mem Reserve structure offset exceeds total size\n");
880
David Gibsonfc14dad2005-06-08 17:18:34 +1000881 if (off_dt >= totalsize)
882 die("DT structure offset exceeds total size\n");
883
884 if (off_str > totalsize)
885 die("String table offset exceeds total size\n");
886
David Gibsonfc14dad2005-06-08 17:18:34 +1000887 if (version >= 3) {
David Gibsonc8c374b2008-06-25 14:27:53 +1000888 uint32_t size_str = fdt32_to_cpu(fdt->size_dt_strings);
David Gibsonfc14dad2005-06-08 17:18:34 +1000889 if (off_str+size_str > totalsize)
890 die("String table extends past total size\n");
David Gibsona266e5c2008-02-28 20:55:37 +1100891 inbuf_init(&strbuf, blob + off_str, blob + off_str + size_str);
892 } else {
893 inbuf_init(&strbuf, blob + off_str, blob + totalsize);
David Gibsonfc14dad2005-06-08 17:18:34 +1000894 }
David Gibson46c88df2007-03-14 11:02:40 +1100895
896 if (version >= 17) {
David Gibsonc8c374b2008-06-25 14:27:53 +1000897 size_dt = fdt32_to_cpu(fdt->size_dt_struct);
David Gibson46c88df2007-03-14 11:02:40 +1100898 if (off_dt+size_dt > totalsize)
899 die("Structure block extends past total size\n");
900 }
David Gibson63dc9c72007-09-18 11:44:04 +1000901
David Gibson46c88df2007-03-14 11:02:40 +1100902 if (version < 16) {
David Gibsonfc14dad2005-06-08 17:18:34 +1000903 flags |= FTF_FULLPATH | FTF_NAMEPROPS | FTF_VARALIGN;
Milton Millerce243222007-06-09 23:21:31 -0500904 } else {
905 flags |= FTF_NOPS;
David Gibsonfc14dad2005-06-08 17:18:34 +1000906 }
907
David Gibsonf0517db2005-07-15 17:14:24 +1000908 inbuf_init(&memresvbuf,
909 blob + off_mem_rsvmap, blob + totalsize);
David Gibsonfc14dad2005-06-08 17:18:34 +1000910 inbuf_init(&dtbuf, blob + off_dt, blob + totalsize);
David Gibsonfc14dad2005-06-08 17:18:34 +1000911
David Gibsonf040d952005-10-24 18:18:38 +1000912 reservelist = flat_read_mem_reserve(&memresvbuf);
David Gibsonf0517db2005-07-15 17:14:24 +1000913
David Gibsonfc14dad2005-06-08 17:18:34 +1000914 val = flat_read_word(&dtbuf);
915
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000916 if (val != FDT_BEGIN_NODE)
917 die("Device tree blob doesn't begin with FDT_BEGIN_NODE (begins with 0x%08x)\n", val);
David Gibsonfc14dad2005-06-08 17:18:34 +1000918
919 tree = unflatten_tree(&dtbuf, &strbuf, "", flags);
920
921 val = flat_read_word(&dtbuf);
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000922 if (val != FDT_END)
923 die("Device tree blob doesn't end with FDT_END\n");
David Gibsonfc14dad2005-06-08 17:18:34 +1000924
925 free(blob);
926
David Gibsond68cb362009-12-08 14:24:42 +1100927 fclose(f);
David Gibsona742aad2008-05-16 13:22:09 +1000928
David Gibson548767f2008-05-16 13:22:57 +1000929 return build_boot_info(reservelist, tree, boot_cpuid_phys);
David Gibsonfc14dad2005-06-08 17:18:34 +1000930}