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
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2010-05-05 13:19:50 +02:00
|
|
|
#include "sconfig.h"
|
2010-04-08 13:37:43 +02:00
|
|
|
|
2010-05-05 14:05:25 +02:00
|
|
|
static struct device *cur_parent, *cur_bus;
|
2010-04-08 13:37:43 +02:00
|
|
|
|
|
|
|
%}
|
|
|
|
%union {
|
|
|
|
struct device *device;
|
|
|
|
char *string;
|
|
|
|
int number;
|
|
|
|
}
|
2011-03-01 20:58:15 +01:00
|
|
|
|
2013-02-13 00:20:54 +01:00
|
|
|
%token CHIP DEVICE REGISTER BOOL BUS RESOURCE END EQUALS HEX STRING PCI PNP I2C APIC CPU_CLUSTER DOMAIN IRQ DRQ IO NUMBER SUBSYSTEMID INHERIT IOAPIC_IRQ IOAPIC PCIINT
|
2010-04-08 13:37:43 +02:00
|
|
|
%%
|
2010-05-05 15:13:47 +02:00
|
|
|
devtree: { cur_parent = cur_bus = head; } chip { postprocess_devtree(); } ;
|
2010-04-08 13:37:43 +02:00
|
|
|
|
2010-05-05 15:13:47 +02:00
|
|
|
chipchildren: chipchildren device | chipchildren chip | chipchildren registers | /* empty */ ;
|
2010-04-08 13:37:43 +02:00
|
|
|
|
2012-06-21 22:19:48 +02:00
|
|
|
devicechildren: devicechildren device | devicechildren chip | devicechildren resource | devicechildren subsystemid | devicechildren ioapic_irq | /* empty */ ;
|
2010-04-08 13:37:43 +02:00
|
|
|
|
|
|
|
chip: CHIP STRING /* == path */ {
|
2010-05-05 14:05:25 +02:00
|
|
|
$<device>$ = new_chip(cur_parent, cur_bus, $<string>2);
|
2010-04-08 13:37:43 +02:00
|
|
|
cur_parent = $<device>$;
|
|
|
|
}
|
2010-05-05 15:13:47 +02:00
|
|
|
chipchildren END {
|
2010-04-08 13:37:43 +02:00
|
|
|
cur_parent = $<device>3->parent;
|
|
|
|
fold_in($<device>3);
|
2010-05-05 13:19:50 +02:00
|
|
|
add_header($<device>3);
|
2010-04-08 13:37:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
device: DEVICE BUS NUMBER /* == devnum */ BOOL {
|
2010-05-05 14:05:25 +02:00
|
|
|
$<device>$ = new_device(cur_parent, cur_bus, $<number>2, $<string>3, $<number>4);
|
2010-04-08 13:37:43 +02:00
|
|
|
cur_parent = $<device>$;
|
|
|
|
cur_bus = $<device>$;
|
|
|
|
}
|
2010-05-05 15:13:47 +02:00
|
|
|
devicechildren END {
|
2010-04-08 13:37:43 +02:00
|
|
|
cur_parent = $<device>5->parent;
|
|
|
|
cur_bus = $<device>5->bus;
|
|
|
|
fold_in($<device>5);
|
2010-05-05 13:19:50 +02:00
|
|
|
alias_siblings($<device>5->children);
|
2010-04-08 13:37:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
resource: RESOURCE NUMBER /* == resnum */ EQUALS NUMBER /* == resval */
|
2010-05-05 14:05:25 +02:00
|
|
|
{ add_resource(cur_parent, $<number>1, strtol($<string>2, NULL, 0), strtol($<string>4, NULL, 0)); } ;
|
2010-04-08 13:37:43 +02:00
|
|
|
|
|
|
|
registers: REGISTER STRING /* == regname */ EQUALS STRING /* == regval */
|
2010-05-05 14:05:25 +02:00
|
|
|
{ add_register(cur_parent, $<string>2, $<string>4); } ;
|
2010-04-08 13:37:43 +02:00
|
|
|
|
2011-03-01 20:58:15 +01:00
|
|
|
subsystemid: SUBSYSTEMID NUMBER NUMBER
|
|
|
|
{ add_pci_subsystem_ids(cur_parent, strtol($<string>2, NULL, 16), strtol($<string>3, NULL, 16), 0); };
|
|
|
|
|
|
|
|
subsystemid: SUBSYSTEMID NUMBER NUMBER INHERIT
|
|
|
|
{ add_pci_subsystem_ids(cur_parent, strtol($<string>2, NULL, 16), strtol($<string>3, NULL, 16), 1); };
|
|
|
|
|
2012-06-21 22:19:48 +02:00
|
|
|
ioapic_irq: IOAPIC_IRQ NUMBER PCIINT NUMBER
|
|
|
|
{ add_ioapic_info(cur_parent, strtol($<string>2, NULL, 16), $<string>3, strtol($<string>4, NULL, 16)); };
|
2010-04-08 13:37:43 +02:00
|
|
|
%%
|