2010-04-08 13:37:43 +02:00
|
|
|
%{
|
|
|
|
/*
|
|
|
|
* sconfig, coreboot device tree compiler
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 coresystems GmbH
|
|
|
|
* written by Patrick Georgi <patrick.georgi@coresystems.de>
|
|
|
|
*
|
|
|
|
* 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* 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
|
Remove address from GPLv2 headers
As per discussion with lawyers[tm], it's not a good idea to
shorten the license header too much - not for legal reasons
but because there are tools that look for them, and giving
them a standard pattern simplifies things.
However, we got confirmation that we don't have to update
every file ever added to coreboot whenever the FSF gets a
new lease, but can drop the address instead.
util/kconfig is excluded because that's imported code that
we may want to synchronize every now and then.
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} +
$ find * -type f
-a \! -name \*.patch \
-a \! -name \*_shipped \
-a \! -name LICENSE_GPL \
-a \! -name LGPL.txt \
-a \! -name COPYING \
-a \! -name DISCLAIMER \
-exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} +
Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/9233
Tested-by: build bot (Jenkins)
Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
2015-03-26 15:17:45 +01:00
|
|
|
* Foundation, Inc.
|
2010-04-08 13:37:43 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sconfig.tab.h"
|
|
|
|
|
|
|
|
int linenum = 0;
|
|
|
|
%}
|
|
|
|
%option nodebug
|
|
|
|
%%
|
|
|
|
[ \t]+ {}
|
|
|
|
#.*\n {linenum++;}
|
|
|
|
\r?\n {linenum++;}
|
|
|
|
chip {return(CHIP);}
|
|
|
|
device {return(DEVICE);}
|
|
|
|
register {return(REGISTER);}
|
|
|
|
on {yylval.number=1; return(BOOL);}
|
|
|
|
off {yylval.number=0; return(BOOL);}
|
|
|
|
pci {yylval.number=PCI; return(BUS);}
|
2012-06-21 22:19:48 +02:00
|
|
|
ioapic {yylval.number=IOAPIC; return(BUS);}
|
2010-04-08 13:37:43 +02:00
|
|
|
pnp {yylval.number=PNP; return(BUS);}
|
|
|
|
i2c {yylval.number=I2C; return(BUS);}
|
2010-05-05 15:12:42 +02:00
|
|
|
lapic {yylval.number=APIC; return(BUS);}
|
2013-02-13 00:20:54 +01:00
|
|
|
cpu_cluster {yylval.number=CPU_CLUSTER; return(BUS);}
|
2014-09-03 19:40:15 +02:00
|
|
|
cpu {yylval.number=CPU; return(BUS);}
|
2013-02-12 23:17:15 +01:00
|
|
|
domain {yylval.number=DOMAIN; return(BUS);}
|
2010-04-08 13:37:43 +02:00
|
|
|
irq {yylval.number=IRQ; return(RESOURCE);}
|
|
|
|
drq {yylval.number=DRQ; return(RESOURCE);}
|
|
|
|
io {yylval.number=IO; return(RESOURCE);}
|
2012-06-21 22:19:48 +02:00
|
|
|
ioapic_irq {return(IOAPIC_IRQ);}
|
2011-03-01 20:58:15 +01:00
|
|
|
inherit {return(INHERIT);}
|
|
|
|
subsystemid {return(SUBSYSTEMID);}
|
2010-04-08 13:37:43 +02:00
|
|
|
end {return(END);}
|
|
|
|
= {return(EQUALS);}
|
|
|
|
0x[0-9a-fA-F.]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
|
|
|
|
[0-9.]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
|
|
|
|
[0-9a-fA-F.]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
|
2012-06-21 22:19:48 +02:00
|
|
|
INT[A-D] {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(PCIINT);}
|
2010-04-08 13:37:43 +02:00
|
|
|
\"[^\"]+\" {yylval.string = malloc(yyleng-1); strncpy(yylval.string, yytext+1, yyleng-2); yylval.string[yyleng-2]='\0'; return(STRING);}
|
|
|
|
[^ \n\t]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(STRING);}
|
|
|
|
%%
|