5 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
8 * This program 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 program 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 GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
34 #include <libfdt_env.h>
37 #define DEFAULT_FDT_VERSION 17
39 * Command line options
41 extern int quiet; /* Level of quietness */
42 extern int reservenum; /* Number of memory reservation slots */
43 extern int minsize; /* Minimum blob size */
44 extern int padsize; /* Additional padding to blob */
46 static inline void __attribute__((noreturn)) die(char * str, ...)
51 fprintf(stderr, "FATAL ERROR: ");
52 vfprintf(stderr, str, ap);
56 static inline void *xmalloc(size_t len)
58 void *new = malloc(len);
61 die("malloc() failed\n");
66 static inline void *xrealloc(void *p, size_t len)
68 void *new = realloc(p, len);
71 die("realloc() failed (len=%d)\n", len);
76 typedef uint32_t cell_t;
79 #define streq(a, b) (strcmp((a), (b)) == 0)
80 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
82 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
83 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
102 struct marker *markers;
106 #define empty_data ((struct data){ /* all .members = 0 or NULL */ })
108 #define for_each_marker(m) \
109 for (; (m); (m) = (m)->next)
110 #define for_each_marker_of_type(m, t) \
112 if ((m)->type == (t))
114 void data_free(struct data d);
116 struct data data_grow_for(struct data d, int xlen);
118 struct data data_copy_mem(const char *mem, int len);
119 struct data data_copy_escape_string(const char *s, int len);
120 struct data data_copy_file(FILE *f, size_t len);
122 struct data data_append_data(struct data d, const void *p, int len);
123 struct data data_insert_at_marker(struct data d, struct marker *m,
124 const void *p, int len);
125 struct data data_merge(struct data d1, struct data d2);
126 struct data data_append_cell(struct data d, cell_t word);
127 struct data data_append_re(struct data d, const struct fdt_reserve_entry *re);
128 struct data data_append_addr(struct data d, uint64_t addr);
129 struct data data_append_byte(struct data d, uint8_t byte);
130 struct data data_append_zeroes(struct data d, int len);
131 struct data data_append_align(struct data d, int align);
133 struct data data_add_marker(struct data d, enum markertype type, char *ref);
135 int data_is_one_string(struct data d);
139 #define MAX_PROPNAME_LEN 31
140 #define MAX_NODENAME_LEN 31
147 struct property *next;
154 struct property *proplist;
155 struct node *children;
158 struct node *next_sibling;
164 int addr_cells, size_cells;
169 #define for_each_property(n, p) \
170 for ((p) = (n)->proplist; (p); (p) = (p)->next)
172 #define for_each_child(n, c) \
173 for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
175 struct property *build_property(char *name, struct data val, char *label);
176 struct property *chain_property(struct property *first, struct property *list);
177 struct property *reverse_properties(struct property *first);
179 struct node *build_node(struct property *proplist, struct node *children);
180 struct node *name_node(struct node *node, char *name, char *label);
181 struct node *chain_node(struct node *first, struct node *list);
183 void add_property(struct node *node, struct property *prop);
184 void add_child(struct node *parent, struct node *child);
186 const char *get_unitname(struct node *node);
187 struct property *get_property(struct node *node, const char *propname);
188 cell_t propval_cell(struct property *prop);
189 struct node *get_subnode(struct node *node, const char *nodename);
190 struct node *get_node_by_path(struct node *tree, const char *path);
191 struct node *get_node_by_label(struct node *tree, const char *label);
192 struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
193 struct node *get_node_by_ref(struct node *tree, const char *ref);
194 cell_t get_node_phandle(struct node *root, struct node *node);
196 /* Boot info (tree plus memreserve information */
198 struct reserve_info {
199 struct fdt_reserve_entry re;
201 struct reserve_info *next;
206 struct reserve_info *build_reserve_entry(uint64_t start, uint64_t len, char *label);
207 struct reserve_info *chain_reserve_entry(struct reserve_info *first,
208 struct reserve_info *list);
209 struct reserve_info *add_reserve_entry(struct reserve_info *list,
210 struct reserve_info *new);
214 struct reserve_info *reservelist;
215 struct node *dt; /* the device tree */
216 uint32_t boot_cpuid_phys;
219 struct boot_info *build_boot_info(struct reserve_info *reservelist,
220 struct node *tree, uint32_t boot_cpuid_phys);
224 void process_checks(int force, struct boot_info *bi);
226 /* Flattened trees */
228 void dt_to_blob(FILE *f, struct boot_info *bi, int version);
229 void dt_to_asm(FILE *f, struct boot_info *bi, int version);
231 struct boot_info *dt_from_blob(const char *fname);
235 void dt_to_source(FILE *f, struct boot_info *bi);
236 struct boot_info *dt_from_source(const char *f);
240 struct boot_info *dt_from_fs(const char *dirname);
244 char *join_path(const char *path, const char *name);