2005-06-08 09:18:34 +02:00
|
|
|
/*
|
|
|
|
* (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
|
|
|
|
*
|
2007-09-18 03:44:04 +02:00
|
|
|
*
|
2005-06-08 09:18:34 +02:00
|
|
|
* 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; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
2007-09-18 03:44:04 +02:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
2005-06-08 09:18:34 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dtc.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tree building functions
|
|
|
|
*/
|
|
|
|
|
2005-06-16 06:36:37 +02:00
|
|
|
struct property *build_property(char *name, struct data val, char *label)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
|
|
|
struct property *new = xmalloc(sizeof(*new));
|
|
|
|
|
|
|
|
new->name = name;
|
|
|
|
new->val = val;
|
|
|
|
|
|
|
|
new->next = NULL;
|
|
|
|
|
2005-06-16 06:36:37 +02:00
|
|
|
new->label = label;
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct property *chain_property(struct property *first, struct property *list)
|
|
|
|
{
|
|
|
|
assert(first->next == NULL);
|
2007-09-18 03:44:04 +02:00
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
first->next = list;
|
2007-09-18 03:44:04 +02:00
|
|
|
return first;
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
|
|
|
|
2007-10-22 23:09:56 +02:00
|
|
|
struct property *reverse_properties(struct property *first)
|
|
|
|
{
|
|
|
|
struct property *p = first;
|
|
|
|
struct property *head = NULL;
|
|
|
|
struct property *next;
|
|
|
|
|
|
|
|
while (p) {
|
|
|
|
next = p->next;
|
|
|
|
p->next = head;
|
|
|
|
head = p;
|
|
|
|
p = next;
|
|
|
|
}
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
struct node *build_node(struct property *proplist, struct node *children)
|
|
|
|
{
|
|
|
|
struct node *new = xmalloc(sizeof(*new));
|
|
|
|
struct node *child;
|
|
|
|
|
|
|
|
memset(new, 0, sizeof(*new));
|
|
|
|
|
2007-10-22 23:09:56 +02:00
|
|
|
new->proplist = reverse_properties(proplist);
|
2005-06-08 09:18:34 +02:00
|
|
|
new->children = children;
|
|
|
|
|
|
|
|
for_each_child(new, child) {
|
|
|
|
child->parent = new;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2005-06-16 06:36:37 +02:00
|
|
|
struct node *name_node(struct node *node, char *name, char * label)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
|
|
|
assert(node->name == NULL);
|
|
|
|
|
|
|
|
node->name = name;
|
2005-06-16 06:36:37 +02:00
|
|
|
|
|
|
|
node->label = label;
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct node *chain_node(struct node *first, struct node *list)
|
|
|
|
{
|
|
|
|
assert(first->next_sibling == NULL);
|
|
|
|
|
|
|
|
first->next_sibling = list;
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_property(struct node *node, struct property *prop)
|
|
|
|
{
|
2005-10-21 09:26:45 +02:00
|
|
|
struct property **p;
|
|
|
|
|
|
|
|
prop->next = NULL;
|
|
|
|
|
|
|
|
p = &node->proplist;
|
|
|
|
while (*p)
|
|
|
|
p = &((*p)->next);
|
|
|
|
|
|
|
|
*p = prop;
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void add_child(struct node *parent, struct node *child)
|
|
|
|
{
|
2005-10-21 09:26:45 +02:00
|
|
|
struct node **p;
|
|
|
|
|
|
|
|
child->next_sibling = NULL;
|
|
|
|
|
|
|
|
p = &parent->children;
|
|
|
|
while (*p)
|
|
|
|
p = &((*p)->next_sibling);
|
|
|
|
|
|
|
|
*p = child;
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
|
|
|
|
2008-06-25 05:53:07 +02:00
|
|
|
struct reserve_info *build_reserve_entry(uint64_t address, uint64_t size,
|
|
|
|
char *label)
|
2005-10-24 10:18:38 +02:00
|
|
|
{
|
|
|
|
struct reserve_info *new = xmalloc(sizeof(*new));
|
|
|
|
|
|
|
|
new->re.address = address;
|
|
|
|
new->re.size = size;
|
|
|
|
|
|
|
|
new->next = NULL;
|
|
|
|
|
|
|
|
new->label = label;
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct reserve_info *chain_reserve_entry(struct reserve_info *first,
|
|
|
|
struct reserve_info *list)
|
|
|
|
{
|
|
|
|
assert(first->next == NULL);
|
|
|
|
|
|
|
|
first->next = list;
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct reserve_info *add_reserve_entry(struct reserve_info *list,
|
|
|
|
struct reserve_info *new)
|
|
|
|
{
|
|
|
|
struct reserve_info *last;
|
|
|
|
|
|
|
|
new->next = NULL;
|
|
|
|
|
|
|
|
if (! list)
|
|
|
|
return new;
|
|
|
|
|
|
|
|
for (last = list; last->next; last = last->next)
|
|
|
|
;
|
|
|
|
|
|
|
|
last->next = new;
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2007-10-18 09:22:30 +02:00
|
|
|
struct boot_info *build_boot_info(struct reserve_info *reservelist,
|
2008-06-25 05:53:07 +02:00
|
|
|
struct node *tree, uint32_t boot_cpuid_phys)
|
2007-10-18 09:22:30 +02:00
|
|
|
{
|
|
|
|
struct boot_info *bi;
|
|
|
|
|
|
|
|
bi = xmalloc(sizeof(*bi));
|
|
|
|
bi->reservelist = reservelist;
|
|
|
|
bi->dt = tree;
|
2008-05-16 05:22:57 +02:00
|
|
|
bi->boot_cpuid_phys = boot_cpuid_phys;
|
2007-10-18 09:22:30 +02:00
|
|
|
|
|
|
|
return bi;
|
|
|
|
}
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
/*
|
|
|
|
* Tree accessor functions
|
|
|
|
*/
|
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
const char *get_unitname(struct node *node)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
|
|
|
if (node->name[node->basenamelen] == '\0')
|
|
|
|
return "";
|
|
|
|
else
|
|
|
|
return node->name + node->basenamelen + 1;
|
|
|
|
}
|
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
struct property *get_property(struct node *node, const char *propname)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
|
|
|
struct property *prop;
|
|
|
|
|
|
|
|
for_each_property(node, prop)
|
|
|
|
if (streq(prop->name, propname))
|
|
|
|
return prop;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-01 06:49:26 +01:00
|
|
|
cell_t propval_cell(struct property *prop)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
|
|
|
assert(prop->val.len == sizeof(cell_t));
|
|
|
|
return be32_to_cpu(*((cell_t *)prop->val.val));
|
|
|
|
}
|
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
struct node *get_subnode(struct node *node, const char *nodename)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
|
|
|
struct node *child;
|
|
|
|
|
2005-06-16 09:04:00 +02:00
|
|
|
for_each_child(node, child)
|
|
|
|
if (streq(child->name, nodename))
|
|
|
|
return child;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
struct node *get_node_by_path(struct node *tree, const char *path)
|
2005-06-16 09:04:00 +02:00
|
|
|
{
|
2007-12-04 04:26:15 +01:00
|
|
|
const char *p;
|
2005-06-16 09:04:00 +02:00
|
|
|
struct node *child;
|
|
|
|
|
|
|
|
if (!path || ! (*path))
|
|
|
|
return tree;
|
|
|
|
|
|
|
|
while (path[0] == '/')
|
|
|
|
path++;
|
|
|
|
|
|
|
|
p = strchr(path, '/');
|
|
|
|
|
|
|
|
for_each_child(tree, child) {
|
|
|
|
if (p && strneq(path, child->name, p-path))
|
|
|
|
return get_node_by_path(child, p+1);
|
|
|
|
else if (!p && streq(path, child->name))
|
2005-06-08 09:18:34 +02:00
|
|
|
return child;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
dtc: Flexible tree checking infrastructure (v2)
dtc: Flexible tree checking infrastructure
Here, at last, is a substantial start on revising dtc's infrastructure
for checking the tree; this is the rework I've been saying was
necessary practically since dtc was first release.
In the new model, we have a table of "check" structures, each with a
name, references to checking functions, and status variables. Each
check can (in principle) be individually switched off or on (as either
a warning or error). Checks have a list of prerequisites, so if
checks need to rely on results from earlier checks to make sense (or
even to avoid crashing) they just need to list the relevant other
checks there.
For now, only the "structural" checks and the fixups for phandle
references are converted to the new mechanism. The rather more
involved semantic checks (which is where this new mechanism will
really be useful) will have to be converted in future patches.
At present, there's no user interface for turning on/off the checks -
the -f option now forces output even if "error" level checks fail.
Again, future patches will be needed to add the fine-grained control,
but that should be quite straightforward with the infrastructure
implemented here.
Also adds a testcase for the handling of bad references, which catches
a bug encountered while developing this patch.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-22 04:38:07 +01:00
|
|
|
struct node *get_node_by_label(struct node *tree, const char *label)
|
2007-02-07 04:29:07 +01:00
|
|
|
{
|
|
|
|
struct node *child, *node;
|
|
|
|
|
|
|
|
assert(label && (strlen(label) > 0));
|
|
|
|
|
|
|
|
if (tree->label && streq(tree->label, label))
|
|
|
|
return tree;
|
|
|
|
|
|
|
|
for_each_child(tree, child) {
|
|
|
|
node = get_node_by_label(child, label);
|
|
|
|
if (node)
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-01 06:49:26 +01:00
|
|
|
struct node *get_node_by_phandle(struct node *tree, cell_t phandle)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
2007-09-18 03:44:04 +02:00
|
|
|
struct node *child, *node;
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
assert((phandle != 0) && (phandle != -1));
|
|
|
|
|
|
|
|
if (tree->phandle == phandle)
|
|
|
|
return tree;
|
|
|
|
|
|
|
|
for_each_child(tree, child) {
|
|
|
|
node = get_node_by_phandle(child, phandle);
|
|
|
|
if (node)
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-02-07 04:29:07 +01:00
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
struct node *get_node_by_ref(struct node *tree, const char *ref)
|
dtc: Flexible tree checking infrastructure (v2)
dtc: Flexible tree checking infrastructure
Here, at last, is a substantial start on revising dtc's infrastructure
for checking the tree; this is the rework I've been saying was
necessary practically since dtc was first release.
In the new model, we have a table of "check" structures, each with a
name, references to checking functions, and status variables. Each
check can (in principle) be individually switched off or on (as either
a warning or error). Checks have a list of prerequisites, so if
checks need to rely on results from earlier checks to make sense (or
even to avoid crashing) they just need to list the relevant other
checks there.
For now, only the "structural" checks and the fixups for phandle
references are converted to the new mechanism. The rather more
involved semantic checks (which is where this new mechanism will
really be useful) will have to be converted in future patches.
At present, there's no user interface for turning on/off the checks -
the -f option now forces output even if "error" level checks fail.
Again, future patches will be needed to add the fine-grained control,
but that should be quite straightforward with the infrastructure
implemented here.
Also adds a testcase for the handling of bad references, which catches
a bug encountered while developing this patch.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-22 04:38:07 +01:00
|
|
|
{
|
|
|
|
if (ref[0] == '/')
|
|
|
|
return get_node_by_path(tree, ref);
|
|
|
|
else
|
|
|
|
return get_node_by_label(tree, ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_t get_node_phandle(struct node *root, struct node *node)
|
2007-10-18 09:22:30 +02:00
|
|
|
{
|
|
|
|
static cell_t phandle = 1; /* FIXME: ick, static local */
|
|
|
|
|
|
|
|
if ((node->phandle != 0) && (node->phandle != -1))
|
|
|
|
return node->phandle;
|
|
|
|
|
|
|
|
assert(! get_property(node, "linux,phandle"));
|
|
|
|
|
|
|
|
while (get_node_by_phandle(root, phandle))
|
|
|
|
phandle++;
|
|
|
|
|
|
|
|
node->phandle = phandle;
|
|
|
|
add_property(node,
|
|
|
|
build_property("linux,phandle",
|
|
|
|
data_append_cell(empty_data, phandle),
|
|
|
|
NULL));
|
|
|
|
|
|
|
|
return node->phandle;
|
|
|
|
}
|