1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
10 extern int yyparse(void);
11 extern YYLTYPE yylloc;
13 struct dt_info *parser_output;
14 bool treesource_error;
16 struct dt_info *dt_from_source(const char *fname)
19 treesource_error = false;
22 yyin = current_srcfile->f;
23 yylloc.file = current_srcfile;
26 die("Unable to parse input tree\n");
29 die("Syntax error parsing input tree\n");
34 static void write_prefix(FILE *f, int level)
38 for (i = 0; i < level; i++)
42 static bool isstring(char c)
44 return (isprint((unsigned char)c)
46 || strchr("\a\b\t\n\v\f\r", c));
49 static void write_propval_string(FILE *f, const char *s, size_t len)
51 const char *end = s + len - 1;
93 if (isprint((unsigned char)c))
96 fprintf(f, "\\x%02"PRIx8, c);
102 static void write_propval_int(FILE *f, const char *p, size_t len, size_t width)
104 const char *end = p + len;
105 assert(len % width == 0);
107 for (; p < end; p += width) {
110 fprintf(f, "%02"PRIx8, *(const uint8_t*)p);
113 fprintf(f, "0x%02"PRIx16, dtb_ld16(p));
116 fprintf(f, "0x%02"PRIx32, dtb_ld32(p));
119 fprintf(f, "0x%02"PRIx64, dtb_ld64(p));
127 static const char *delim_start[] = {
129 [TYPE_UINT16] = "/bits/ 16 <",
131 [TYPE_UINT64] = "/bits/ 64 <",
134 static const char *delim_end[] = {
142 static enum markertype guess_value_type(struct property *prop)
144 int len = prop->val.len;
145 const char *p = prop->val.val;
146 struct marker *m = prop->val.markers;
147 int nnotstring = 0, nnul = 0;
148 int nnotstringlbl = 0, nnotcelllbl = 0;
151 for (i = 0; i < len; i++) {
152 if (! isstring(p[i]))
158 for_each_marker_of_type(m, LABEL) {
159 if ((m->offset > 0) && (prop->val.val[m->offset - 1] != '\0'))
161 if ((m->offset % sizeof(cell_t)) != 0)
165 if ((p[len-1] == '\0') && (nnotstring == 0) && (nnul <= (len-nnul))
166 && (nnotstringlbl == 0)) {
168 } else if (((len % sizeof(cell_t)) == 0) && (nnotcelllbl == 0)) {
175 static void write_propval(FILE *f, struct property *prop)
177 size_t len = prop->val.len;
178 struct marker *m = prop->val.markers;
179 struct marker dummy_marker;
180 enum markertype emit_type = TYPE_NONE;
186 srcstr = srcpos_string_first(prop->srcpos, annotate);
188 fprintf(f, " /* %s */", srcstr);
198 if (!next_type_marker(m)) {
199 /* data type information missing, need to guess */
200 dummy_marker.type = guess_value_type(prop);
201 dummy_marker.next = prop->val.markers;
202 dummy_marker.offset = 0;
203 dummy_marker.ref = NULL;
208 size_t chunk_len = (m->next ? m->next->offset : len) - m->offset;
209 size_t data_len = type_marker_length(m) ? : len - m->offset;
210 const char *p = &prop->val.val[m->offset];
211 struct marker *m_phandle;
213 if (is_type_marker(m->type)) {
215 fprintf(f, " %s", delim_start[emit_type]);
216 } else if (m->type == LABEL)
217 fprintf(f, " %s:", m->ref);
219 if (emit_type == TYPE_NONE || chunk_len == 0)
224 write_propval_int(f, p, chunk_len, 2);
227 m_phandle = prop->val.markers;
228 for_each_marker_of_type(m_phandle, REF_PHANDLE)
229 if (m->offset == m_phandle->offset)
233 if (m_phandle->ref[0] == '/')
234 fprintf(f, "&{%s}", m_phandle->ref);
236 fprintf(f, "&%s", m_phandle->ref);
239 write_propval_int(f, p + 4, chunk_len - 4, 4);
242 write_propval_int(f, p, chunk_len, 4);
246 write_propval_int(f, p, chunk_len, 8);
249 write_propval_string(f, p, chunk_len);
252 write_propval_int(f, p, chunk_len, 1);
255 if (chunk_len == data_len) {
256 size_t pos = m->offset + chunk_len;
257 fprintf(f, pos == len ? "%s" : "%s,",
258 delim_end[emit_type] ? : "");
259 emit_type = TYPE_NONE;
264 srcstr = srcpos_string_first(prop->srcpos, annotate);
266 fprintf(f, " /* %s */", srcstr);
273 static void write_tree_source_node(FILE *f, struct node *tree, int level)
275 struct property *prop;
280 write_prefix(f, level);
281 for_each_label(tree->labels, l)
282 fprintf(f, "%s: ", l->label);
283 if (tree->name && (*tree->name))
284 fprintf(f, "%s {", tree->name);
289 srcstr = srcpos_string_first(tree->srcpos, annotate);
291 fprintf(f, " /* %s */", srcstr);
297 for_each_property(tree, prop) {
298 write_prefix(f, level+1);
299 for_each_label(prop->labels, l)
300 fprintf(f, "%s: ", l->label);
301 fprintf(f, "%s", prop->name);
302 write_propval(f, prop);
304 for_each_child(tree, child) {
306 write_tree_source_node(f, child, level+1);
308 write_prefix(f, level);
311 srcstr = srcpos_string_last(tree->srcpos, annotate);
313 fprintf(f, " /* %s */", srcstr);
320 void dt_to_source(FILE *f, struct dt_info *dti)
322 struct reserve_info *re;
324 fprintf(f, "/dts-v1/;\n\n");
326 for (re = dti->reservelist; re; re = re->next) {
329 for_each_label(re->labels, l)
330 fprintf(f, "%s: ", l->label);
331 fprintf(f, "/memreserve/\t0x%016llx 0x%016llx;\n",
332 (unsigned long long)re->address,
333 (unsigned long long)re->size);
336 write_tree_source_node(f, dti->dt, 0);