blob: 5e3a1d405e27a92175bdb0ef1a6ab3f5314cc8aa [file] [log] [blame]
Patrick Georgi114e7b22010-05-05 11:19:50 +00001/*
2 * sconfig, coreboot device tree compiler
3 *
4 * Copyright (C) 2010 coresystems GmbH
Stefan Reinauer2e78aa52016-05-07 01:11:14 -07005 * written by Patrick Georgi <patrick@georgi-clan.de>
Patrick Georgi114e7b22010-05-05 11:19:50 +00006 *
7 * 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; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Patrick Georgi114e7b22010-05-05 11:19:50 +000015 */
16
Patrick Georgi2dbfcb72012-05-30 16:26:30 +020017#include <ctype.h>
Werner Zehac14a402019-07-11 12:47:19 +020018/* stat.h needs to be included before commonlib/helpers.h to avoid errors.*/
19#include <sys/stat.h>
Kyösti Mälkkie29a6ac2019-03-15 17:05:19 +020020#include <commonlib/helpers.h>
Patrick Georgi114e7b22010-05-05 11:19:50 +000021#include "sconfig.h"
22#include "sconfig.tab.h"
23
Patrick Georgi7fc9e292010-07-15 15:59:07 +000024extern int linenum;
25
Furquan Shaikh27efc502018-06-22 09:19:15 -070026/*
27 * Maintains list of all the unique chip structures for the board.
28 * This is shared across base and override device trees since we need to
29 * generate headers for all chips added by both the trees.
30 */
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -070031static struct chip chip_header;
Furquan Shaikh79e84122018-05-30 15:09:09 -070032
33/*
34 * This is intentionally shared between chip and device structure ids because it
35 * is easier to track the order of parsing for chip and device.
36 */
37static int count = 0;
Patrick Georgi114e7b22010-05-05 11:19:50 +000038
Kyösti Mälkki472d9022011-12-05 20:33:55 +020039typedef enum {
Kyösti Mälkki1a2a6ee2012-03-18 20:19:28 +020040 UNSLASH,
41 SPLIT_1ST,
42 TO_LOWER,
43 TO_UPPER,
44} translate_t;
45
Furquan Shaikh93198262018-06-03 04:22:17 -070046/*
47 * Mainboard is assumed to have a root device whose bus is the parent of all the
48 * devices that are added by parsing the devicetree file. This device has a
49 * mainboard chip instance associated with it.
50 *
51 *
52 *
53 * +------------------------+ +----------------------+
Furquan Shaikhde39fc72018-06-11 04:26:45 -070054 * | Root device | | Mainboard |
55 * +---------+ (base_root_dev) +--------------->+ instance +
Furquan Shaikh93198262018-06-03 04:22:17 -070056 * | | | chip_instance | (mainboard_instance)|
57 * | +------------------------+ | |
58 * | | +----------------------+
59 * | | bus |
60 * | parent v |
61 * | +-------------------+ |
62 * | | Root bus | |
Furquan Shaikhde39fc72018-06-11 04:26:45 -070063 * +----------->+ (base_root_bus) | |
Furquan Shaikh93198262018-06-03 04:22:17 -070064 * | | |
65 * +-------------------+ |
66 * | |
67 * | children | chip
68 * v |
69 * X |
70 * (new devices will |
71 * be added here as |
72 * children) |
73 * |
74 * |
75 * |
76 * +-------+----------+
77 * | |
78 * | Mainboard chip +----------->X (new chips will be
79 * | (mainboard_chip) | added here)
80 * | |
81 * +------------------+
82 *
83 *
84 */
Furquan Shaikh39ac7972018-06-21 18:44:32 -070085
86/* Root device of primary tree. */
Furquan Shaikhde39fc72018-06-11 04:26:45 -070087static struct device base_root_dev;
Furquan Shaikh39ac7972018-06-21 18:44:32 -070088
89/* Root device of override tree (if applicable). */
90static struct device override_root_dev;
91
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -070092static struct chip_instance mainboard_instance;
93
Furquan Shaikhde39fc72018-06-11 04:26:45 -070094static struct bus base_root_bus = {
Furquan Shaikh93198262018-06-03 04:22:17 -070095 .id = 0,
Furquan Shaikhde39fc72018-06-11 04:26:45 -070096 .dev = &base_root_dev,
Furquan Shaikh93198262018-06-03 04:22:17 -070097};
98
Furquan Shaikhde39fc72018-06-11 04:26:45 -070099static struct device base_root_dev = {
Furquan Shaikh93198262018-06-03 04:22:17 -0700100 .name = "dev_root",
101 .id = 0,
102 .chip_instance = &mainboard_instance,
103 .path = " .type = DEVICE_PATH_ROOT ",
Furquan Shaikhde39fc72018-06-11 04:26:45 -0700104 .parent = &base_root_bus,
Furquan Shaikh93198262018-06-03 04:22:17 -0700105 .enabled = 1,
Furquan Shaikhde39fc72018-06-11 04:26:45 -0700106 .bus = &base_root_bus,
Furquan Shaikh93198262018-06-03 04:22:17 -0700107};
108
Furquan Shaikh39ac7972018-06-21 18:44:32 -0700109static struct bus override_root_bus = {
110 .id = 0,
111 .dev = &override_root_dev,
112};
113
114static struct device override_root_dev = {
115 .name = "override_root",
116 .id = 0,
117 /*
118 * Override tree root device points to the same mainboard chip instance
119 * as the base tree root device. It should not cause any side-effects
120 * since the mainboard chip instance pointer in override tree will just
121 * be ignored.
122 */
123 .chip_instance = &mainboard_instance,
124 .path = " .type = DEVICE_PATH_ROOT ",
Furquan Shaikh39ac7972018-06-21 18:44:32 -0700125 .parent = &override_root_bus,
126 .enabled = 1,
127 .bus = &override_root_bus,
128};
129
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700130static struct chip mainboard_chip = {
Patrick Georgi114e7b22010-05-05 11:19:50 +0000131 .name = "mainboard",
132 .name_underscore = "mainboard",
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700133 .instance = &mainboard_instance,
134};
135
136static struct chip_instance mainboard_instance = {
137 .id = 0,
138 .chip = &mainboard_chip,
Furquan Shaikh27efc502018-06-22 09:19:15 -0700139 .ref_count = 2,
Patrick Georgi114e7b22010-05-05 11:19:50 +0000140};
141
Furquan Shaikh93198262018-06-03 04:22:17 -0700142/* This is the parent of all devices added by parsing the devicetree file. */
Furquan Shaikhde39fc72018-06-11 04:26:45 -0700143struct bus *root_parent;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000144
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700145struct queue_entry {
Furquan Shaikh79e84122018-05-30 15:09:09 -0700146 void *data;
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700147 struct queue_entry *next;
148 struct queue_entry *prev;
149};
Furquan Shaikh79e84122018-05-30 15:09:09 -0700150
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700151#define S_ALLOC(_s) s_alloc(__func__, _s)
Furquan Shaikh79e84122018-05-30 15:09:09 -0700152
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700153static void *s_alloc(const char *f, size_t s)
154{
155 void *data = calloc(1, s);
156 if (!data) {
Maulik V Vaghela82e8c692018-06-08 10:32:08 +0530157 fprintf(stderr, "%s: Failed to alloc mem!\n", f);
Furquan Shaikh79e84122018-05-30 15:09:09 -0700158 exit(1);
159 }
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700160 return data;
161}
162
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700163static struct queue_entry *new_queue_entry(void *data)
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700164{
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700165 struct queue_entry *e = S_ALLOC(sizeof(*e));
Furquan Shaikh79e84122018-05-30 15:09:09 -0700166
167 e->data = data;
168 e->next = e->prev = e;
169 return e;
170}
171
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700172static void enqueue_tail(struct queue_entry **q_head, void *data)
Furquan Shaikh79e84122018-05-30 15:09:09 -0700173{
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700174 struct queue_entry *tmp = new_queue_entry(data);
175 struct queue_entry *q = *q_head;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700176
177 if (!q) {
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700178 *q_head = tmp;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700179 return;
180 }
181
182 q->prev->next = tmp;
183 tmp->prev = q->prev;
184 q->prev = tmp;
185 tmp->next = q;
186}
187
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700188static void *dequeue_tail(struct queue_entry **q_head)
Furquan Shaikh79e84122018-05-30 15:09:09 -0700189{
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700190 struct queue_entry *q = *q_head;
191 struct queue_entry *tmp;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700192 void *data;
193
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700194 if (!q)
195 return NULL;
196
197 tmp = q->prev;
198
Furquan Shaikh79e84122018-05-30 15:09:09 -0700199 if (tmp == q)
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700200 *q_head = NULL;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700201 else {
202 tmp->prev->next = q;
203 q->prev = tmp->prev;
204 }
205
206 data = tmp->data;
207 free(tmp);
208
209 return data;
210}
211
Furquan Shaikh7398ded2018-06-03 10:42:49 -0700212static void *dequeue_head(struct queue_entry **q_head)
213{
214 struct queue_entry *q = *q_head;
215 struct queue_entry *tmp = q;
216 void *data;
217
218 if (!q)
219 return NULL;
220
221 if (q->next == q)
222 *q_head = NULL;
223 else {
224 q->next->prev = q->prev;
225 q->prev->next = q->next;
226 *q_head = q->next;
227 }
228
229 data = tmp->data;
230 free(tmp);
231
232 return data;
233}
234
235static void *peek_queue_head(struct queue_entry *q_head)
236{
237 if (!q_head)
238 return NULL;
239
240 return q_head->data;
241}
242
243static struct queue_entry *chip_q_head;
244
245void chip_enqueue_tail(void *data)
246{
247 enqueue_tail(&chip_q_head, data);
248}
249
250void *chip_dequeue_tail(void)
251{
252 return dequeue_tail(&chip_q_head);
253}
254
Martin Rothbec07532016-08-05 18:32:18 -0600255int yywrap(void)
256{
Patrick Georgi114e7b22010-05-05 11:19:50 +0000257 return 1;
258}
259
Martin Rothbec07532016-08-05 18:32:18 -0600260void yyerror(char const *str)
Patrick Georgi114e7b22010-05-05 11:19:50 +0000261{
Stefan Reinauer7c1f6b82010-08-16 18:21:56 +0000262 extern char *yytext;
Martin Rothbec07532016-08-05 18:32:18 -0600263 fprintf(stderr, "line %d: %s: %s\n", linenum + 1, yytext, str);
Stefan Reinauer7c1f6b82010-08-16 18:21:56 +0000264 exit(1);
Patrick Georgi114e7b22010-05-05 11:19:50 +0000265}
266
Martin Rothbec07532016-08-05 18:32:18 -0600267char *translate_name(const char *str, translate_t mode)
Kyösti Mälkki472d9022011-12-05 20:33:55 +0200268{
Kyösti Mälkki1a2a6ee2012-03-18 20:19:28 +0200269 char *b, *c;
270 b = c = strdup(str);
271 while (c && *c) {
272 if ((mode == SPLIT_1ST) && (*c == '/')) {
273 *c = 0;
274 break;
275 }
Martin Rothbec07532016-08-05 18:32:18 -0600276 if (*c == '/')
277 *c = '_';
278 if (*c == '-')
279 *c = '_';
Kyösti Mälkki1a2a6ee2012-03-18 20:19:28 +0200280 if (mode == TO_UPPER)
Kyösti Mälkki472d9022011-12-05 20:33:55 +0200281 *c = toupper(*c);
Kyösti Mälkki1a2a6ee2012-03-18 20:19:28 +0200282 if (mode == TO_LOWER)
283 *c = tolower(*c);
284 c++;
Kyösti Mälkki472d9022011-12-05 20:33:55 +0200285 }
Kyösti Mälkki1a2a6ee2012-03-18 20:19:28 +0200286 return b;
Kyösti Mälkki472d9022011-12-05 20:33:55 +0200287}
288
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700289static struct chip *get_chip(char *path)
Martin Rothbec07532016-08-05 18:32:18 -0600290{
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700291 struct chip *h = &chip_header;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700292
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700293 while (h->next) {
294 int result = strcmp(path, h->next->name);
295 if (result == 0)
296 return h->next;
297
298 if (result < 0)
299 break;
300
301 h = h->next;
302 }
303
304 struct chip *new_chip = S_ALLOC(sizeof(struct chip));
305 new_chip->next = h->next;
306 h->next = new_chip;
307
Patrick Georgi114e7b22010-05-05 11:19:50 +0000308 new_chip->chiph_exists = 1;
309 new_chip->name = path;
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700310 new_chip->name_underscore = translate_name(path, UNSLASH);
Patrick Georgi114e7b22010-05-05 11:19:50 +0000311
312 struct stat st;
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700313 char *chip_h = S_ALLOC(strlen(path) + 18);
Stefan Reinauer76c44ae2011-10-14 12:41:46 -0700314 sprintf(chip_h, "src/%s", path);
315 if ((stat(chip_h, &st) == -1) && (errno == ENOENT)) {
Patrick Georgi92bcaa22015-11-13 09:39:22 +0100316 /* root_complex gets away without a separate directory, but
317 * exists on on pretty much all AMD chipsets.
318 */
319 if (!strstr(path, "/root_complex")) {
Kyösti Mälkki6aeb4a22013-06-11 17:00:11 +0300320 fprintf(stderr, "ERROR: Chip component %s does not exist.\n",
321 path);
322 exit(1);
323 }
Stefan Reinauer76c44ae2011-10-14 12:41:46 -0700324 }
325
Martin Roth824255e2016-08-05 17:40:39 -0600326 sprintf(chip_h, "src/%s/chip.h", path);
Kyösti Mälkki472d9022011-12-05 20:33:55 +0200327
Martin Roth824255e2016-08-05 17:40:39 -0600328 if ((stat(chip_h, &st) == -1) && (errno == ENOENT))
Martin Rothbec07532016-08-05 18:32:18 -0600329 new_chip->chiph_exists = 0;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000330
Patrick Georgi1f688802014-08-03 15:51:19 +0200331 free(chip_h);
Furquan Shaikh79e84122018-05-30 15:09:09 -0700332
Patrick Georgi114e7b22010-05-05 11:19:50 +0000333 return new_chip;
334}
335
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700336struct chip_instance *new_chip_instance(char *path)
337{
338 struct chip *chip = get_chip(path);
339 struct chip_instance *instance = S_ALLOC(sizeof(*instance));
340
341 instance->id = ++count;
342 instance->chip = chip;
343 instance->next = chip->instance;
344 chip->instance = instance;
345
346 return instance;
347}
348
Furquan Shaikh27efc502018-06-22 09:19:15 -0700349static void delete_chip_instance(struct chip_instance *ins)
350{
351
352 if (ins->ref_count == 0) {
353 printf("ERROR: ref count for chip instance is zero!!\n");
354 exit(1);
355 }
356
357 if (--ins->ref_count)
358 return;
359
360 struct chip *c = ins->chip;
361
362 /* Get pointer to first instance of the chip. */
363 struct chip_instance *i = c->instance;
364
365 /*
366 * If chip instance to be deleted is the first instance, then update
367 * instance pointer of the chip as well.
368 */
369 if (i == ins) {
370 c->instance = ins->next;
371 free(ins);
372 return;
373 }
374
375 /*
376 * Loop through the instances list of the chip to find and remove the
377 * given instance.
378 */
379 while (1) {
380 if (i == NULL) {
381 printf("ERROR: chip instance not found!\n");
382 exit(1);
383 }
384
385 if (i->next != ins) {
386 i = i->next;
387 continue;
388 }
389
390 i->next = ins->next;
391 break;
392 }
393
394 free(ins);
395}
396
Furquan Shaikh93198262018-06-03 04:22:17 -0700397/*
398 * Allocate a new bus for the provided device.
399 * - If this is the first bus being allocated under this device, then its id
400 * is set to 0 and bus and last_bus are pointed to the newly allocated bus.
401 * - If this is not the first bus under this device, then its id is set to 1
402 * plus the id of last bus and newly allocated bus is added to the list of
403 * buses under the device. last_bus is updated to point to the newly
404 * allocated bus.
405 */
406static void alloc_bus(struct device *dev)
407{
408 struct bus *bus = S_ALLOC(sizeof(*bus));
409
410 bus->dev = dev;
411
412 if (dev->last_bus == NULL) {
413 bus->id = 0;
414 dev->bus = bus;
415 } else {
416 bus->id = dev->last_bus->id + 1;
417 dev->last_bus->next_bus = bus;
418 }
419
420 dev->last_bus = bus;
421}
422
423/*
424 * Allocate a new device under the given parent. This function allocates a new
425 * device structure under the provided parent bus and allocates a bus structure
426 * under the newly allocated device.
427 */
428static struct device *alloc_dev(struct bus *parent)
429{
430 struct device *dev = S_ALLOC(sizeof(*dev));
431
432 dev->id = ++count;
433 dev->parent = parent;
434 dev->subsystem_vendor = -1;
435 dev->subsystem_device = -1;
436
437 alloc_bus(dev);
438
439 return dev;
440}
441
442/*
443 * This function scans the children of given bus to see if any device matches
444 * the new device that is requested.
445 *
446 * Returns pointer to the node if found, else NULL.
447 */
448static struct device *get_dev(struct bus *parent, int path_a, int path_b,
449 int bustype, struct chip_instance *chip_instance)
450{
451 struct device *child = parent->children;
452
453 while (child) {
454 if ((child->path_a == path_a) && (child->path_b == path_b) &&
455 (child->bustype == bustype) &&
456 (child->chip_instance == chip_instance))
457 return child;
458
459 child = child->sibling;
460 }
461
462 return NULL;
463}
464
Furquan Shaikh27efc502018-06-22 09:19:15 -0700465/*
466 * Add given node as child of the provided parent. If this is the first child of
467 * the parent, update parent->children pointer as well.
468 */
469static void set_new_child(struct bus *parent, struct device *child)
470{
471 struct device *c = parent->children;
472 if (c) {
473 while (c->sibling)
474 c = c->sibling;
475 c->sibling = child;
476 } else
477 parent->children = child;
478
479 child->sibling = NULL;
480 child->parent = parent;
481}
482
Furquan Shaikh93198262018-06-03 04:22:17 -0700483struct device *new_device(struct bus *parent,
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700484 struct chip_instance *chip_instance,
Furquan Shaikha9b64292018-05-31 07:52:00 -0700485 const int bustype, const char *devnum,
Hung-Te Lin936dbe12018-09-10 10:51:26 +0800486 int status)
Martin Rothbec07532016-08-05 18:32:18 -0600487{
Patrick Georgi114e7b22010-05-05 11:19:50 +0000488 char *tmp;
Furquan Shaikh93198262018-06-03 04:22:17 -0700489 int path_a;
490 int path_b = 0;
491 struct device *new_d;
492
493 path_a = strtol(devnum, &tmp, 16);
Patrick Georgi114e7b22010-05-05 11:19:50 +0000494 if (*tmp == '.') {
495 tmp++;
Furquan Shaikh93198262018-06-03 04:22:17 -0700496 path_b = strtol(tmp, NULL, 16);
Patrick Georgi114e7b22010-05-05 11:19:50 +0000497 }
498
Furquan Shaikh93198262018-06-03 04:22:17 -0700499 /* If device is found under parent, no need to allocate new device. */
500 new_d = get_dev(parent, path_a, path_b, bustype, chip_instance);
501 if (new_d) {
502 alloc_bus(new_d);
503 return new_d;
504 }
505
506 new_d = alloc_dev(parent);
507
508 new_d->bustype = bustype;
509
510 new_d->path_a = path_a;
511 new_d->path_b = path_b;
512
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700513 char *name = S_ALLOC(10);
Patrick Georgi114e7b22010-05-05 11:19:50 +0000514 sprintf(name, "_dev%d", new_d->id);
515 new_d->name = name;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700516
Hung-Te Lin936dbe12018-09-10 10:51:26 +0800517 new_d->enabled = status & 0x01;
518 new_d->hidden = (status >> 1) & 0x01;
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700519 new_d->chip_instance = chip_instance;
Furquan Shaikh27efc502018-06-22 09:19:15 -0700520 chip_instance->ref_count++;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000521
Furquan Shaikh27efc502018-06-22 09:19:15 -0700522 set_new_child(parent, new_d);
Patrick Georgi114e7b22010-05-05 11:19:50 +0000523
Furquan Shaikha9b64292018-05-31 07:52:00 -0700524 switch (bustype) {
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200525 case PCI:
Patrick Georgi114e7b22010-05-05 11:19:50 +0000526 new_d->path = ".type=DEVICE_PATH_PCI,{.pci={ .devfn = PCI_DEVFN(0x%x,%d)}}";
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200527 break;
528
529 case PNP:
Patrick Georgi114e7b22010-05-05 11:19:50 +0000530 new_d->path = ".type=DEVICE_PATH_PNP,{.pnp={ .port = 0x%x, .device = 0x%x }}";
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200531 break;
532
533 case I2C:
Duncan Laurieb7ce5fe2016-05-07 19:49:37 -0700534 new_d->path = ".type=DEVICE_PATH_I2C,{.i2c={ .device = 0x%x, .mode_10bit = %d }}";
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200535 break;
536
537 case APIC:
Patrick Georgi114e7b22010-05-05 11:19:50 +0000538 new_d->path = ".type=DEVICE_PATH_APIC,{.apic={ .apic_id = 0x%x }}";
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200539 break;
540
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800541 case CPU_CLUSTER:
542 new_d->path = ".type=DEVICE_PATH_CPU_CLUSTER,{.cpu_cluster={ .cluster = 0x%x }}";
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200543 break;
544
Aaron Durbinffda804b2014-09-03 12:40:15 -0500545 case CPU:
546 new_d->path = ".type=DEVICE_PATH_CPU,{.cpu={ .id = 0x%x }}";
547 break;
548
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800549 case DOMAIN:
550 new_d->path = ".type=DEVICE_PATH_DOMAIN,{.domain={ .domain = 0x%x }}";
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200551 break;
552
553 case IOAPIC:
554 new_d->path = ".type=DEVICE_PATH_IOAPIC,{.ioapic={ .ioapic_id = 0x%x }}";
555 break;
Duncan Laurie4650f5b2016-05-07 20:01:34 -0700556
557 case GENERIC:
558 new_d->path = ".type=DEVICE_PATH_GENERIC,{.generic={ .id = 0x%x, .subid = 0x%x }}";
559 break;
Furquan Shaikhe6700292017-02-11 00:50:38 -0800560
561 case SPI:
562 new_d->path = ".type=DEVICE_PATH_SPI,{.spi={ .cs = 0x%x }}";
563 break;
564
Duncan Lauriebae9f852018-05-07 14:18:13 -0700565 case USB:
566 new_d->path = ".type=DEVICE_PATH_USB,{.usb={ .port_type = %d, .port_id = %d }}";
567 break;
568
Justin TerAvestca2ed9f2018-01-17 16:36:30 -0800569 case MMIO:
570 new_d->path = ".type=DEVICE_PATH_MMIO,{.mmio={ .addr = 0x%x }}";
571 break;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000572 }
Justin TerAvestca2ed9f2018-01-17 16:36:30 -0800573
Patrick Georgi114e7b22010-05-05 11:19:50 +0000574 return new_d;
575}
576
Furquan Shaikh27efc502018-06-22 09:19:15 -0700577static void new_resource(struct device *dev, int type, int index, int base)
Martin Rothbec07532016-08-05 18:32:18 -0600578{
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700579 struct resource *r = S_ALLOC(sizeof(struct resource));
580
Patrick Georgi114e7b22010-05-05 11:19:50 +0000581 r->type = type;
582 r->index = index;
583 r->base = base;
Patrick Georgi68befd52010-05-05 12:05:25 +0000584 if (dev->res) {
585 struct resource *head = dev->res;
Martin Rothbec07532016-08-05 18:32:18 -0600586 while (head->next)
587 head = head->next;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000588 head->next = r;
589 } else {
Patrick Georgi68befd52010-05-05 12:05:25 +0000590 dev->res = r;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000591 }
Patrick Georgi114e7b22010-05-05 11:19:50 +0000592}
593
Furquan Shaikh27efc502018-06-22 09:19:15 -0700594void add_resource(struct bus *bus, int type, int index, int base)
595{
596 new_resource(bus->dev, type, index, base);
597}
598
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700599void add_register(struct chip_instance *chip_instance, char *name, char *val)
Martin Rothbec07532016-08-05 18:32:18 -0600600{
Furquan Shaikh369e1f02018-05-31 09:48:51 -0700601 struct reg *r = S_ALLOC(sizeof(struct reg));
602
Patrick Georgi114e7b22010-05-05 11:19:50 +0000603 r->key = name;
604 r->value = val;
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700605 if (chip_instance->reg) {
606 struct reg *head = chip_instance->reg;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000607 // sorting to be equal to sconfig's behaviour
608 int sort = strcmp(r->key, head->key);
609 if (sort == 0) {
610 printf("ERROR: duplicate 'register' key.\n");
611 exit(1);
612 }
Martin Rothbec07532016-08-05 18:32:18 -0600613 if (sort < 0) {
Patrick Georgi114e7b22010-05-05 11:19:50 +0000614 r->next = head;
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700615 chip_instance->reg = r;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000616 } else {
Martin Rothbec07532016-08-05 18:32:18 -0600617 while ((head->next)
618 && (strcmp(head->next->key, r->key) < 0))
619 head = head->next;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000620 r->next = head->next;
621 head->next = r;
622 }
623 } else {
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700624 chip_instance->reg = r;
Patrick Georgi114e7b22010-05-05 11:19:50 +0000625 }
626}
627
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200628void add_slot_desc(struct bus *bus, char *type, char *length, char *designation,
629 char *data_width)
630{
631 struct device *dev = bus->dev;
632
633 if (dev->bustype != PCI && dev->bustype != DOMAIN) {
634 printf("ERROR: 'slot_type' only allowed for PCI devices\n");
635 exit(1);
636 }
637
638 dev->smbios_slot_type = type;
639 dev->smbios_slot_length = length;
640 dev->smbios_slot_data_width = data_width;
641 dev->smbios_slot_designation = designation;
642}
643
Furquan Shaikh93198262018-06-03 04:22:17 -0700644void add_pci_subsystem_ids(struct bus *bus, int vendor, int device,
Martin Rothbec07532016-08-05 18:32:18 -0600645 int inherit)
Sven Schnelle270a9082011-03-01 19:58:15 +0000646{
Furquan Shaikh93198262018-06-03 04:22:17 -0700647 struct device *dev = bus->dev;
648
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800649 if (dev->bustype != PCI && dev->bustype != DOMAIN) {
Sven Schnelle270a9082011-03-01 19:58:15 +0000650 printf("ERROR: 'subsystem' only allowed for PCI devices\n");
651 exit(1);
652 }
653
654 dev->subsystem_vendor = vendor;
655 dev->subsystem_device = device;
656 dev->inherit_subsystem = inherit;
657}
658
Furquan Shaikh93198262018-06-03 04:22:17 -0700659void add_ioapic_info(struct bus *bus, int apicid, const char *_srcpin,
Martin Rothbec07532016-08-05 18:32:18 -0600660 int irqpin)
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200661{
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200662 int srcpin;
Furquan Shaikh93198262018-06-03 04:22:17 -0700663 struct device *dev = bus->dev;
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200664
Martin Rothbec07532016-08-05 18:32:18 -0600665 if (!_srcpin || strlen(_srcpin) < 4 || strncasecmp(_srcpin, "INT", 3) ||
666 _srcpin[3] < 'A' || _srcpin[3] > 'D') {
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200667 printf("ERROR: malformed ioapic_irq args: %s\n", _srcpin);
668 exit(1);
669 }
670
671 srcpin = _srcpin[3] - 'A';
672
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800673 if (dev->bustype != PCI && dev->bustype != DOMAIN) {
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200674 printf("ERROR: ioapic config only allowed for PCI devices\n");
675 exit(1);
676 }
677
678 if (srcpin > 3) {
Patrick Georgi116327e2012-07-20 12:47:06 +0200679 printf("ERROR: srcpin '%d' invalid\n", srcpin);
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200680 exit(1);
681 }
682 dev->pci_irq_info[srcpin].ioapic_irq_pin = irqpin;
683 dev->pci_irq_info[srcpin].ioapic_dst_id = apicid;
684}
685
Furquan Shaikh93198262018-06-03 04:22:17 -0700686static int dev_has_children(struct device *dev)
Martin Rothbec07532016-08-05 18:32:18 -0600687{
Furquan Shaikh93198262018-06-03 04:22:17 -0700688 struct bus *bus = dev->bus;
689
690 while (bus) {
691 if (bus->children)
692 return 1;
693 bus = bus->next_bus;
694 }
695
696 return 0;
697}
698
699static void pass0(FILE *fil, struct device *ptr, struct device *next)
700{
Furquan Shaikhde39fc72018-06-11 04:26:45 -0700701 if (ptr == &base_root_dev) {
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200702 fprintf(fil, "STORAGE struct bus %s_links[];\n",
Furquan Shaikh93198262018-06-03 04:22:17 -0700703 ptr->name);
704 return;
705 }
706
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200707 fprintf(fil, "STORAGE struct device %s;\n", ptr->name);
Furquan Shaikh4ca3a8a2018-06-07 23:36:45 -0700708 if (ptr->res)
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200709 fprintf(fil, "STORAGE struct resource %s_res[];\n",
Furquan Shaikh93198262018-06-03 04:22:17 -0700710 ptr->name);
711 if (dev_has_children(ptr))
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200712 fprintf(fil, "STORAGE struct bus %s_links[];\n",
Martin Rothbec07532016-08-05 18:32:18 -0600713 ptr->name);
Stefan Reinauer57879c92012-07-31 16:47:25 -0700714
Furquan Shaikh93198262018-06-03 04:22:17 -0700715 if (next)
716 return;
717
718 fprintf(fil,
719 "DEVTREE_CONST struct device * DEVTREE_CONST last_dev = &%s;\n",
720 ptr->name);
Patrick Georgi114e7b22010-05-05 11:19:50 +0000721}
722
Furquan Shaikh93198262018-06-03 04:22:17 -0700723static void emit_resources(FILE *fil, struct device *ptr)
724{
Furquan Shaikh4ca3a8a2018-06-07 23:36:45 -0700725 if (ptr->res == NULL)
Furquan Shaikh93198262018-06-03 04:22:17 -0700726 return;
727
728 int i = 1;
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200729 fprintf(fil, "STORAGE struct resource %s_res[] = {\n", ptr->name);
Furquan Shaikh93198262018-06-03 04:22:17 -0700730 struct resource *r = ptr->res;
731 while (r) {
732 fprintf(fil,
733 "\t\t{ .flags=IORESOURCE_FIXED | IORESOURCE_ASSIGNED | IORESOURCE_");
734 if (r->type == IRQ)
735 fprintf(fil, "IRQ");
736 if (r->type == DRQ)
737 fprintf(fil, "DRQ");
738 if (r->type == IO)
739 fprintf(fil, "IO");
740 fprintf(fil, ", .index=0x%x, .base=0x%x,", r->index,
741 r->base);
742 if (r->next)
743 fprintf(fil, ".next=&%s_res[%d]},\n", ptr->name,
744 i++);
745 else
746 fprintf(fil, ".next=NULL },\n");
747 r = r->next;
748 }
749
750 fprintf(fil, "\t };\n");
751}
752
753static void emit_bus(FILE *fil, struct bus *bus)
754{
755 fprintf(fil, "\t\t[%d] = {\n", bus->id);
756 fprintf(fil, "\t\t\t.link_num = %d,\n", bus->id);
757 fprintf(fil, "\t\t\t.dev = &%s,\n", bus->dev->name);
758 if (bus->children)
759 fprintf(fil, "\t\t\t.children = &%s,\n", bus->children->name);
760
761 if (bus->next_bus)
762 fprintf(fil, "\t\t\t.next=&%s_links[%d],\n", bus->dev->name,
763 bus->id + 1);
764 else
765 fprintf(fil, "\t\t\t.next = NULL,\n");
766 fprintf(fil, "\t\t},\n");
767}
768
769static void emit_dev_links(FILE *fil, struct device *ptr)
770{
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200771 fprintf(fil, "STORAGE struct bus %s_links[] = {\n",
Furquan Shaikh93198262018-06-03 04:22:17 -0700772 ptr->name);
773
774 struct bus *bus = ptr->bus;
775
776 while (bus) {
777 emit_bus(fil, bus);
778 bus = bus->next_bus;
779 }
780
781 fprintf(fil, "\t};\n");
782}
783
784static void pass1(FILE *fil, struct device *ptr, struct device *next)
Sven Schnelle0fa50a12012-06-21 22:19:48 +0200785{
786 int pin;
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700787 struct chip_instance *chip_ins = ptr->chip_instance;
Furquan Shaikh93198262018-06-03 04:22:17 -0700788 int has_children = dev_has_children(ptr);
Furquan Shaikh79e84122018-05-30 15:09:09 -0700789
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200790 if (ptr == &base_root_dev)
791 fprintf(fil, "DEVTREE_CONST struct device %s = {\n", ptr->name);
792 else
793 fprintf(fil, "STORAGE struct device %s = {\n", ptr->name);
794
Furquan Shaikh93198262018-06-03 04:22:17 -0700795 fprintf(fil, "#if !DEVTREE_EARLY\n");
Furquan Shaikh50ddc0b2018-06-23 00:59:31 -0700796
797 /*
798 * ops field is set to default_dev_ops_root only for the root
799 * device. For all other devices, it is set by the driver at runtime.
800 */
801 if (ptr == &base_root_dev)
802 fprintf(fil, "\t.ops = &default_dev_ops_root,\n");
803 else
804 fprintf(fil, "\t.ops = NULL,\n");
Furquan Shaikh93198262018-06-03 04:22:17 -0700805 fprintf(fil, "#endif\n");
806 fprintf(fil, "\t.bus = &%s_links[%d],\n", ptr->parent->dev->name,
807 ptr->parent->id);
808 fprintf(fil, "\t.path = {");
809 fprintf(fil, ptr->path, ptr->path_a, ptr->path_b);
810 fprintf(fil, "},\n");
811 fprintf(fil, "\t.enabled = %d,\n", ptr->enabled);
Hung-Te Lin936dbe12018-09-10 10:51:26 +0800812 fprintf(fil, "\t.hidden = %d,\n", ptr->hidden);
Furquan Shaikh93198262018-06-03 04:22:17 -0700813 fprintf(fil, "\t.on_mainboard = 1,\n");
814 if (ptr->subsystem_vendor > 0)
815 fprintf(fil, "\t.subsystem_vendor = 0x%04x,\n",
816 ptr->subsystem_vendor);
Sven Schnelle270a9082011-03-01 19:58:15 +0000817
Furquan Shaikh93198262018-06-03 04:22:17 -0700818 if (ptr->subsystem_device > 0)
819 fprintf(fil, "\t.subsystem_device = 0x%04x,\n",
820 ptr->subsystem_device);
821
Furquan Shaikh4ca3a8a2018-06-07 23:36:45 -0700822 if (ptr->res) {
Furquan Shaikh93198262018-06-03 04:22:17 -0700823 fprintf(fil, "\t.resource_list = &%s_res[0],\n",
Martin Rothbec07532016-08-05 18:32:18 -0600824 ptr->name);
Furquan Shaikh93198262018-06-03 04:22:17 -0700825 }
826 if (has_children)
827 fprintf(fil, "\t.link_list = &%s_links[0],\n",
828 ptr->name);
829 else
830 fprintf(fil, "\t.link_list = NULL,\n");
831 if (ptr->sibling)
832 fprintf(fil, "\t.sibling = &%s,\n", ptr->sibling->name);
833 fprintf(fil, "#if !DEVTREE_EARLY\n");
Kyösti Mälkki1557a672019-06-30 10:51:31 +0300834 for (pin = 0; pin < 4; pin++) {
835 if (ptr->pci_irq_info[pin].ioapic_irq_pin > 0)
836 fprintf(fil,
837 "\t.pci_irq_info[%d].ioapic_irq_pin = %d,\n",
838 pin, ptr->pci_irq_info[pin].ioapic_irq_pin);
839
840 if (ptr->pci_irq_info[pin].ioapic_dst_id > 0)
841 fprintf(fil,
842 "\t.pci_irq_info[%d].ioapic_dst_id = %d,\n",
843 pin, ptr->pci_irq_info[pin].ioapic_dst_id);
844 }
Furquan Shaikh93198262018-06-03 04:22:17 -0700845 fprintf(fil, "\t.chip_ops = &%s_ops,\n",
846 chip_ins->chip->name_underscore);
847 if (chip_ins == &mainboard_instance)
848 fprintf(fil, "\t.name = mainboard_name,\n");
849 fprintf(fil, "#endif\n");
850 if (chip_ins->chip->chiph_exists)
851 fprintf(fil, "\t.chip_info = &%s_info_%d,\n",
852 chip_ins->chip->name_underscore, chip_ins->id);
853 if (next)
Patrick Rudolphac24d3c2019-04-12 14:42:17 +0200854 fprintf(fil, "\t.next=&%s,\n", next->name);
855 if (ptr->smbios_slot_type || ptr->smbios_slot_data_width ||
856 ptr->smbios_slot_designation || ptr->smbios_slot_length) {
857 fprintf(fil, "#if !DEVTREE_EARLY\n");
858 fprintf(fil, "#if CONFIG(GENERATE_SMBIOS_TABLES)\n");
859 }
860 /* SMBIOS types start at 1, if zero it hasn't been set */
861 if (ptr->smbios_slot_type)
862 fprintf(fil, "\t.smbios_slot_type = %s,\n",
863 ptr->smbios_slot_type);
864 if (ptr->smbios_slot_data_width)
865 fprintf(fil, "\t.smbios_slot_data_width = %s,\n",
866 ptr->smbios_slot_data_width);
867 if (ptr->smbios_slot_designation)
868 fprintf(fil, "\t.smbios_slot_designation = \"%s\",\n",
869 ptr->smbios_slot_designation);
870 if (ptr->smbios_slot_length)
871 fprintf(fil, "\t.smbios_slot_length = %s,\n",
872 ptr->smbios_slot_length);
873 if (ptr->smbios_slot_type || ptr->smbios_slot_data_width ||
874 ptr->smbios_slot_designation || ptr->smbios_slot_length) {
875 fprintf(fil, "#endif\n");
876 fprintf(fil, "#endif\n");
877 }
Furquan Shaikh93198262018-06-03 04:22:17 -0700878 fprintf(fil, "};\n");
879
880 emit_resources(fil, ptr);
881
882 if (has_children)
883 emit_dev_links(fil, ptr);
884}
885
886static void add_siblings_to_queue(struct queue_entry **bfs_q_head,
887 struct device *d)
888{
889 while (d) {
890 enqueue_tail(bfs_q_head, d);
891 d = d->sibling;
892 }
893}
894
895static void add_children_to_queue(struct queue_entry **bfs_q_head,
896 struct device *d)
897{
898 struct bus *bus = d->bus;
899
900 while (bus) {
901 if (bus->children)
902 add_siblings_to_queue(bfs_q_head, bus->children);
903 bus = bus->next_bus;
Myles Watson894a3472010-06-09 22:41:35 +0000904 }
Patrick Georgi114e7b22010-05-05 11:19:50 +0000905}
906
Furquan Shaikh79e84122018-05-30 15:09:09 -0700907static void walk_device_tree(FILE *fil, struct device *ptr,
Furquan Shaikh93198262018-06-03 04:22:17 -0700908 void (*func)(FILE *, struct device *,
909 struct device *))
Martin Rothbec07532016-08-05 18:32:18 -0600910{
Furquan Shaikh93198262018-06-03 04:22:17 -0700911 struct queue_entry *bfs_q_head = NULL;
912
913 enqueue_tail(&bfs_q_head, ptr);
914
915 while ((ptr = dequeue_head(&bfs_q_head))) {
916 add_children_to_queue(&bfs_q_head, ptr);
917 func(fil, ptr, peek_queue_head(bfs_q_head));
918 }
Patrick Georgi114e7b22010-05-05 11:19:50 +0000919}
920
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700921static void emit_chip_headers(FILE *fil, struct chip *chip)
Furquan Shaikha0cc5a62018-05-30 23:46:16 -0700922{
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700923 struct chip *tmp = chip;
Furquan Shaikha0cc5a62018-05-30 23:46:16 -0700924
925 fprintf(fil, "#include <device/device.h>\n");
926 fprintf(fil, "#include <device/pci.h>\n");
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700927
928 while (chip) {
929 if (chip->chiph_exists)
930 fprintf(fil, "#include \"%s/chip.h\"\n", chip->name);
931 chip = chip->next;
Furquan Shaikha0cc5a62018-05-30 23:46:16 -0700932 }
933 fprintf(fil, "\n#if !DEVTREE_EARLY\n");
934 fprintf(fil,
935 "__attribute__((weak)) struct chip_operations mainboard_ops = {};\n");
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700936
937 chip = tmp;
938 while (chip) {
Furquan Shaikha0cc5a62018-05-30 23:46:16 -0700939 fprintf(fil,
940 "__attribute__((weak)) struct chip_operations %s_ops = {};\n",
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700941 chip->name_underscore);
942 chip = chip->next;
Furquan Shaikha0cc5a62018-05-30 23:46:16 -0700943 }
944 fprintf(fil, "#endif\n");
945}
946
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700947static void emit_chip_instance(FILE *fil, struct chip_instance *instance)
948{
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200949 fprintf(fil, "STORAGE struct %s_config %s_info_%d = {",
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700950 instance->chip->name_underscore,
951 instance->chip->name_underscore,
952 instance->id);
953
954 if (instance->reg) {
955 fprintf(fil, "\n");
956 struct reg *r = instance->reg;
957 while (r) {
958 fprintf(fil, "\t.%s = %s,\n", r->key, r->value);
959 r = r->next;
960 }
961 }
962 fprintf(fil, "};\n\n");
963}
964
Furquan Shaikh79e84122018-05-30 15:09:09 -0700965static void emit_chips(FILE *fil)
966{
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700967 struct chip *chip = chip_header.next;
968 struct chip_instance *instance;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700969
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700970 emit_chip_headers(fil, chip);
Furquan Shaikha0cc5a62018-05-30 23:46:16 -0700971
Kyösti Mälkki5ccce7c2019-03-15 10:04:11 +0200972 fprintf(fil, "\n#define STORAGE static __unused DEVTREE_CONST\n\n");
973
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700974 for (; chip; chip = chip->next) {
Furquan Shaikh79e84122018-05-30 15:09:09 -0700975 if (!chip->chiph_exists)
976 continue;
977
Furquan Shaikhc56ae2f2018-05-31 10:33:16 -0700978 instance = chip->instance;
979 while (instance) {
980 emit_chip_instance(fil, instance);
981 instance = instance->next;
Furquan Shaikh79e84122018-05-30 15:09:09 -0700982 }
983 }
984}
985
Furquan Shaikh93198262018-06-03 04:22:17 -0700986static void inherit_subsystem_ids(FILE *file, struct device *dev,
987 struct device *next)
Sven Schnelle270a9082011-03-01 19:58:15 +0000988{
989 struct device *p;
Sven Schnelle270a9082011-03-01 19:58:15 +0000990
991 if (dev->subsystem_vendor != -1 && dev->subsystem_device != -1) {
992 /* user already gave us a subsystem vendor/device */
993 return;
994 }
995
Furquan Shaikh93198262018-06-03 04:22:17 -0700996 for (p = dev; p && p->parent->dev != p; p = p->parent->dev) {
Sven Schnelle270a9082011-03-01 19:58:15 +0000997
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800998 if (p->bustype != PCI && p->bustype != DOMAIN)
Sven Schnelle270a9082011-03-01 19:58:15 +0000999 continue;
1000
1001 if (p->inherit_subsystem) {
1002 dev->subsystem_vendor = p->subsystem_vendor;
1003 dev->subsystem_device = p->subsystem_device;
1004 break;
1005 }
1006 }
1007}
1008
Kyösti Mälkki472d9022011-12-05 20:33:55 +02001009static void usage(void)
1010{
Furquan Shaikh39ac7972018-06-21 18:44:32 -07001011 printf("usage: sconfig devicetree_file output_file [override_devicetree_file]\n");
Martin Rothbec07532016-08-05 18:32:18 -06001012 exit(1);
Kyösti Mälkki472d9022011-12-05 20:33:55 +02001013}
1014
Martin Roth32051702015-11-24 12:34:16 -07001015enum {
Martin Rothc9c27bb2016-08-05 18:15:06 -06001016 DEVICEFILE_ARG = 1,
Furquan Shaikh39ac7972018-06-21 18:44:32 -07001017 OUTPUTFILE_ARG,
1018 OVERRIDE_DEVICEFILE_ARG,
Martin Rothbec07532016-08-05 18:32:18 -06001019};
Martin Roth32051702015-11-24 12:34:16 -07001020
Furquan Shaikh39ac7972018-06-21 18:44:32 -07001021#define MANDATORY_ARG_COUNT 3
1022#define OPTIONAL_ARG_COUNT 1
1023#define TOTAL_ARG_COUNT (MANDATORY_ARG_COUNT + OPTIONAL_ARG_COUNT)
Kyösti Mälkki472d9022011-12-05 20:33:55 +02001024
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001025static void parse_devicetree(const char *file, struct bus *parent)
Martin Rothbec07532016-08-05 18:32:18 -06001026{
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001027 FILE *filec = fopen(file, "r");
Stefan Reinauer7c1f6b82010-08-16 18:21:56 +00001028 if (!filec) {
Stefan Reinauer7c1f6b82010-08-16 18:21:56 +00001029 perror(NULL);
1030 exit(1);
1031 }
1032
Patrick Georgi114e7b22010-05-05 11:19:50 +00001033 yyrestart(filec);
1034
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001035 root_parent = parent;
1036 linenum = 0;
1037
Patrick Georgi114e7b22010-05-05 11:19:50 +00001038 yyparse();
Stefan Reinauer7c1f6b82010-08-16 18:21:56 +00001039
Patrick Georgi114e7b22010-05-05 11:19:50 +00001040 fclose(filec);
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001041}
1042
Furquan Shaikh27efc502018-06-22 09:19:15 -07001043/*
1044 * Match device nodes from base and override tree to see if they are the same
1045 * node.
1046 */
1047static int device_match(struct device *a, struct device *b)
1048{
1049 return ((a->path_a == b->path_a) &&
1050 (a->path_b == b->path_b) &&
1051 (a->bustype == b->bustype) &&
1052 (a->chip_instance->chip ==
1053 b->chip_instance->chip));
1054}
1055
1056/*
1057 * Walk through the override subtree in breadth-first manner starting at node to
1058 * see if chip_instance pointer of the node is same as chip_instance pointer of
1059 * override parent that is passed into the function. If yes, then update the
1060 * chip_instance pointer of the node to chip_instance pointer of the base
1061 * parent.
1062 */
1063static void update_chip_pointers(struct device *node,
1064 struct chip_instance *base_parent_ci,
1065 struct chip_instance *override_parent_ci)
1066{
1067 struct queue_entry *q_head = NULL;
1068
1069 enqueue_tail(&q_head, node);
1070
1071 while ((node = dequeue_head(&q_head))) {
1072 if (node->chip_instance != override_parent_ci)
1073 continue;
1074 node->chip_instance = base_parent_ci;
1075 add_children_to_queue(&q_head, node);
1076 }
1077}
1078
1079/*
1080 * Add resource to device. If resource is already present, then update its base
1081 * and index. If not, then add a new resource to the device.
1082 */
1083static void update_resource(struct device *dev, struct resource *res)
1084{
1085 struct resource *base_res = dev->res;
1086
1087 while (base_res) {
1088 if (base_res->type == res->type) {
1089 base_res->index = res->index;
1090 base_res->base = res->base;
1091 return;
1092 }
1093 base_res = base_res->next;
1094 }
1095
1096 new_resource(dev, res->type, res->index, res->base);
1097}
1098
1099/*
1100 * Add register to chip instance. If register is already present, then update
1101 * its value. If not, then add a new register to the chip instance.
1102 */
1103static void update_register(struct chip_instance *c, struct reg *reg)
1104{
1105 struct reg *base_reg = c->reg;
1106
1107 while (base_reg) {
1108 if (!strcmp(base_reg->key, reg->key)) {
1109 base_reg->value = reg->value;
1110 return;
1111 }
1112 base_reg = base_reg->next;
1113 }
1114
1115 add_register(c, reg->key, reg->value);
1116}
1117
1118static void override_devicetree(struct bus *base_parent,
1119 struct bus *override_parent);
1120
1121/*
1122 * Update the base device properties using the properties of override device. In
1123 * addition to that, call override_devicetree for all the buses under the
1124 * override device.
1125 *
1126 * Override Rules:
1127 * +--------------------+--------------------------------------------+
1128 * | | |
1129 * |struct device member| Rule |
1130 * | | |
1131 * +-----------------------------------------------------------------+
1132 * | | |
1133 * | id | Unchanged. This is used to generate device |
1134 * | | structure name in static.c. So, no need to |
1135 * | | override. |
1136 * | | |
1137 * +-----------------------------------------------------------------+
1138 * | | |
1139 * | enabled | Copy enabled state from override device. |
1140 * | | This allows variants to override device |
1141 * | | state. |
1142 * | | |
1143 * +-----------------------------------------------------------------+
1144 * | | |
1145 * | subsystem_vendor | Copy from override device only if any one |
1146 * | subsystem_device | of the ids is non-zero. |
1147 * | | |
1148 * +-----------------------------------------------------------------+
1149 * | | |
1150 * | inherit_subsystem | Copy from override device only if it is |
1151 * | | non-zero. This allows variant to only |
1152 * | | enable inherit flag for a device. |
1153 * | | |
1154 * +-----------------------------------------------------------------+
1155 * | | |
1156 * | path | Unchanged since these are same for both |
1157 * | path_a | base and override device (Used for |
1158 * | path_b | matching devices). |
1159 * | | |
1160 * +-----------------------------------------------------------------+
1161 * | | |
1162 * | bustype | Unchanged since this is same for both base |
1163 * | | and override device (User for matching |
1164 * | | devices). |
1165 * | | |
1166 * +-----------------------------------------------------------------+
1167 * | | |
1168 * | pci_irq_info | Unchanged. |
1169 * | | |
1170 * +-----------------------------------------------------------------+
1171 * | | |
1172 * | parent | Unchanged. This is meaningful only within |
1173 * | sibling | the parse tree, hence not being copied. |
1174 * | | |
1175 * +-----------------------------------------------------------------+
1176 * | | |
1177 * | res | Each resource that is present in override |
1178 * | | device is copied over to base device: |
1179 * | | 1. If resource of same type is present in |
1180 * | | base device, then index and base of the |
1181 * | | resource is copied. |
1182 * | | 2. If not, then a new resource is allocated|
1183 * | | under the base device using type, index |
1184 * | | and base from override res. |
1185 * | | |
1186 * +-----------------------------------------------------------------+
1187 * | | |
1188 * | chip_instance | Each register of chip_instance is copied |
1189 * | | over from override device to base device: |
1190 * | | 1. If register with same key is present in |
1191 * | | base device, then value of the register |
1192 * | | is copied. |
1193 * | | 2. If not, then a new register is allocated|
1194 * | | under the base chip_instance using key |
1195 * | | and value from override register. |
1196 * | | |
1197 * +-----------------------------------------------------------------+
1198 * | | |
1199 * | bus | Recursively call override_devicetree on |
1200 * | last_bus | each bus of override device. It is assumed |
1201 * | | that bus with id X under base device |
1202 * | | to bus with id X under override device. If |
1203 * | | override device has more buses than base |
1204 * | | device, then new buses are allocated under |
1205 * | | base device. |
1206 * | | |
1207 * +-----------------------------------------------------------------+
1208 */
1209static void update_device(struct device *base_dev, struct device *override_dev)
1210{
1211 /*
1212 * Copy the enabled state of override device to base device. This allows
1213 * override tree to enable or disable a particular device.
1214 */
1215 base_dev->enabled = override_dev->enabled;
1216
1217 /*
1218 * Copy subsystem vendor and device ids from override device to base
1219 * device only if the ids are non-zero in override device. Else, honor
1220 * the values in base device.
1221 */
1222 if (override_dev->subsystem_vendor ||
1223 override_dev->subsystem_device) {
1224 base_dev->subsystem_vendor = override_dev->subsystem_vendor;
1225 base_dev->subsystem_device = override_dev->subsystem_device;
1226 }
1227
1228 /*
1229 * Copy value of inherity_subsystem from override device to base device
1230 * only if it is non-zero in override device. This allows override
1231 * tree to only enable inhert flag for a device.
1232 */
1233 if (override_dev->inherit_subsystem)
1234 base_dev->inherit_subsystem = override_dev->inherit_subsystem;
1235
1236 /*
1237 * Copy resources of override device to base device.
1238 * 1. If resource is already present in base device, then index and base
1239 * of the resource will be copied over.
1240 * 2. If resource is not already present in base device, a new resource
1241 * will be allocated.
1242 */
1243 struct resource *res = override_dev->res;
1244 while (res) {
1245 update_resource(base_dev, res);
1246 res = res->next;
1247 }
1248
1249 /*
1250 * Copy registers of override chip instance to base chip instance.
1251 * 1. If register key is already present in base chip instance, then
1252 * value for the register is copied over.
1253 * 2. If register key is not already present in base chip instance, then
1254 * a new register will be allocated.
1255 */
1256 struct reg *reg = override_dev->chip_instance->reg;
1257 while (reg) {
1258 update_register(base_dev->chip_instance, reg);
1259 reg = reg->next;
1260 }
1261
1262 /*
1263 * Now that the device properties are all copied over, look at each bus
1264 * of the override device and run override_devicetree in a recursive
1265 * manner. The assumption here is that first bus of override device
1266 * corresponds to first bus of base device and so on. If base device has
1267 * lesser buses than override tree, then new buses are allocated for it.
1268 */
1269 struct bus *override_bus = override_dev->bus;
1270 struct bus *base_bus = base_dev->bus;
1271
1272 while (override_bus) {
1273
1274 /*
1275 * If we have more buses in override tree device, then allocate
1276 * a new bus for the base tree device as well.
1277 */
1278 if (!base_bus) {
1279 alloc_bus(base_dev);
1280 base_bus = base_dev->last_bus;
1281 }
1282
1283 override_devicetree(base_dev->bus, override_dev->bus);
1284
1285 override_bus = override_bus->next_bus;
1286 base_bus = base_bus->next_bus;
1287 }
1288
1289 delete_chip_instance(override_dev->chip_instance);
1290 override_dev->chip_instance = NULL;
1291}
1292
1293/*
1294 * Perform copy of device and properties from override parent to base parent.
1295 * This function walks through the override tree in a depth-first manner
1296 * performing following actions:
1297 * 1. If matching device is found in base tree, then copy the properties of
1298 * override device to base tree device. Call override_devicetree recursively on
1299 * the bus of override device.
1300 * 2. If matching device is not found in base tree, then set override tree
1301 * device as new child of base_parent and update the chip pointers in override
1302 * device subtree to ensure the nodes do not point to override tree chip
1303 * instance.
1304 */
1305static void override_devicetree(struct bus *base_parent,
1306 struct bus *override_parent)
1307{
1308 struct device *base_child;
1309 struct device *override_child = override_parent->children;
1310 struct device *next_child;
1311
1312 while (override_child) {
1313
1314 /* Look for a matching device in base tree. */
1315 for (base_child = base_parent->children;
1316 base_child; base_child = base_child->sibling) {
1317 if (device_match(base_child, override_child))
1318 break;
1319 }
1320
1321 next_child = override_child->sibling;
1322
1323 /*
1324 * If matching device is found, copy properties of
1325 * override_child to base_child.
1326 */
1327 if (base_child)
1328 update_device(base_child, override_child);
1329 else {
1330 /*
1331 * If matching device is not found, set override_child
1332 * as a new child of base_parent.
1333 */
1334 set_new_child(base_parent, override_child);
1335 /*
1336 * Ensure all nodes in override tree pointing to
1337 * override parent chip_instance now point to base
1338 * parent chip_instance.
1339 */
1340 update_chip_pointers(override_child,
1341 base_parent->dev->chip_instance,
1342 override_parent->dev->chip_instance);
1343 }
1344
1345 override_child = next_child;
1346 }
1347}
1348
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001349int main(int argc, char **argv)
1350{
Furquan Shaikh39ac7972018-06-21 18:44:32 -07001351 if ((argc < MANDATORY_ARG_COUNT) || (argc > TOTAL_ARG_COUNT))
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001352 usage();
1353
Furquan Shaikh39ac7972018-06-21 18:44:32 -07001354 const char *base_devtree = argv[DEVICEFILE_ARG];
1355 const char *outputc = argv[OUTPUTFILE_ARG];
1356 const char *override_devtree;
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001357
1358 parse_devicetree(base_devtree, &base_root_bus);
Patrick Georgi114e7b22010-05-05 11:19:50 +00001359
Furquan Shaikh39ac7972018-06-21 18:44:32 -07001360 if (argc == TOTAL_ARG_COUNT) {
1361 override_devtree = argv[OVERRIDE_DEVICEFILE_ARG];
1362 parse_devicetree(override_devtree, &override_root_bus);
Furquan Shaikh27efc502018-06-22 09:19:15 -07001363
Furquan Shaikh4d99b272019-04-11 15:13:25 -07001364 if (!dev_has_children(&override_root_dev)) {
1365 fprintf(stderr, "ERROR: Override tree needs at least one device!\n");
1366 exit(1);
1367 }
1368
Furquan Shaikh27efc502018-06-22 09:19:15 -07001369 override_devicetree(&base_root_bus, &override_root_bus);
Furquan Shaikh39ac7972018-06-21 18:44:32 -07001370 }
1371
Kyösti Mälkki472d9022011-12-05 20:33:55 +02001372 FILE *autogen = fopen(outputc, "w");
1373 if (!autogen) {
Martin Rothbec07532016-08-05 18:32:18 -06001374 fprintf(stderr, "Could not open file '%s' for writing: ",
1375 outputc);
Stefan Reinauer7c1f6b82010-08-16 18:21:56 +00001376 perror(NULL);
1377 exit(1);
1378 }
1379
Furquan Shaikh79e84122018-05-30 15:09:09 -07001380 emit_chips(autogen);
1381
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001382 walk_device_tree(autogen, &base_root_dev, inherit_subsystem_ids);
Martin Roth824255e2016-08-05 17:40:39 -06001383 fprintf(autogen, "\n/* pass 0 */\n");
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001384 walk_device_tree(autogen, &base_root_dev, pass0);
Furquan Shaikh93198262018-06-03 04:22:17 -07001385 fprintf(autogen, "\n/* pass 1 */\n");
Furquan Shaikhde39fc72018-06-11 04:26:45 -07001386 walk_device_tree(autogen, &base_root_dev, pass1);
Sven Schnelle270a9082011-03-01 19:58:15 +00001387
Kyösti Mälkki472d9022011-12-05 20:33:55 +02001388 fclose(autogen);
Stefan Reinauer7c1f6b82010-08-16 18:21:56 +00001389
Patrick Georgi114e7b22010-05-05 11:19:50 +00001390 return 0;
1391}