dtc-parser.y 9.8 KB
Newer Older
D
David Gibson 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation.  2005.
 *
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 *                                                                   USA
 */
%{
21
#include <stdio.h>
22
#include <inttypes.h>
23

D
David Gibson 已提交
24 25 26
#include "dtc.h"
#include "srcpos.h"

27
extern int yylex(void);
28
extern void yyerror(char const *s);
29 30 31 32 33
#define ERROR(loc, ...) \
	do { \
		srcpos_error((loc), "Error", __VA_ARGS__); \
		treesource_error = true; \
	} while (0)
D
David Gibson 已提交
34

35
extern struct dt_info *parser_output;
36
extern bool treesource_error;
D
David Gibson 已提交
37 38 39 40 41
%}

%union {
	char *propnodename;
	char *labelref;
42
	uint8_t byte;
D
David Gibson 已提交
43 44
	struct data data;

S
Stephen Warren 已提交
45 46 47 48 49
	struct {
		struct data	data;
		int		bits;
	} array;

D
David Gibson 已提交
50 51 52 53 54
	struct property *prop;
	struct property *proplist;
	struct node *node;
	struct node *nodelist;
	struct reserve_info *re;
S
Stephen Warren 已提交
55
	uint64_t integer;
56
	unsigned int flags;
D
David Gibson 已提交
57 58 59
}

%token DT_V1
60
%token DT_PLUGIN
D
David Gibson 已提交
61
%token DT_MEMRESERVE
S
Stephen Warren 已提交
62 63 64 65
%token DT_LSHIFT DT_RSHIFT DT_LE DT_GE DT_EQ DT_NE DT_AND DT_OR
%token DT_BITS
%token DT_DEL_PROP
%token DT_DEL_NODE
D
David Gibson 已提交
66
%token <propnodename> DT_PROPNODENAME
67 68
%token <integer> DT_LITERAL
%token <integer> DT_CHAR_LITERAL
D
David Gibson 已提交
69 70 71 72
%token <byte> DT_BYTE
%token <data> DT_STRING
%token <labelref> DT_LABEL
%token <labelref> DT_REF
73
%token DT_INCBIN
D
David Gibson 已提交
74 75 76

%type <data> propdata
%type <data> propdataprefix
77 78
%type <flags> header
%type <flags> headers
D
David Gibson 已提交
79 80
%type <re> memreserve
%type <re> memreserves
S
Stephen Warren 已提交
81
%type <array> arrayprefix
D
David Gibson 已提交
82 83 84 85 86 87 88 89 90
%type <data> bytestring
%type <prop> propdef
%type <proplist> proplist

%type <node> devicetree
%type <node> nodedef
%type <node> subnode
%type <nodelist> subnodes

S
Stephen Warren 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
%type <integer> integer_prim
%type <integer> integer_unary
%type <integer> integer_mul
%type <integer> integer_add
%type <integer> integer_shift
%type <integer> integer_rela
%type <integer> integer_eq
%type <integer> integer_bitand
%type <integer> integer_bitxor
%type <integer> integer_bitor
%type <integer> integer_and
%type <integer> integer_or
%type <integer> integer_trinary
%type <integer> integer_expr

D
David Gibson 已提交
106 107 108
%%

sourcefile:
109
	  headers memreserves devicetree
D
David Gibson 已提交
110
		{
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
			parser_output = build_dt_info($1, $2, $3,
			                              guess_boot_cpuid($3));
		}
	;

header:
	  DT_V1 ';'
		{
			$$ = DTSF_V1;
		}
	| DT_V1 ';' DT_PLUGIN ';'
		{
			$$ = DTSF_V1 | DTSF_PLUGIN;
		}
	;

headers:
	  header
	| header headers
		{
			if ($2 != $1)
				ERROR(&@2, "Header flags don't match earlier ones");
			$$ = $1;
D
David Gibson 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
		}
	;

memreserves:
	  /* empty */
		{
			$$ = NULL;
		}
	| memreserve memreserves
		{
			$$ = chain_reserve_entry($1, $2);
		}
	;

