sconfig: Make cur_bus and cur_parent local to the parser.
[coreboot.git] / util / sconfig / sconfig.y
1 %{
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.h"
23
24 static struct device *cur_parent, *cur_bus;
25
26 %}
27 %union {
28         struct device *device;
29         char *string;
30         int number;
31 }
32 %token CHIP DEVICE REGISTER BOOL BUS RESOURCE END EQUALS HEX STRING PCI PNP I2C APIC APIC_CLUSTER PCI_DOMAIN IRQ DRQ IO NUMBER
33 %%
34 devtree: { cur_parent = cur_bus = head; } devchip { postprocess_devtree(); } ;
35
36 devchip: chip | device ;
37
38 devices: devices devchip | devices registers | ;
39
40 devicesorresources: devicesorresources devchip | devicesorresources resource | ;
41
42 chip: CHIP STRING /* == path */ {
43         $<device>$ = new_chip(cur_parent, cur_bus, $<string>2);
44         cur_parent = $<device>$;
45 }
46         devices END {
47         cur_parent = $<device>3->parent;
48         fold_in($<device>3);
49         add_header($<device>3);
50 };
51
52 device: DEVICE BUS NUMBER /* == devnum */ BOOL {
53         $<device>$ = new_device(cur_parent, cur_bus, $<number>2, $<string>3, $<number>4);
54         cur_parent = $<device>$;
55         cur_bus = $<device>$;
56 }
57         devicesorresources END {
58         cur_parent = $<device>5->parent;
59         cur_bus = $<device>5->bus;
60         fold_in($<device>5);
61         alias_siblings($<device>5->children);
62 };
63
64 resource: RESOURCE NUMBER /* == resnum */ EQUALS NUMBER /* == resval */
65         { add_resource(cur_parent, $<number>1, strtol($<string>2, NULL, 0), strtol($<string>4, NULL, 0)); } ;
66
67 registers: REGISTER STRING /* == regname */ EQUALS STRING /* == regval */
68         { add_register(cur_parent, $<string>2, $<string>4); } ;
69
70 %%