2010-05-05 13:19:50 +02:00
|
|
|
/*
|
|
|
|
* sconfig, coreboot device tree compiler
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 coresystems GmbH
|
|
|
|
* written by Patrick Georgi <patrick.georgi@coresystems.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
Remove address from GPLv2 headers
As per discussion with lawyers[tm], it's not a good idea to
shorten the license header too much - not for legal reasons
but because there are tools that look for them, and giving
them a standard pattern simplifies things.
However, we got confirmation that we don't have to update
every file ever added to coreboot whenever the FSF gets a
new lease, but can drop the address instead.
util/kconfig is excluded because that's imported code that
we may want to synchronize every now and then.
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} +
$ find * -type f
-a \! -name \*.patch \
-a \! -name \*_shipped \
-a \! -name LICENSE_GPL \
-a \! -name LGPL.txt \
-a \! -name COPYING \
-a \! -name DISCLAIMER \
-exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} +
Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/9233
Tested-by: build bot (Jenkins)
Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
2015-03-26 15:17:45 +01:00
|
|
|
* Foundation, Inc.
|
2010-05-05 13:19:50 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
enum devtype { chip, device };
|
|
|
|
|
|
|
|
struct resource;
|
|
|
|
struct resource {
|
|
|
|
int type;
|
|
|
|
int index;
|
|
|
|
int base;
|
|
|
|
struct resource *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reg;
|
|
|
|
struct reg {
|
|
|
|
char *key;
|
|
|
|
char *value;
|
|
|
|
struct reg *next;
|
|
|
|
};
|
|
|
|
|
2012-06-21 22:19:48 +02:00
|
|
|
struct pci_irq_info {
|
|
|
|
int ioapic_irq_pin;
|
|
|
|
int ioapic_dst_id;
|
|
|
|
};
|
2010-05-05 13:19:50 +02:00
|
|
|
struct device;
|
|
|
|
struct device {
|
|
|
|
int id;
|
|
|
|
int enabled;
|
|
|
|
int used;
|
|
|
|
int multidev;
|
|
|
|
int link;
|
|
|
|
int rescnt;
|
|
|
|
int chiph_exists;
|
2011-03-01 20:58:15 +01:00
|
|
|
int subsystem_vendor;
|
|
|
|
int subsystem_device;
|
|
|
|
int inherit_subsystem;
|
2010-05-05 13:19:50 +02:00
|
|
|
char *ops;
|
|
|
|
char *name;
|
|
|
|
char *name_underscore;
|
|
|
|
char *path;
|
|
|
|
int path_a;
|
|
|
|
int path_b;
|
|
|
|
int bustype;
|
2012-06-21 22:19:48 +02:00
|
|
|
struct pci_irq_info pci_irq_info[4];
|
2010-05-05 13:19:50 +02:00
|
|
|
enum devtype type;
|
|
|
|
struct device *parent;
|
|
|
|
struct device *bus;
|
|
|
|
struct device *next;
|
|
|
|
struct device *nextdev;
|
|
|
|
struct device *children;
|
|
|
|
struct device *latestchild;
|
|
|
|
struct device *next_sibling;
|
|
|
|
struct device *sibling;
|
|
|
|
struct device *chip;
|
|
|
|
struct resource *res;
|
|
|
|
struct reg *reg;
|
|
|
|
};
|
|
|
|
|
2010-05-05 14:05:25 +02:00
|
|
|
struct device *head;
|
2010-05-05 13:19:50 +02:00
|
|
|
|
|
|
|
struct header;
|
|
|
|
struct header {
|
|
|
|
char *name;
|
2012-10-07 15:08:32 +02:00
|
|
|
int chiph_exists;
|
2010-05-05 13:19:50 +02:00
|
|
|
struct header *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
void fold_in(struct device *parent);
|
|
|
|
|
|
|
|
void postprocess_devtree(void);
|
2010-05-05 14:05:25 +02:00
|
|
|
struct device *new_chip(struct device *parent, struct device *bus, char *path);
|
2010-05-05 13:19:50 +02:00
|
|
|
void add_header(struct device *dev);
|
2010-05-05 14:05:25 +02:00
|
|
|
struct device *new_device(struct device *parent, struct device *busdev, const int bus, const char *devnum, int enabled);
|
2010-05-05 13:19:50 +02:00
|
|
|
void alias_siblings(struct device *d);
|
2010-05-05 14:05:25 +02:00
|
|
|
void add_resource(struct device *dev, int type, int index, int base);
|
|
|
|
void add_register(struct device *dev, char *name, char *val);
|
2011-03-01 20:58:15 +01:00
|
|
|
void add_pci_subsystem_ids(struct device *dev, int vendor, int device, int inherit);
|