memreserve:
S
Stephen Warren 已提交
149
	  DT_MEMRESERVE integer_prim integer_prim ';'
D
David Gibson 已提交
150
		{
151
			$$ = build_reserve_entry($2, $3);
D
David Gibson 已提交
152
		}
153
	| DT_LABEL memreserve
D
David Gibson 已提交
154
		{
155 156
			add_label(&$2->labels, $1);
			$$ = $2;
D
David Gibson 已提交
157 158 159 160 161 162
		}
	;

devicetree:
	  '/' nodedef
		{
163 164 165 166 167 168
			$$ = name_node($2, "");
		}
	| devicetree '/' nodedef
		{
			$$ = merge_nodes($1, $3);
		}
169 170 171 172 173

	| devicetree DT_LABEL DT_REF nodedef
		{
			struct node *target = get_node_by_ref($1, $3);

174 175
			if (target) {
				add_label(&target->labels, $2);
176
				merge_nodes(target, $4);
177
			} else
178 179 180
				ERROR(&@3, "Label or path %s not found", $3);
			$$ = $1;
		}
181 182 183 184
	| devicetree DT_REF nodedef
		{
			struct node *target = get_node_by_ref($1, $2);

185
			if (target) {
186
				merge_nodes(target, $3);
187 188 189 190 191 192 193 194 195 196 197
			} else {
				/*
				 * We rely on the rule being always:
				 *   versioninfo plugindecl memreserves devicetree
				 * so $-1 is what we want (plugindecl)
				 */
				if ($<flags>-1 & DTSF_PLUGIN)
					add_orphan_node($1, $3, $2);
				else
					ERROR(&@2, "Label or path %s not found", $2);
			}
198
			$$ = $1;
D
David Gibson 已提交
199
		}
S
Stephen Warren 已提交
200 201 202 203
	| devicetree DT_DEL_NODE DT_REF ';'
		{
			struct node *target = get_node_by_ref($1, $3);

204
			if (target)
S
Stephen Warren 已提交
205
				delete_node(target);
206 207 208
			else
				ERROR(&@3, "Label or path %s not found", $3);

S
Stephen Warren 已提交
209 210 211

			$$ = $1;
		}
212 213 214 215 216
	| /* empty */
		{
			/* build empty node */
			$$ = name_node(build_node(NULL, NULL), "");
		}
D
David Gibson 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
	;

nodedef:
	  '{' proplist subnodes '}' ';'
		{
			$$ = build_node($2, $3);
		}
	;

proplist:
	  /* empty */
		{
			$$ = NULL;
		}
	| proplist propdef
		{
			$$ = chain_property($2, $1);
		}
	;

propdef:
238 239 240 241 242
	  DT_PROPNODENAME '=' propdata ';'
		{
			$$ = build_property($1, $3);
		}
	| DT_PROPNODENAME ';'
D
David Gibson 已提交
243
		{
244
			$$ = build_property($1, empty_data);
D
David Gibson 已提交
245
		}
S
Stephen Warren 已提交
246 247 248 249
	| DT_DEL_PROP DT_PROPNODENAME ';'
		{
			$$ = build_property_delete($2);
		}
250
	| DT_LABEL propdef
D
David Gibson 已提交
251
		{
252 253
			add_label(&$2->labels, $1);
			$$ = $2;
D
David Gibson 已提交
254 255 256 257 258 259 260 261
		}
	;

propdata:
	  propdataprefix DT_STRING
		{
			$$ = data_merge($1, $2);
		}
S
Stephen Warren 已提交
262
	| propdataprefix arrayprefix '>'
D
David Gibson 已提交
263
		{
S
Stephen Warren 已提交
264
			$$ = data_merge($1, $2.data);
D
David Gibson 已提交
265 266 267 268 269 270 271 272 273
		}
	| propdataprefix '[' bytestring ']'
		{
			$$ = data_merge($1, $3);
		}
	| propdataprefix DT_REF
		{
			$$ = data_add_marker($1, REF_PATH, $2);
		}
