2005-06-08 09:18:34 +02:00
|
|
|
/*
|
|
|
|
* (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
|
|
|
|
*
|
2007-09-18 03:44:04 +02:00
|
|
|
*
|
2005-06-08 09:18:34 +02:00
|
|
|
* 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.
|
2007-09-18 03:44:04 +02:00
|
|
|
*
|
|
|
|
* 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
|
2005-06-08 09:18:34 +02:00
|
|
|
*/
|
|
|
|
|
2005-10-19 08:00:31 +02:00
|
|
|
%locations
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
%{
|
|
|
|
#include "dtc.h"
|
2007-03-23 21:18:41 +01:00
|
|
|
#include "srcpos.h"
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2007-02-16 16:33:54 +01:00
|
|
|
int yylex(void);
|
|
|
|
cell_t cell_from_string(char *s, unsigned int base);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
extern struct boot_info *the_boot_info;
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%union {
|
|
|
|
cell_t cval;
|
2007-02-15 17:59:27 +01:00
|
|
|
unsigned int cbase;
|
2005-07-11 08:49:52 +02:00
|
|
|
u8 byte;
|
2005-06-08 09:18:34 +02:00
|
|
|
char *str;
|
|
|
|
struct data data;
|
|
|
|
struct property *prop;
|
|
|
|
struct property *proplist;
|
|
|
|
struct node *node;
|
|
|
|
struct node *nodelist;
|
|
|
|
int datalen;
|
|
|
|
int hexlen;
|
2005-07-15 09:14:24 +02:00
|
|
|
u64 addr;
|
2005-10-24 10:18:38 +02:00
|
|
|
struct reserve_info *re;
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
%token DT_MEMRESERVE
|
|
|
|
%token <addr> DT_ADDR
|
2005-06-08 09:18:34 +02:00
|
|
|
%token <str> DT_PROPNAME
|
|
|
|
%token <str> DT_NODENAME
|
2007-02-15 17:59:27 +01:00
|
|
|
%token <cbase> DT_BASE
|
|
|
|
%token <str> DT_CELL
|
2005-06-08 09:18:34 +02:00
|
|
|
%token <byte> DT_BYTE
|
|
|
|
%token <data> DT_STRING
|
2005-06-16 06:36:37 +02:00
|
|
|
%token <str> DT_LABEL
|
2005-06-16 09:04:00 +02:00
|
|
|
%token <str> DT_REF
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
%type <data> propdata
|
2007-02-07 06:37:50 +01:00
|
|
|
%type <data> propdataprefix
|
2005-07-15 09:14:24 +02:00
|
|
|
%type <re> memreserve
|
2005-10-24 10:18:38 +02:00
|
|
|
%type <re> memreserves
|
2007-02-15 17:59:27 +01:00
|
|
|
%type <cbase> opt_cell_base
|
2005-06-08 09:18:34 +02:00
|
|
|
%type <data> celllist
|
|
|
|
%type <data> bytestring
|
|
|
|
%type <prop> propdef
|
|
|
|
%type <proplist> proplist
|
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
%type <node> devicetree
|
2005-06-08 09:18:34 +02:00
|
|
|
%type <node> nodedef
|
|
|
|
%type <node> subnode
|
|
|
|
%type <nodelist> subnodes
|
2005-06-16 06:36:37 +02:00
|
|
|
%type <str> label
|
|
|
|
%type <str> nodename
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
%%
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
sourcefile:
|
|
|
|
memreserves devicetree
|
|
|
|
{
|
2005-07-15 09:14:24 +02:00
|
|
|
the_boot_info = build_boot_info($1, $2);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
memreserves:
|
2007-10-23 16:28:54 +02:00
|
|
|
/* empty */
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-23 16:28:54 +02:00
|
|
|
$$ = NULL;
|
2005-07-15 09:14:24 +02:00
|
|
|
}
|
2007-10-23 16:28:54 +02:00
|
|
|
| memreserve memreserves
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-23 16:28:54 +02:00
|
|
|
$$ = chain_reserve_entry($1, $2);
|
2005-07-15 09:14:24 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
memreserve:
|
|
|
|
label DT_MEMRESERVE DT_ADDR DT_ADDR ';'
|
|
|
|
{
|
2007-07-07 08:18:49 +02:00
|
|
|
$$ = build_reserve_entry($3, $4, $1);
|
2005-07-15 09:14:24 +02:00
|
|
|
}
|
2007-10-18 16:42:16 +02:00
|
|
|
| label DT_MEMRESERVE DT_ADDR '-' DT_ADDR ';'
|
|
|
|
{
|
2007-07-07 08:18:49 +02:00
|
|
|
$$ = build_reserve_entry($3, $5 - $3 + 1, $1);
|
2005-07-15 09:14:24 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
devicetree:
|
|
|
|
'/' nodedef
|
|
|
|
{
|
2005-07-15 09:14:24 +02:00
|
|
|
$$ = name_node($2, "", NULL);
|
|
|
|
}
|
2005-06-08 09:18:34 +02:00
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
nodedef:
|
|
|
|
'{' proplist subnodes '}' ';'
|
|
|
|
{
|
2005-06-08 09:18:34 +02:00
|
|
|
$$ = build_node($2, $3);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
proplist:
|
2007-10-23 16:28:54 +02:00
|
|
|
/* empty */
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-23 16:28:54 +02:00
|
|
|
$$ = NULL;
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
2007-10-22 23:09:56 +02:00
|
|
|
| proplist propdef
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-22 23:09:56 +02:00
|
|
|
$$ = chain_property($2, $1);
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
propdef:
|
|
|
|
label DT_PROPNAME '=' propdata ';'
|
|
|
|
{
|
2005-06-16 06:36:37 +02:00
|
|
|
$$ = build_property($2, $4, $1);
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
2007-10-18 16:42:16 +02:00
|
|
|
| label DT_PROPNAME ';'
|
|
|
|
{
|
2005-06-17 06:32:32 +02:00
|
|
|
$$ = build_property($2, empty_data, $1);
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
propdata:
|
|
|
|
propdataprefix DT_STRING
|
|
|
|
{
|
|
|
|
$$ = data_merge($1, $2);
|
|
|
|
}
|
|
|
|
| propdataprefix '<' celllist '>'
|
|
|
|
{
|
|
|
|
$$ = data_merge(data_append_align($1,
|
|
|
|
sizeof(cell_t)), $3);
|
|
|
|
}
|
|
|
|
| propdataprefix '[' bytestring ']'
|
|
|
|
{
|
|
|
|
$$ = data_merge($1, $3);
|
|
|
|
}
|
|
|
|
| propdata DT_LABEL
|
|
|
|
{
|
|
|
|
$$ = data_add_label($1, $2);
|
2007-02-07 06:37:50 +01:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
propdataprefix:
|
2007-10-23 16:28:54 +02:00
|
|
|
/* empty */
|
|
|
|
{
|
|
|
|
$$ = empty_data;
|
|
|
|
}
|
|
|
|
| propdata ','
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
| propdataprefix DT_LABEL
|
|
|
|
{
|
|
|
|
$$ = data_add_label($1, $2);
|
|
|
|
}
|
2005-06-08 09:18:34 +02:00
|
|
|
;
|
|
|
|
|
2007-02-15 17:59:27 +01:00
|
|
|
opt_cell_base:
|
|
|
|
/* empty */
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
|
|
|
$$ = 16;
|
|
|
|
}
|
2007-02-15 17:59:27 +01:00
|
|
|
| DT_BASE
|
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
celllist:
|
2007-10-23 16:28:54 +02:00
|
|
|
/* empty */
|
|
|
|
{
|
|
|
|
$$ = empty_data;
|
|
|
|
}
|
|
|
|
| celllist opt_cell_base DT_CELL
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-02-15 17:59:27 +01:00
|
|
|
$$ = data_append_cell($1,
|
2007-02-16 16:33:54 +01:00
|
|
|
cell_from_string($3, $2));
|
2007-02-15 17:59:27 +01:00
|
|
|
}
|
2007-10-18 16:42:16 +02:00
|
|
|
| celllist DT_REF
|
|
|
|
{
|
2005-06-16 09:04:00 +02:00
|
|
|
$$ = data_append_cell(data_add_fixup($1, $2), -1);
|
|
|
|
}
|
2007-10-18 16:42:16 +02:00
|
|
|
| celllist DT_LABEL
|
|
|
|
{
|
|
|
|
$$ = data_add_label($1, $2);
|
|
|
|
}
|
2005-06-08 09:18:34 +02:00
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
bytestring:
|
2007-10-23 16:28:54 +02:00
|
|
|
/* empty */
|
|
|
|
{
|
|
|
|
$$ = empty_data;
|
|
|
|
}
|
|
|
|
| bytestring DT_BYTE
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
|
|
|
$$ = data_append_byte($1, $2);
|
|
|
|
}
|
|
|
|
| bytestring DT_LABEL
|
|
|
|
{
|
|
|
|
$$ = data_add_label($1, $2);
|
|
|
|
}
|
2005-06-08 09:18:34 +02:00
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
subnodes:
|
2007-10-23 16:28:54 +02:00
|
|
|
/* empty */
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-23 16:28:54 +02:00
|
|
|
$$ = NULL;
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
2007-10-23 16:28:54 +02:00
|
|
|
| subnode subnodes
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-23 16:28:54 +02:00
|
|
|
$$ = chain_node($1, $2);
|
2007-10-18 16:42:16 +02:00
|
|
|
}
|
2005-06-08 09:18:34 +02:00
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
subnode:
|
|
|
|
label nodename nodedef
|
|
|
|
{
|
|
|
|
$$ = name_node($3, $2, $1);
|
|
|
|
}
|
2005-06-16 06:36:37 +02:00
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
nodename:
|
|
|
|
DT_NODENAME
|
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
| DT_PROPNAME
|
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2005-06-16 06:36:37 +02:00
|
|
|
;
|
|
|
|
|
2007-10-18 16:42:16 +02:00
|
|
|
label:
|
2007-10-23 16:28:54 +02:00
|
|
|
/* empty */
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-23 16:28:54 +02:00
|
|
|
$$ = NULL;
|
2007-10-18 16:42:16 +02:00
|
|
|
}
|
2007-10-23 16:28:54 +02:00
|
|
|
| DT_LABEL
|
2007-10-18 16:42:16 +02:00
|
|
|
{
|
2007-10-23 16:28:54 +02:00
|
|
|
$$ = $1;
|
2007-10-18 16:42:16 +02:00
|
|
|
}
|
2005-06-08 09:18:34 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
void yyerror (char const *s)
|
|
|
|
{
|
2007-03-23 21:18:41 +01:00
|
|
|
const char *fname = srcpos_filename_for_num(yylloc.filenum);
|
|
|
|
|
|
|
|
if (strcmp(fname, "-") == 0)
|
|
|
|
fname = "stdin";
|
|
|
|
|
|
|
|
fprintf(stderr, "%s:%d %s\n",
|
|
|
|
fname, yylloc.first_line, s);
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
2007-02-16 16:33:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert a string representation of a numeric cell
|
|
|
|
* in the given base into a cell.
|
|
|
|
*
|
2007-07-07 08:18:48 +02:00
|
|
|
* FIXME: should these specification errors be fatal instead?
|
2007-02-16 16:33:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
cell_t cell_from_string(char *s, unsigned int base)
|
|
|
|
{
|
|
|
|
cell_t c;
|
2007-07-07 08:18:48 +02:00
|
|
|
char *e;
|
|
|
|
|
|
|
|
c = strtoul(s, &e, base);
|
|
|
|
if (*e) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Line %d: Invalid cell value '%s' : "
|
|
|
|
"%c is not a base %d digit; %d assumed\n",
|
|
|
|
yylloc.first_line, s, *e, base, c);
|
|
|
|
}
|
2007-02-16 16:33:54 +01:00
|
|
|
|
|
|
|
if (errno == EINVAL || errno == ERANGE) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Line %d: Invalid cell value '%s'; %d assumed\n",
|
|
|
|
yylloc.first_line, s, c);
|
2007-07-07 08:18:48 +02:00
|
|
|
errno = 0;
|
2007-02-16 16:33:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|