blob: b05831fc33e5759ef0ce7fe5c01c6a211704a02d [file] [log] [blame]
Duncan Lauriee335c2e2020-07-29 16:28:43 -07001/* A Bison parser, made by GNU Bison 3.6.3. */
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00002
Sven Schnelle0fa50a12012-06-21 22:19:48 +02003/* Bison interface for Yacc-like parsers in C
Stefan Reinauer2e78aa52016-05-07 01:11:14 -07004
Nico Huberd9b2f792020-04-28 16:28:03 +02005 Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation,
6 Inc.
Stefan Reinauer2e78aa52016-05-07 01:11:14 -07007
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00008 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, either version 3 of the License, or
11 (at your option) any later version.
Stefan Reinauer2e78aa52016-05-07 01:11:14 -070012
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000013 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
Stefan Reinauer2e78aa52016-05-07 01:11:14 -070017
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000018 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21/* As a special exception, you may create a larger work that contains
22 part or all of the Bison parser skeleton and distribute that work
23 under terms of your choice, so long as that work isn't itself a
24 parser generator using the skeleton or a modified version thereof
25 as a parser skeleton. Alternatively, if you modify or redistribute
26 the parser skeleton itself, you may (at your option) remove this
27 special exception, which will cause the skeleton and the resulting
28 Bison output files to be licensed under the GNU General Public
29 License without this special exception.
Stefan Reinauer2e78aa52016-05-07 01:11:14 -070030
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000031 This special exception was added by the Free Software Foundation in
32 version 2.2 of Bison. */
33
Duncan Lauriee335c2e2020-07-29 16:28:43 -070034/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
35 especially those whose name start with YY_ or yy_. They are
36 private implementation details that can be changed or removed. */
Nico Huberd9b2f792020-04-28 16:28:03 +020037
Duncan Laurie47b7b342020-05-15 15:39:08 -070038#ifndef YY_YY_SRC_COREBOOT_UTIL_SCONFIG_SCONFIG_TAB_H_SHIPPED_INCLUDED
39# define YY_YY_SRC_COREBOOT_UTIL_SCONFIG_SCONFIG_TAB_H_SHIPPED_INCLUDED
Stefan Reinauer2e78aa52016-05-07 01:11:14 -070040/* Debug traces. */
41#ifndef YYDEBUG
42# define YYDEBUG 0
43#endif
44#if YYDEBUG
45extern int yydebug;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000046#endif
47
Duncan Lauriee335c2e2020-07-29 16:28:43 -070048/* Token kinds. */
Stefan Reinauer2e78aa52016-05-07 01:11:14 -070049#ifndef YYTOKENTYPE
50# define YYTOKENTYPE
51 enum yytokentype
52 {
Duncan Lauriee335c2e2020-07-29 16:28:43 -070053 YYEMPTY = -2,
54 YYEOF = 0, /* "end of file" */
55 YYerror = 256, /* error */
56 YYUNDEF = 257, /* "invalid token" */
57 CHIP = 258, /* CHIP */
58 DEVICE = 259, /* DEVICE */
59 REGISTER = 260, /* REGISTER */
60 ALIAS = 261, /* ALIAS */
61 REFERENCE = 262, /* REFERENCE */
62 ASSOCIATION = 263, /* ASSOCIATION */
63 BOOL = 264, /* BOOL */
64 STATUS = 265, /* STATUS */
65 MANDATORY = 266, /* MANDATORY */
66 BUS = 267, /* BUS */
67 RESOURCE = 268, /* RESOURCE */
68 END = 269, /* END */
69 EQUALS = 270, /* EQUALS */
70 HEX = 271, /* HEX */
71 STRING = 272, /* STRING */
72 PCI = 273, /* PCI */
73 PNP = 274, /* PNP */
74 I2C = 275, /* I2C */
75 APIC = 276, /* APIC */
76 CPU_CLUSTER = 277, /* CPU_CLUSTER */
77 CPU = 278, /* CPU */
78 DOMAIN = 279, /* DOMAIN */
79 IRQ = 280, /* IRQ */
80 DRQ = 281, /* DRQ */
81 SLOT_DESC = 282, /* SLOT_DESC */
82 IO = 283, /* IO */
83 NUMBER = 284, /* NUMBER */
84 SUBSYSTEMID = 285, /* SUBSYSTEMID */
85 INHERIT = 286, /* INHERIT */
86 IOAPIC_IRQ = 287, /* IOAPIC_IRQ */
87 IOAPIC = 288, /* IOAPIC */
88 PCIINT = 289, /* PCIINT */
89 GENERIC = 290, /* GENERIC */
90 SPI = 291, /* SPI */
91 USB = 292, /* USB */
92 MMIO = 293, /* MMIO */
93 LPC = 294, /* LPC */
94 ESPI = 295, /* ESPI */
95 FW_CONFIG_TABLE = 296, /* FW_CONFIG_TABLE */
96 FW_CONFIG_FIELD = 297, /* FW_CONFIG_FIELD */
97 FW_CONFIG_OPTION = 298, /* FW_CONFIG_OPTION */
98 FW_CONFIG_PROBE = 299 /* FW_CONFIG_PROBE */
Stefan Reinauer2e78aa52016-05-07 01:11:14 -070099 };
Duncan Lauriee335c2e2020-07-29 16:28:43 -0700100 typedef enum yytokentype yytoken_kind_t;
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700101#endif
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000102
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700103/* Value type. */
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000104#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700105union YYSTYPE
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000106{
107
Furquan Shaikh93198262018-06-03 04:22:17 -0700108 struct device *dev;
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700109 struct chip_instance *chip_instance;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000110 char *string;
111 int number;
112
113
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700114};
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700115typedef union YYSTYPE YYSTYPE;
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000116# define YYSTYPE_IS_TRIVIAL 1
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000117# define YYSTYPE_IS_DECLARED 1
118#endif
119
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700120
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +0000121extern YYSTYPE yylval;
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700122
123int yyparse (void);
124
Duncan Laurie47b7b342020-05-15 15:39:08 -0700125#endif /* !YY_YY_SRC_COREBOOT_UTIL_SCONFIG_SCONFIG_TAB_H_SHIPPED_INCLUDED */