S
Stephen Warren 已提交
274
	| propdataprefix DT_INCBIN '(' DT_STRING ',' integer_prim ',' integer_prim ')'
275
		{
276 277
			FILE *f = srcfile_relative_open($4.val, NULL);
			struct data d;
278 279

			if ($6 != 0)
280
				if (fseek(f, $6, SEEK_SET) != 0)
281 282 283
					die("Couldn't seek to offset %llu in \"%s\": %s",
					    (unsigned long long)$6, $4.val,
					    strerror(errno));
284

285
			d = data_copy_file(f, $8);
286 287

			$$ = data_merge($1, d);
288
			fclose(f);
289 290 291
		}
	| propdataprefix DT_INCBIN '(' DT_STRING ')'
		{
292
			FILE *f = srcfile_relative_open($4.val, NULL);
293 294
			struct data d = empty_data;

295
			d = data_copy_file(f, -1);
296 297

			$$ = data_merge($1, d);
298
			fclose(f);
299
		}
D
David Gibson 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
	| propdata DT_LABEL
		{
			$$ = data_add_marker($1, LABEL, $2);
		}
	;

propdataprefix:
	  /* empty */
		{
			$$ = empty_data;
		}
	| propdata ','
		{
			$$ = $1;
		}
	| propdataprefix DT_LABEL
		{
			$$ = data_add_marker($1, LABEL, $2);
		}
	;

S
Stephen Warren 已提交
321 322 323
arrayprefix:
	DT_BITS DT_LITERAL '<'
		{
324 325 326 327 328 329 330 331 332
			unsigned long long bits;

			bits = $2;

			if ((bits !=  8) && (bits != 16) &&
			    (bits != 32) && (bits != 64)) {
				ERROR(&@2, "Array elements must be"
				      " 8, 16, 32 or 64-bits");
				bits = 32;
S
Stephen Warren 已提交
333
			}
334 335 336

			$$.data = empty_data;
			$$.bits = bits;
S
Stephen Warren 已提交
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
		}
	| '<'
		{
			$$.data = empty_data;
			$$.bits = 32;
		}
	| arrayprefix integer_prim
		{
			if ($1.bits < 64) {
				uint64_t mask = (1ULL << $1.bits) - 1;
				/*
				 * Bits above mask must either be all zero
				 * (positive within range of mask) or all one
				 * (negative and sign-extended). The second
				 * condition is true if when we set all bits
				 * within the mask to one (i.e. | in the
				 * mask), all bits are one.
				 */
				if (($2 > mask) && (($2 | mask) != -1ULL))
356 357
					ERROR(&@2, "Value out of range for"
					      " %d-bit array element", $1.bits);
S
Stephen Warren 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370
			}

			$$.data = data_append_integer($1.data, $2, $1.bits);
		}
	| arrayprefix DT_REF
		{
			uint64_t val = ~0ULL >> (64 - $1.bits);

			if ($1.bits == 32)
				$1.data = data_add_marker($1.data,
							  REF_PHANDLE,
							  $2);
			else
371
				ERROR(&@2, "References are only allowed in "
S
Stephen Warren 已提交
372 373 374 375 376
					    "arrays with 32-bit elements.");

			$$.data = data_append_integer($1.data, val, $1.bits);
		}
	| arrayprefix DT_LABEL
D
David Gibson 已提交
377
		{
S
Stephen Warren 已提交
378
			$$.data = data_add_marker($1.data, LABEL, $2);
D
David Gibson 已提交
379
		}
S
Stephen Warren 已提交
380 381 382 383 384 385
	;

integer_prim:
	  DT_LITERAL
	| DT_CHAR_LITERAL
	| '(' integer_expr ')'
D
David Gibson 已提交
386
		{
S
Stephen Warren 已提交
387
			$$ = $2;
D
David Gibson 已提交
388 389 390
		}
	;

S
Stephen Warren 已提交
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
integer_expr:
	integer_trinary
	;

