blob: 150906e7453de08c907f87e6ef6ba3c02943d19b [file] [log] [blame]
Sven Schnelle0fa50a12012-06-21 22:19:48 +02001/* A Bison parser, made by GNU Bison 2.5. */
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00002
Sven Schnelle0fa50a12012-06-21 22:19:48 +02003/* Bison interface for Yacc-like parsers in C
Patrick Georgi114e7b22010-05-05 11:19:50 +00004
Sven Schnelle0fa50a12012-06-21 22:19:48 +02005 Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
Patrick Georgi114e7b22010-05-05 11:19:50 +00006
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +00007 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
Patrick Georgi114e7b22010-05-05 11:19:50 +000011
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000012 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.
Patrick Georgi114e7b22010-05-05 11:19:50 +000016
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000017 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20/* As a special exception, you may create a larger work that contains
21 part or all of the Bison parser skeleton and distribute that work
22 under terms of your choice, so long as that work isn't itself a
23 parser generator using the skeleton or a modified version thereof
24 as a parser skeleton. Alternatively, if you modify or redistribute
25 the parser skeleton itself, you may (at your option) remove this
26 special exception, which will cause the skeleton and the resulting
27 Bison output files to be licensed under the GNU General Public
28 License without this special exception.
Patrick Georgi114e7b22010-05-05 11:19:50 +000029
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000030 This special exception was added by the Free Software Foundation in
31 version 2.2 of Bison. */
32
33
34/* Tokens. */
35#ifndef YYTOKENTYPE
36# define YYTOKENTYPE
37 /* Put the tokens into the symbol table, so that GDB and other debuggers
38 know about them. */
39 enum yytokentype {
40 CHIP = 258,
41 DEVICE = 259,
42 REGISTER = 260,
43 BOOL = 261,
44 BUS = 262,
45 RESOURCE = 263,
46 END = 264,
47 EQUALS = 265,
48 HEX = 266,
49 STRING = 267,
50 PCI = 268,
51 PNP = 269,
52 I2C = 270,
53 APIC = 271,
Stefan Reinauer0aa37c42013-02-12 15:20:54 -080054 CPU_CLUSTER = 272,
Aaron Durbinffda804b2014-09-03 12:40:15 -050055 CPU = 273,
56 DOMAIN = 274,
57 IRQ = 275,
58 DRQ = 276,
59 IO = 277,
60 NUMBER = 278,
61 SUBSYSTEMID = 279,
62 INHERIT = 280,
63 IOAPIC_IRQ = 281,
64 IOAPIC = 282,
65 PCIINT = 283
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000066 };
67#endif
68
69
70
71#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
72typedef union YYSTYPE
73{
74
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000075
76 struct device *device;
77 char *string;
78 int number;
79
80
81
Patrick Georgi7e8c9aa2010-04-08 11:37:43 +000082} YYSTYPE;
83# define YYSTYPE_IS_TRIVIAL 1
84# define yystype YYSTYPE /* obsolescent; will be withdrawn */
85# define YYSTYPE_IS_DECLARED 1
86#endif
87
88extern YYSTYPE yylval;