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
33 #include <netinet/in.h>
39 #define DEFAULT_FDT_VERSION 17
41 * Command line options
43 extern int quiet
; /* Level of quietness */
44 extern int reservenum
; /* Number of memory reservation slots */
45 extern int minsize
; /* Minimum blob size */
46 extern int padsize
; /* Additional padding to blob */
48 static inline void __attribute__((noreturn
)) die(char * str
, ...)
53 fprintf(stderr
, "FATAL ERROR: ");
54 vfprintf(stderr
, str
, ap
);
58 static inline void *xmalloc(size_t len
)
60 void *new = malloc(len
);
63 die("malloc() failed\n");
68 static inline void *xrealloc(void *p
, size_t len
)
70 void *new = realloc(p
, len
);
73 die("realloc() failed (len=%d)\n", len
);
84 #define cpu_to_be16(x) htons(x)
85 #define be16_to_cpu(x) ntohs(x)
87 #define cpu_to_be32(x) htonl(x)
88 #define be32_to_cpu(x) ntohl(x)
90 #if __BYTE_ORDER == __BIG_ENDIAN
91 #define cpu_to_be64(x) (x)
92 #define be64_to_cpu(x) (x)
94 #define cpu_to_be64(x) bswap_64(x)
95 #define be64_to_cpu(x) bswap_64(x)
98 #define streq(a, b) (strcmp((a), (b)) == 0)
99 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
101 #define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
102 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
112 enum markertype type
;
122 struct marker
*markers
;
126 #define empty_data ((struct data){ /* all .members = 0 or NULL */ })
128 #define for_each_marker(m) \
129 for (; (m); (m) = (m)->next)
130 #define for_each_marker_of_type(m, t) \
132 if ((m)->type == (t))
134 void data_free(struct data d
);
136 struct data
data_grow_for(struct data d
, int xlen
);
138 struct data
data_copy_mem(const char *mem
, int len
);
139 struct data
data_copy_escape_string(const char *s
, int len
);
140 struct data
data_copy_file(FILE *f
, size_t len
);
142 struct data
data_append_data(struct data d
, const void *p
, int len
);
143 struct data
data_insert_at_marker(struct data d
, struct marker
*m
,
144 const void *p
, int len
);
145 struct data
data_merge(struct data d1
, struct data d2
);
146 struct data
data_append_cell(struct data d
, cell_t word
);
147 struct data
data_append_re(struct data d
, const struct fdt_reserve_entry
*re
);
148 struct data
data_append_addr(struct data d
, u64 addr
);
149 struct data
data_append_byte(struct data d
, uint8_t byte
);
150 struct data
data_append_zeroes(struct data d
, int len
);
151 struct data
data_append_align(struct data d
, int align
);
153 struct data
data_add_marker(struct data d
, enum markertype type
, char *ref
);
155 int data_is_one_string(struct data d
);
159 #define MAX_PROPNAME_LEN 31
160 #define MAX_NODENAME_LEN 31
167 struct property
*next
;
174 struct property
*proplist
;
175 struct node
*children
;
178 struct node
*next_sibling
;
184 int addr_cells
, size_cells
;
189 #define for_each_property(n, p) \
190 for ((p) = (n)->proplist; (p); (p) = (p)->next)
192 #define for_each_child(n, c) \
193 for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
195 struct property
*build_property(char *name
, struct data val
, char *label
);
196 struct property
*chain_property(struct property
*first
, struct property
*list
);
197 struct property
*reverse_properties(struct property
*first
);
199 struct node
*build_node(struct property
*proplist
, struct node
*children
);
200 struct node
*name_node(struct node
*node
, char *name
, char *label
);
201 struct node
*chain_node(struct node
*first
, struct node
*list
);
203 void add_property(struct node
*node
, struct property
*prop
);
204 void add_child(struct node
*parent
, struct node
*child
);
206 const char *get_unitname(struct node
*node
);
207 struct property
*get_property(struct node
*node
, const char *propname
);
208 cell_t
propval_cell(struct property
*prop
);
209 struct node
*get_subnode(struct node
*node
, const char *nodename
);
210 struct node
*get_node_by_path(struct node
*tree
, const char *path
);
211 struct node
*get_node_by_label(struct node
*tree
, const char *label
);
212 struct node
*get_node_by_phandle(struct node
*tree
, cell_t phandle
);
213 struct node
*get_node_by_ref(struct node
*tree
, const char *ref
);
214 cell_t
get_node_phandle(struct node
*root
, struct node
*node
);
216 /* Boot info (tree plus memreserve information */
218 struct reserve_info
{
219 struct fdt_reserve_entry re
;
221 struct reserve_info
*next
;
226 struct reserve_info
*build_reserve_entry(u64 start
, u64 len
, char *label
);
227 struct reserve_info
*chain_reserve_entry(struct reserve_info
*first
,
228 struct reserve_info
*list
);
229 struct reserve_info
*add_reserve_entry(struct reserve_info
*list
,
230 struct reserve_info
*new);
234 struct reserve_info
*reservelist
;
235 struct node
*dt
; /* the device tree */
238 struct boot_info
*build_boot_info(struct reserve_info
*reservelist
,
243 void process_checks(int force
, struct boot_info
*bi
,
244 int checkflag
, int outversion
, int boot_cpuid_phys
);
246 /* Flattened trees */
248 void dt_to_blob(FILE *f
, struct boot_info
*bi
, int version
,
249 int boot_cpuid_phys
);
250 void dt_to_asm(FILE *f
, struct boot_info
*bi
, int version
,
251 int boot_cpuid_phys
);
253 struct boot_info
*dt_from_blob(FILE *f
);
257 void dt_to_source(FILE *f
, struct boot_info
*bi
);
258 struct boot_info
*dt_from_source(const char *f
);
262 struct boot_info
*dt_from_fs(const char *dirname
);
266 char *join_path(const char *path
, const char *name
);
267 void fill_fullpaths(struct node
*tree
, const char *prefix
);