2010-04-08 13:37:43 +02:00
|
|
|
%{
|
|
|
|
/*
|
|
|
|
* sconfig, coreboot device tree compiler
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 coresystems GmbH
|
2016-05-07 10:11:14 +02:00
|
|
|
* written by Patrick Georgi <patrick@georgi-clan.de>
|
2010-04-08 13:37:43 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sconfig.tab.h"
|
|
|
|
|
|
|
|
int linenum = 0;
|
|
|
|
%}
|
|
|
|
%option nodebug
|
|
|
|
%%
|
2019-04-12 14:42:17 +02:00
|
|
|
[ \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);}
|
Add configurable ramstage support for minimal PCI scanning
This CL has changes that allow us to enable a configurable
ramstage, and one change that allows us to minimize PCI
scanning. Minimal scanning is a frequently requested feature.
To enable it, we add two new variables to src/Kconfig
CONFIGURABLE_RAMSTAGE
is the overall variable controlling other options for minimizing the
ramstage.
MINIMAL_PCI_SCANNING is how we indicate we wish to enable minimal
PCI scanning.
Some devices must be scanned in all cases, such as 0:0.0.
To indicate which devices we must scan, we add a new mandatory
keyword to sconfig
It is used in place of on, off, or hidden, and indicates
a device is enabled and mandatory. Mandatory
devices are always scanned. When MINIMAL_PCI_SCANNING is enabled,
ONLY mandatory devices are scanned.
We further add support in src/device/pci_device.c to manage
both MINIMAL_PCI_SCANNING and mandatory devices.
Finally, to show how this works in practice, we add mandatory
keywords to 3 devices on the qemu-q35.
TEST=
1. This is tested and working on the qemu-q35 target.
2. On CML-Hatch
Before CL:
Total Boot time: ~685ms
After CL:
Total Boot time: ~615ms
Change-Id: I2073d9f8e9297c2b02530821ebb634ea2a5c758e
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36221
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jeremy Soller <jeremy@system76.com>
2019-10-22 04:02:24 +02:00
|
|
|
hidden {yylval.number=3; return(STATUS);}
|
|
|
|
mandatory {yylval.number=5; return(STATUS);}
|
2019-04-12 14:42:17 +02:00
|
|
|
pci {yylval.number=PCI; return(BUS);}
|
|
|
|
ioapic {yylval.number=IOAPIC; return(BUS);}
|
|
|
|
pnp {yylval.number=PNP; return(BUS);}
|
|
|
|
i2c {yylval.number=I2C; return(BUS);}
|
|
|
|
lapic {yylval.number=APIC; return(BUS);}
|
|
|
|
cpu_cluster {yylval.number=CPU_CLUSTER; return(BUS);}
|
|
|
|
cpu {yylval.number=CPU; return(BUS);}
|
|
|
|
domain {yylval.number=DOMAIN; return(BUS);}
|
|
|
|
generic {yylval.number=GENERIC; return(BUS);}
|
|
|
|
mmio {yylval.number=MMIO; return(BUS);}
|
|
|
|
spi {yylval.number=SPI; return(BUS);}
|
|
|
|
usb {yylval.number=USB; return(BUS);}
|
|
|
|
irq {yylval.number=IRQ; return(RESOURCE);}
|
|
|
|
drq {yylval.number=DRQ; return(RESOURCE);}
|
|
|
|
io {yylval.number=IO; return(RESOURCE);}
|
|
|
|
ioapic_irq {return(IOAPIC_IRQ);}
|
|
|
|
inherit {return(INHERIT);}
|
|
|
|
subsystemid {return(SUBSYSTEMID);}
|
|
|
|
end {return(END);}
|
|
|
|
smbios_slot_desc {return(SLOT_DESC);}
|
|
|
|
= {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);}
|
|
|
|
INT[A-D] {yylval.string = malloc(yyleng+1); strncpy(yylval.string, yytext, yyleng); yylval.string[yyleng]='\0'; return(PCIINT);}
|
|
|
|
\"\"[^\"]+\"\" {yylval.string = malloc(yyleng-1); strncpy(yylval.string, yytext+1, yyleng-2); yylval.string[yyleng-2]='\0'; return(STRING);}
|
|
|
|
\"[^\"]+\" {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);}
|
2010-04-08 13:37:43 +02:00
|
|
|
%%
|