util/sconfig: Remove unused ioapic and irq keywords

Ioapic information in the devicetree was only used to set up mptables
but this generic driver was removed (ca5a793 drivers/generic/ioapic:
Drop poor implementation).

This removes the unused remainders from mainboard devicetrees.
Remove ioapic setup from sconfig.

Change-Id: Ib3fef0bf923ab3f02f3aeed2e55cf662a3dc3a1b
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71789
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
This commit is contained in:
Arthur Heymans
2023-01-10 15:22:58 +01:00
committed by Felix Held
parent 8b8400a889
commit e84b095d3a
12 changed files with 367 additions and 513 deletions

View File

@@ -83,21 +83,19 @@ extern int yydebug;
NUMBER = 284, /* NUMBER */
SUBSYSTEMID = 285, /* SUBSYSTEMID */
INHERIT = 286, /* INHERIT */
IOAPIC_IRQ = 287, /* IOAPIC_IRQ */
IOAPIC = 288, /* IOAPIC */
PCIINT = 289, /* PCIINT */
GENERIC = 290, /* GENERIC */
SPI = 291, /* SPI */
USB = 292, /* USB */
MMIO = 293, /* MMIO */
GPIO = 294, /* GPIO */
MDIO = 295, /* MDIO */
FW_CONFIG_TABLE = 296, /* FW_CONFIG_TABLE */
FW_CONFIG_FIELD = 297, /* FW_CONFIG_FIELD */
FW_CONFIG_OPTION = 298, /* FW_CONFIG_OPTION */
FW_CONFIG_PROBE = 299, /* FW_CONFIG_PROBE */
PIPE = 300, /* PIPE */
OPS = 301 /* OPS */
PCIINT = 287, /* PCIINT */
GENERIC = 288, /* GENERIC */
SPI = 289, /* SPI */
USB = 290, /* USB */
MMIO = 291, /* MMIO */
GPIO = 292, /* GPIO */
MDIO = 293, /* MDIO */
FW_CONFIG_TABLE = 294, /* FW_CONFIG_TABLE */
FW_CONFIG_FIELD = 295, /* FW_CONFIG_FIELD */
FW_CONFIG_OPTION = 296, /* FW_CONFIG_OPTION */
FW_CONFIG_PROBE = 297, /* FW_CONFIG_PROBE */
PIPE = 298, /* PIPE */
OPS = 299 /* OPS */
};
typedef enum yytokentype yytoken_kind_t;
#endif