blob: 37d487cb65044bd236ba1c2455e0ae3639604d8b [file] [log] [blame]
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00001%{
2/*
3 * sconfig, coreboot device tree compiler
4 *
5 * Copyright (C) 2010 coresystems GmbH
6 * written by Patrick Georgi <patrick.georgi@coresystems.de>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
20 */
21
22#include "sconfig.tab.h"
23
24int linenum = 0;
25%}
26%option nodebug
27%%
28[ \t]+ {}
29#.*\n {linenum++;}
30\r?\n {linenum++;}
31chip {return(CHIP);}
32device {return(DEVICE);}
33register {return(REGISTER);}
34on {yylval.number=1; return(BOOL);}
35off {yylval.number=0; return(BOOL);}
36pci {yylval.number=PCI; return(BUS);}
Sven Schnelle0fa50a12012-06-21 22:19:48 +020037ioapic {yylval.number=IOAPIC; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000038pnp {yylval.number=PNP; return(BUS);}
39i2c {yylval.number=I2C; return(BUS);}
Patrick Georgi8d313682010-05-05 13:12:42 +000040lapic {yylval.number=APIC; return(BUS);}
Stefan Reinauer0aa37c42013-02-12 15:20:54 -080041cpu_cluster {yylval.number=CPU_CLUSTER; return(BUS);}
Aaron Durbinffda804b2014-09-03 12:40:15 -050042cpu {yylval.number=CPU; return(BUS);}
Stefan Reinauer4aff4452013-02-12 14:17:15 -080043domain {yylval.number=DOMAIN; return(BUS);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000044irq {yylval.number=IRQ; return(RESOURCE);}
45drq {yylval.number=DRQ; return(RESOURCE);}
46io {yylval.number=IO; return(RESOURCE);}
Sven Schnelle0fa50a12012-06-21 22:19:48 +020047ioapic_irq {return(IOAPIC_IRQ);}
Sven Schnelle270a9082011-03-01 19:58:15 +000048inherit {return(INHERIT);}
49subsystemid {return(SUBSYSTEMID);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000050end {return(END);}
51= {return(EQUALS);}
520x[0-9a-fA-F.]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
53[0-9.]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
54[0-9a-fA-F.]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(NUMBER);}
Sven Schnelle0fa50a12012-06-21 22:19:48 +020055INT[A-D] {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(PCIINT);}
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000056\"[^\"]+\" {yylval.string = malloc(yyleng-1); strncpy(yylval.string, yytext+1, yyleng-2); yylval.string[yyleng-2]='\0'; return(STRING);}
57[^ \n\t]+ {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(STRING);}
58%%