blob: c2a43af5cf6f44fe1b68122277c564c34fe73b03 [file] [log] [blame]
Patrick Georgiea063cb2020-05-08 19:28:13 +02001/* sconfig, coreboot device tree compiler */
Patrick Georgi7333a112020-05-08 20:48:04 +02002/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi114e7b22010-05-05 11:19:50 +00003
Tim Wawrzynczak24b4af62020-10-01 15:41:31 -06004#include <stdint.h>
Patrick Georgi114e7b22010-05-05 11:19:50 +00005#include <stdio.h>
6#include <stdlib.h>
7#include <string.h>
8#include <sys/types.h>
Patrick Georgi114e7b22010-05-05 11:19:50 +00009#include <unistd.h>
10#include <errno.h>
11
Patrick Georgi114e7b22010-05-05 11:19:50 +000012struct resource;
13struct resource {
14 int type;
15 int index;
16 int base;
17 struct resource *next;
18};
19
20struct reg;
21struct reg {
22 char *key;
23 char *value;
24 struct reg *next;
25};
26
Sven Schnelle0fa50a12012-06-21 22:19:48 +020027struct pci_irq_info {
28 int ioapic_irq_pin;
29 int ioapic_dst_id;
30};
Furquan Shaikh79e84122018-05-30 15:09:09 -070031
Duncan Laurie47b7b342020-05-15 15:39:08 -070032struct fw_config_option;
33struct fw_config_option {
34 const char *name;
Tim Wawrzynczak24b4af62020-10-01 15:41:31 -060035 uint64_t value;
Duncan Laurie47b7b342020-05-15 15:39:08 -070036 struct fw_config_option *next;
37};
Tim Wawrzynczak13e240c2021-04-28 14:03:07 -060038
39struct fw_config_field_bits;
40struct fw_config_field_bits {
41 unsigned int start_bit;
42 unsigned int end_bit;
43 struct fw_config_field_bits *next;
44};
45
Duncan Laurie47b7b342020-05-15 15:39:08 -070046struct fw_config_field;
47struct fw_config_field {
48 const char *name;
Tim Wawrzynczak13e240c2021-04-28 14:03:07 -060049 struct fw_config_field_bits *bits;
Duncan Laurie47b7b342020-05-15 15:39:08 -070050 struct fw_config_field *next;
51 struct fw_config_option *options;
52};
53struct fw_config_probe;
54struct fw_config_probe {
55 const char *field;
56 const char *option;
57 struct fw_config_probe *next;
58};
59
Nico Huberc0fc38e2022-08-06 19:02:59 +020060struct identifier {
61 const char *id;
62 struct identifier *next;
63};
64
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -070065struct chip;
66struct chip_instance {
Furquan Shaikh4ebe9532020-05-02 15:34:42 -070067 /* Monotonically increasing ID for each chip instance. */
Furquan Shaikh79e84122018-05-30 15:09:09 -070068 int id;
69
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -070070 /* Pointer to registers for this chip. */
71 struct reg *reg;
72
Nico Huber8e1ea522020-06-03 10:20:07 -070073 /* Pointer to references for this chip. */
74 struct reg *ref;
75
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -070076 /* Pointer to chip of which this is instance. */
77 struct chip *chip;
78
79 /* Pointer to next instance of the same chip. */
80 struct chip_instance *next;
Furquan Shaikh27efc502018-06-22 09:19:15 -070081
82 /*
Furquan Shaikhbbade242020-05-02 16:05:29 -070083 * Pointer to corresponding chip instance in base devicetree.
84 * a) If the chip instance belongs to the base devicetree, then this pointer is set to
85 * NULL.
86 * b) If the chip instance belongs to override tree, then this pointer is set to its
87 * corresponding chip instance in base devicetree (if it exists), else to NULL.
88 *
89 * This is useful when generating chip instances and chip_ops for a device to determine
90 * if this is the instance to emit or if there is a base chip instance to use instead.
Furquan Shaikh27efc502018-06-22 09:19:15 -070091 */
Furquan Shaikhbbade242020-05-02 16:05:29 -070092 struct chip_instance *base_chip_instance;
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -070093};
94
95struct chip {
Furquan Shaikh79e84122018-05-30 15:09:09 -070096 /* Indicates if chip header exists for this chip. */
97 int chiph_exists;
98
99 /* Name of current chip. */
100 char *name;
101
102 /* Name of current chip normalized to _. */
103 char *name_underscore;
104
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700105 /* Pointer to first instance of this chip. */
106 struct chip_instance *instance;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700107
108 /* Pointer to next chip. */
109 struct chip *next;
110};
111
Patrick Georgi114e7b22010-05-05 11:19:50 +0000112struct device;
Furquan Shaikh93198262018-06-03 04:22:17 -0700113struct bus {
114 /* Instance/ID of the bus under the device. */
Patrick Georgi114e7b22010-05-05 11:19:50 +0000115 int id;
Furquan Shaikh93198262018-06-03 04:22:17 -0700116
117 /* Pointer to device to which this bus belongs. */
118 struct device *dev;
119
120 /* Pointer to list of children. */
121 struct device *children;
122
123 /* Pointer to next bus for the device. */
124 struct bus *next_bus;
125};
126
127struct device {
Hung-Te Lin936dbe12018-09-10 10:51:26 +0800128 /* Indicates device status (enabled / hidden or not). */
Patrick Georgi114e7b22010-05-05 11:19:50 +0000129 int enabled;
Hung-Te Lin936dbe12018-09-10 10:51:26 +0800130 int hidden;
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +0000131 /* non-zero if the device should be included in all cases */
132 int mandatory;
Furquan Shaikh93198262018-06-03 04:22:17 -0700133
Furquan Shaikh93198262018-06-03 04:22:17 -0700134 /* Subsystem IDs for the device. */
Sven Schnelle270a9082011-03-01 19:58:15 +0000135 int subsystem_vendor;
136 int subsystem_device;
137 int inherit_subsystem;
Furquan Shaikh93198262018-06-03 04:22:17 -0700138
Furquan Shaikh93198262018-06-03 04:22:17 -0700139 /* Name of this device. */
Patrick Georgi114e7b22010-05-05 11:19:50 +0000140 char *name;
Furquan Shaikh93198262018-06-03 04:22:17 -0700141
Nico Huber8e1ea522020-06-03 10:20:07 -0700142 /* Alias of this device (for internal references) */
143 char *alias;
144
Furquan Shaikh93198262018-06-03 04:22:17 -0700145 /* Path of this device. */
Patrick Georgi114e7b22010-05-05 11:19:50 +0000146 char *path;
147 int path_a;
148 int path_b;
Furquan Shaikh93198262018-06-03 04:22:17 -0700149
150 /* Type of bus that exists under this device. */
Patrick Georgi114e7b22010-05-05 11:19:50 +0000151 int bustype;
Furquan Shaikh93198262018-06-03 04:22:17 -0700152
153 /* PCI IRQ info. */
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200154 struct pci_irq_info pci_irq_info[4];
Furquan Shaikh79e84122018-05-30 15:09:09 -0700155
Furquan Shaikh93198262018-06-03 04:22:17 -0700156 /* Pointer to bus of parent on which this device resides. */
157 struct bus *parent;
158
159 /* Pointer to next child under the same parent. */
Patrick Georgi114e7b22010-05-05 11:19:50 +0000160 struct device *sibling;
Furquan Shaikh93198262018-06-03 04:22:17 -0700161
162 /* Pointer to resources for this device. */
Patrick Georgi114e7b22010-05-05 11:19:50 +0000163 struct resource *res;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700164
Furquan Shaikh93198262018-06-03 04:22:17 -0700165 /* Pointer to chip instance for this device. */
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700166 struct chip_instance *chip_instance;
Furquan Shaikh93198262018-06-03 04:22:17 -0700167
168 /* Pointer to list of buses under this device. */
169 struct bus *bus;
170 /* Pointer to last bus under this device. */
171 struct bus *last_bus;
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200172
Nico Huberc0fc38e2022-08-06 19:02:59 +0200173 /* Global identifier of the ops for this device. */
174 char *ops_id;
175
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200176 /* SMBIOS slot type */
177 char *smbios_slot_type;
178
179 /* SMBIOS slot data width */
180 char *smbios_slot_data_width;
181
182 /* SMBIOS slot description for reference designation */
183 char *smbios_slot_designation;
184
185 /* SMBIOS slot length */
186 char *smbios_slot_length;
Duncan Laurie47b7b342020-05-15 15:39:08 -0700187
Angel Pons437da712021-09-03 16:51:40 +0200188 /* SMBIOS type41 fields */
189 int smbios_instance_id_valid;
190 unsigned int smbios_instance_id;
191 const char *smbios_refdes;
192
Duncan Laurie47b7b342020-05-15 15:39:08 -0700193 /* List of field+option to probe. */
194 struct fw_config_probe *probe;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000195};
196
Furquan Shaikh93198262018-06-03 04:22:17 -0700197extern struct bus *root_parent;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000198
Duncan Lauriee335c2e2020-07-29 16:28:43 -0700199struct device *new_device_raw(struct bus *parent,
200 struct chip_instance *chip_instance,
201 const int bustype, const char *devnum,
202 char *alias, int status);
203
204struct device *new_device_reference(struct bus *parent,
205 struct chip_instance *chip_instance,
206 const char *reference, int status);
Furquan Shaikh93198262018-06-03 04:22:17 -0700207
208void add_resource(struct bus *bus, int type, int index, int base);
209
210void add_pci_subsystem_ids(struct bus *bus, int vendor, int device,
Martin Rothbec07532016-08-05 18:32:18 -0600211 int inherit);
Furquan Shaikh93198262018-06-03 04:22:17 -0700212
213void add_ioapic_info(struct bus *bus, int apicid, const char *_srcpin,
Martin Rothbec07532016-08-05 18:32:18 -0600214 int irqpin);
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700215
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200216void add_slot_desc(struct bus *bus, char *type, char *length, char *designation,
217 char *data_width);
218
Angel Pons437da712021-09-03 16:51:40 +0200219void add_smbios_dev_info(struct bus *bus, long instance_id, const char *refdes);
220
Stefan Reinauer2e78aa52016-05-07 01:11:14 -0700221void yyrestart(FILE *input_file);
Furquan Shaikh79e84122018-05-30 15:09:09 -0700222
223/* Add chip data to tail of queue. */
224void chip_enqueue_tail(void *data);
225
226/* Retrieve chip data from tail of queue. */
227void *chip_dequeue_tail(void);
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700228
229struct chip_instance *new_chip_instance(char *path);
230void add_register(struct chip_instance *chip, char *name, char *val);
Nico Huber8e1ea522020-06-03 10:20:07 -0700231void add_reference(struct chip_instance *chip, char *name, char *alias);
Duncan Laurie47b7b342020-05-15 15:39:08 -0700232
233struct fw_config_field *get_fw_config_field(const char *name);
234
Tim Wawrzynczak13e240c2021-04-28 14:03:07 -0600235void add_fw_config_field_bits(struct fw_config_field *field,
236 unsigned int start_bit, unsigned int end_bit);
237
238struct fw_config_field *new_fw_config_field(const char *name, struct fw_config_field_bits *bits);
Duncan Laurie47b7b342020-05-15 15:39:08 -0700239
240void add_fw_config_option(struct fw_config_field *field, const char *name,
Tim Wawrzynczak24b4af62020-10-01 15:41:31 -0600241 uint64_t value);
Duncan Laurie47b7b342020-05-15 15:39:08 -0700242
243void add_fw_config_probe(struct bus *bus, const char *field, const char *option);
Tim Wawrzynczak13e240c2021-04-28 14:03:07 -0600244
245void append_fw_config_bits(struct fw_config_field_bits **bits,
246 unsigned int start_bit, unsigned int end_bit);
Nico Huberc0fc38e2022-08-06 19:02:59 +0200247
248void add_device_ops(struct bus *, char *ops_id);