blob: 3860569a95809281da9ba6daa4dd02ba86916ffb [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
Patrick Georgi114e7b22010-05-05 11:19:50 +000022#include "sconfig.h"
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000023
Patrick Georgi114e7b22010-05-05 11:19:50 +000024struct device *cur_parent, *cur_bus;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000025
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000026%}
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%%
Patrick Georgi114e7b22010-05-05 11:19:50 +000034devtree: devchip { postprocess_devtree(); } ;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000035
36devchip: chip | device ;
37
38devices: devices devchip | devices registers | ;
39
40devicesorresources: devicesorresources devchip | devicesorresources resource | ;
41
42chip: CHIP STRING /* == path */ {
Patrick Georgi114e7b22010-05-05 11:19:50 +000043 $<device>$ = new_chip($<string>2);
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000044 cur_parent = $<device>$;
45}
46 devices END {
47 cur_parent = $<device>3->parent;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000048 fold_in($<device>3);
Patrick Georgi114e7b22010-05-05 11:19:50 +000049 add_header($<device>3);
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000050};
51
52device: DEVICE BUS NUMBER /* == devnum */ BOOL {
Patrick Georgi114e7b22010-05-05 11:19:50 +000053 $<device>$ = new_device($<number>2, $<string>3, $<number>4);
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000054 cur_parent = $<device>$;
55 cur_bus = $<device>$;
56}
57 devicesorresources END {
58 cur_parent = $<device>5->parent;
59 cur_bus = $<device>5->bus;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000060 fold_in($<device>5);
Patrick Georgi114e7b22010-05-05 11:19:50 +000061 alias_siblings($<device>5->children);
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000062};
63
64resource: RESOURCE NUMBER /* == resnum */ EQUALS NUMBER /* == resval */
Patrick Georgi114e7b22010-05-05 11:19:50 +000065 { add_resource($<number>1, strtol($<string>2, NULL, 0), strtol($<string>4, NULL, 0)); } ;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000066
67registers: REGISTER STRING /* == regname */ EQUALS STRING /* == regval */
Patrick Georgi114e7b22010-05-05 11:19:50 +000068 { add_register($<string>2, $<string>4); } ;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000069
70%%