blob: dbff5e8c6c8c37efaf87ebee27574bcaff4a73dc [file] [log] [blame]
David Gibsonfc14dad2005-06-08 17:18:34 +10001#ifndef _DTC_H
2#define _DTC_H
3
4/*
5 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
6 *
David Gibson63dc9c72007-09-18 11:44:04 +10007 *
David Gibsonfc14dad2005-06-08 17:18:34 +10008 * 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.
12 *
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.
David Gibson63dc9c72007-09-18 11:44:04 +100017 *
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
21 * USA
David Gibsonfc14dad2005-06-08 17:18:34 +100022 */
23
24#include <stdio.h>
25#include <string.h>
26#include <stdlib.h>
27#include <stdint.h>
28#include <stdarg.h>
29#include <assert.h>
30#include <ctype.h>
31#include <errno.h>
32#include <unistd.h>
33#include <netinet/in.h>
David Gibsonf0517db2005-07-15 17:14:24 +100034#include <endian.h>
35#include <byteswap.h>
36
David Gibsonfb7c7ac2007-09-26 13:11:05 +100037#include <fdt.h>
David Gibsonfc14dad2005-06-08 17:18:34 +100038
David Gibsonfb7c7ac2007-09-26 13:11:05 +100039#define DEFAULT_FDT_VERSION 17
Jerry Van Barencd1da872007-03-18 16:49:24 -040040/*
Jerry Van Baren4384b232007-04-04 22:04:33 -040041 * Command line options
Jerry Van Barencd1da872007-03-18 16:49:24 -040042 */
Jerry Van Baren4384b232007-04-04 22:04:33 -040043extern int quiet; /* Level of quietness */
44extern int reservenum; /* Number of memory reservation slots */
45extern int minsize; /* Minimum blob size */
Kumar Gala2b7dc8d2007-11-28 10:21:12 -060046extern int padsize; /* Additional padding to blob */
Jerry Van Barencd1da872007-03-18 16:49:24 -040047
David Gibsonbf944972007-08-31 16:21:23 +100048static inline void __attribute__((noreturn)) die(char * str, ...)
David Gibsonfc14dad2005-06-08 17:18:34 +100049{
50 va_list ap;
51
52 va_start(ap, str);
53 fprintf(stderr, "FATAL ERROR: ");
54 vfprintf(stderr, str, ap);
55 exit(1);
56}
57
58static inline void *xmalloc(size_t len)
59{
60 void *new = malloc(len);
61
62 if (! new)
63 die("malloc() failed\n");
64
65 return new;
66}
67
68static inline void *xrealloc(void *p, size_t len)
69{
70 void *new = realloc(p, len);
71
72 if (! new)
73 die("realloc() failed (len=%d)\n", len);
74
75 return new;
76}
77
David Gibson03a9b9d2005-07-11 16:49:52 +100078typedef uint8_t u8;
David Gibsonfc14dad2005-06-08 17:18:34 +100079typedef uint16_t u16;
80typedef uint32_t u32;
81typedef uint64_t u64;
82typedef u32 cell_t;
83
84#define cpu_to_be16(x) htons(x)
85#define be16_to_cpu(x) ntohs(x)
86
87#define cpu_to_be32(x) htonl(x)
88#define be32_to_cpu(x) ntohl(x)
89
David Gibsonf0517db2005-07-15 17:14:24 +100090#if __BYTE_ORDER == __BIG_ENDIAN
91#define cpu_to_be64(x) (x)
92#define be64_to_cpu(x) (x)
93#else
94#define cpu_to_be64(x) bswap_64(x)
95#define be64_to_cpu(x) bswap_64(x)
96#endif
David Gibsonfc14dad2005-06-08 17:18:34 +100097
98#define streq(a, b) (strcmp((a), (b)) == 0)
David Gibson81f2e892005-06-16 17:04:00 +100099#define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
100
David Gibsonfc14dad2005-06-08 17:18:34 +1000101#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
102#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
103
104/* Data blobs */
David Gibsondc941772007-11-22 14:39:23 +1100105enum markertype {
106 REF_PHANDLE,
David Gibsonefbbef82007-12-05 10:43:50 +1100107 REF_PATH,
David Gibsondc941772007-11-22 14:39:23 +1100108 LABEL,
109};
110
111struct marker {
112 enum markertype type;
David Gibson81f2e892005-06-16 17:04:00 +1000113 int offset;
114 char *ref;
David Gibsondc941772007-11-22 14:39:23 +1100115 struct marker *next;
David Gibson81f2e892005-06-16 17:04:00 +1000116};
117
David Gibsonfc14dad2005-06-08 17:18:34 +1000118struct data {
119 int len;
120 char *val;
121 int asize;
David Gibsondc941772007-11-22 14:39:23 +1100122 struct marker *markers;
David Gibsonfc14dad2005-06-08 17:18:34 +1000123};
124
David Gibsondc941772007-11-22 14:39:23 +1100125
Milton Miller6a99b132007-07-07 01:18:51 -0500126#define empty_data ((struct data){ /* all .members = 0 or NULL */ })
David Gibsonfc14dad2005-06-08 17:18:34 +1000127
David Gibsondc941772007-11-22 14:39:23 +1100128#define for_each_marker(m) \
129 for (; (m); (m) = (m)->next)
130#define for_each_marker_of_type(m, t) \
131 for_each_marker(m) \
132 if ((m)->type == (t))
133
David Gibsonfc14dad2005-06-08 17:18:34 +1000134void data_free(struct data d);
135
136struct data data_grow_for(struct data d, int xlen);
137
David Gibson92cb9a22007-12-04 14:26:15 +1100138struct data data_copy_mem(const char *mem, int len);
139struct data data_copy_escape_string(const char *s, int len);
David Gibsonfc14dad2005-06-08 17:18:34 +1000140struct data data_copy_file(FILE *f, size_t len);
141
David Gibson92cb9a22007-12-04 14:26:15 +1100142struct data data_append_data(struct data d, const void *p, int len);
David Gibsonefbbef82007-12-05 10:43:50 +1100143struct data data_insert_at_marker(struct data d, struct marker *m,
144 const void *p, int len);
David Gibson32da4752007-02-07 16:37:50 +1100145struct data data_merge(struct data d1, struct data d2);
David Gibsonfc14dad2005-06-08 17:18:34 +1000146struct data data_append_cell(struct data d, cell_t word);
David Gibson92cb9a22007-12-04 14:26:15 +1100147struct data data_append_re(struct data d, const struct fdt_reserve_entry *re);
David Gibsonf0517db2005-07-15 17:14:24 +1000148struct data data_append_addr(struct data d, u64 addr);
David Gibsonfc14dad2005-06-08 17:18:34 +1000149struct data data_append_byte(struct data d, uint8_t byte);
150struct data data_append_zeroes(struct data d, int len);
151struct data data_append_align(struct data d, int align);
152
David Gibsondc941772007-11-22 14:39:23 +1100153struct data data_add_marker(struct data d, enum markertype type, char *ref);
David Gibson81f2e892005-06-16 17:04:00 +1000154
David Gibsonfc14dad2005-06-08 17:18:34 +1000155int data_is_one_string(struct data d);
156
157/* DT constraints */
158
159#define MAX_PROPNAME_LEN 31
160#define MAX_NODENAME_LEN 31
161
162/* Live trees */
163struct property {
164 char *name;
165 struct data val;
166
167 struct property *next;
David Gibson4102d842005-06-16 14:36:37 +1000168
169 char *label;
David Gibsonfc14dad2005-06-08 17:18:34 +1000170};
171
172struct node {
173 char *name;
174 struct property *proplist;
175 struct node *children;
176
177 struct node *parent;
178 struct node *next_sibling;
179
180 char *fullpath;
181 int basenamelen;
182
183 cell_t phandle;
184 int addr_cells, size_cells;
David Gibson4102d842005-06-16 14:36:37 +1000185
186 char *label;
David Gibsonfc14dad2005-06-08 17:18:34 +1000187};
188
189#define for_each_property(n, p) \
190 for ((p) = (n)->proplist; (p); (p) = (p)->next)
191
192#define for_each_child(n, c) \
193 for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
194
David Gibson4102d842005-06-16 14:36:37 +1000195struct property *build_property(char *name, struct data val, char *label);
David Gibsonfc14dad2005-06-08 17:18:34 +1000196struct property *chain_property(struct property *first, struct property *list);
Jon Loeliger7b3fb782007-10-22 16:09:56 -0500197struct property *reverse_properties(struct property *first);
David Gibsonfc14dad2005-06-08 17:18:34 +1000198
199struct node *build_node(struct property *proplist, struct node *children);
David Gibson4102d842005-06-16 14:36:37 +1000200struct node *name_node(struct node *node, char *name, char *label);
David Gibsonfc14dad2005-06-08 17:18:34 +1000201struct node *chain_node(struct node *first, struct node *list);
202
203void add_property(struct node *node, struct property *prop);
204void add_child(struct node *parent, struct node *child);
205
David Gibson92cb9a22007-12-04 14:26:15 +1100206const char *get_unitname(struct node *node);
207struct property *get_property(struct node *node, const char *propname);
David Gibson2f1ccc32007-11-01 16:49:26 +1100208cell_t propval_cell(struct property *prop);
David Gibson92cb9a22007-12-04 14:26:15 +1100209struct node *get_subnode(struct node *node, const char *nodename);
210struct node *get_node_by_path(struct node *tree, const char *path);
David Gibsonb16a2bd2007-11-22 14:38:07 +1100211struct node *get_node_by_label(struct node *tree, const char *label);
David Gibson2f1ccc32007-11-01 16:49:26 +1100212struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
David Gibson92cb9a22007-12-04 14:26:15 +1100213struct node *get_node_by_ref(struct node *tree, const char *ref);
David Gibsonb16a2bd2007-11-22 14:38:07 +1100214cell_t get_node_phandle(struct node *root, struct node *node);
David Gibsonfc14dad2005-06-08 17:18:34 +1000215
David Gibsonf0517db2005-07-15 17:14:24 +1000216/* Boot info (tree plus memreserve information */
217
David Gibsonf040d952005-10-24 18:18:38 +1000218struct reserve_info {
David Gibsonfb7c7ac2007-09-26 13:11:05 +1000219 struct fdt_reserve_entry re;
David Gibsonf040d952005-10-24 18:18:38 +1000220
221 struct reserve_info *next;
222
223 char *label;
224};
225
226struct reserve_info *build_reserve_entry(u64 start, u64 len, char *label);
227struct reserve_info *chain_reserve_entry(struct reserve_info *first,
228 struct reserve_info *list);
229struct reserve_info *add_reserve_entry(struct reserve_info *list,
230 struct reserve_info *new);
231
232
David Gibsonf0517db2005-07-15 17:14:24 +1000233struct boot_info {
David Gibsonf040d952005-10-24 18:18:38 +1000234 struct reserve_info *reservelist;
David Gibsonf0517db2005-07-15 17:14:24 +1000235 struct node *dt; /* the device tree */
Scott Woodad4f54a2008-01-03 17:43:33 -0600236 int error;
David Gibsonf0517db2005-07-15 17:14:24 +1000237};
238
David Gibsonf040d952005-10-24 18:18:38 +1000239struct boot_info *build_boot_info(struct reserve_info *reservelist,
David Gibsonf0517db2005-07-15 17:14:24 +1000240 struct node *tree);
241
David Gibson2f1ccc32007-11-01 16:49:26 +1100242/* Checks */
243
David Gibson376ab6f2007-12-18 14:54:38 +1100244void process_checks(int force, struct boot_info *bi);
David Gibson2f1ccc32007-11-01 16:49:26 +1100245
David Gibsonfc14dad2005-06-08 17:18:34 +1000246/* Flattened trees */
247
Michael Neuling38e8f8f2006-05-31 08:31:51 +1000248void dt_to_blob(FILE *f, struct boot_info *bi, int version,
249 int boot_cpuid_phys);
250void dt_to_asm(FILE *f, struct boot_info *bi, int version,
251 int boot_cpuid_phys);
David Gibsonfc14dad2005-06-08 17:18:34 +1000252
David Gibsonf0517db2005-07-15 17:14:24 +1000253struct boot_info *dt_from_blob(FILE *f);
David Gibsonfc14dad2005-06-08 17:18:34 +1000254
255/* Tree source */
256
David Gibson712e52e2005-10-26 16:56:26 +1000257void dt_to_source(FILE *f, struct boot_info *bi);
Jon Loeligere45e6fd2007-03-23 15:18:41 -0500258struct boot_info *dt_from_source(const char *f);
David Gibsonfc14dad2005-06-08 17:18:34 +1000259
260/* FS trees */
261
David Gibson92cb9a22007-12-04 14:26:15 +1100262struct boot_info *dt_from_fs(const char *dirname);
David Gibsonfc14dad2005-06-08 17:18:34 +1000263
264/* misc */
265
David Gibson92cb9a22007-12-04 14:26:15 +1100266char *join_path(const char *path, const char *name);
David Gibsonfc14dad2005-06-08 17:18:34 +1000267
268#endif /* _DTC_H */