integer_trinary:
	  integer_or
	| integer_or '?' integer_expr ':' integer_trinary { $$ = $1 ? $3 : $5; }
	;

integer_or:
	  integer_and
	| integer_or DT_OR integer_and { $$ = $1 || $3; }
	;

integer_and:
	  integer_bitor
	| integer_and DT_AND integer_bitor { $$ = $1 && $3; }
	;

integer_bitor:
	  integer_bitxor
	| integer_bitor '|' integer_bitxor { $$ = $1 | $3; }
	;

integer_bitxor:
	  integer_bitand
	| integer_bitxor '^' integer_bitand { $$ = $1 ^ $3; }
	;

integer_bitand:
	  integer_eq
	| integer_bitand '&' integer_eq { $$ = $1 & $3; }
	;

integer_eq:
	  integer_rela
	| integer_eq DT_EQ integer_rela { $$ = $1 == $3; }
	| integer_eq DT_NE integer_rela { $$ = $1 != $3; }
	;

integer_rela:
	  integer_shift
	| integer_rela '<' integer_shift { $$ = $1 < $3; }
	| integer_rela '>' integer_shift { $$ = $1 > $3; }
	| integer_rela DT_LE integer_shift { $$ = $1 <= $3; }
	| integer_rela DT_GE integer_shift { $$ = $1 >= $3; }
	;

integer_shift:
	  integer_shift DT_LSHIFT integer_add { $$ = $1 << $3; }
	| integer_shift DT_RSHIFT integer_add { $$ = $1 >> $3; }
	| integer_add
	;

integer_add:
	  integer_add '+' integer_mul { $$ = $1 + $3; }
	| integer_add '-' integer_mul { $$ = $1 - $3; }
	| integer_mul
	;

integer_mul:
	  integer_mul '*' integer_unary { $$ = $1 * $3; }
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
	| integer_mul '/' integer_unary
		{
			if ($3 != 0) {
				$$ = $1 / $3;
			} else {
				ERROR(&@$, "Division by zero");
				$$ = 0;
			}
		}
	| integer_mul '%' integer_unary
		{
			if ($3 != 0) {
				$$ = $1 % $3;
			} else {
				ERROR(&@$, "Division by zero");
				$$ = 0;
			}
		}
S
Stephen Warren 已提交
471 472 473 474 475 476 477 478
	| integer_unary
	;

integer_unary:
	  integer_prim
	| '-' integer_unary { $$ = -$2; }
	| '~' integer_unary { $$ = ~$2; }
	| '!' integer_unary { $$ = !$2; }
D
David Gibson 已提交
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
	;

bytestring:
	  /* empty */
		{
			$$ = empty_data;
		}
	| bytestring DT_BYTE
		{
			$$ = data_append_byte($1, $2);
		}
	| bytestring DT_LABEL
		{
			$$ = data_add_marker($1, LABEL, $2);
		}
	;

subnodes:
	  /* empty */
		{
			$$ = NULL;
		}
501
	| subnode subnodes
D
David Gibson 已提交
502 503 504 505 506
		{
			$$ = chain_node($1, $2);
		}
	| subnode propdef
		{
507
			ERROR(&@2, "Properties must precede subnodes");
D
David Gibson 已提交
508 509 510 511 512
			YYERROR;
		}
	;

subnode:
513
	  DT_PROPNODENAME nodedef
D
David Gibson 已提交
514
		{
515
			$$ = name_node($2, $1);
D
David Gibson 已提交
516
		}
S
Stephen Warren 已提交
517 518 519 520
	| DT_DEL_NODE DT_PROPNODENAME ';'
		{
			$$ = name_node(build_node_delete(), $2);
		}
521
	| DT_LABEL subnode
D
David Gibson 已提交
522
		{
523 524
			add_label(&$2->labels, $1);
			$$ = $2;
D
David Gibson 已提交
525 526 527 528 529
		}
	;

%%

530
void yyerror(char const *s)
S
Stephen Warren 已提交
531
{
532
	ERROR(&yylloc, "%s", s);
S
Stephen Warren 已提交
533
}