sched: retune wake granularity
[wrt350n-kernel.git] / arch / powerpc / boot / dtc-src / livetree.c
blob6ba0846b4310a5dd97e0ae4729afbe8a4203af4d
1 /*
2 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
21 #include "dtc.h"
24 * Tree building functions
27 struct property *build_property(char *name, struct data val, char *label)
29 struct property *new = xmalloc(sizeof(*new));
31 new->name = name;
32 new->val = val;
34 new->next = NULL;
36 new->label = label;
38 return new;
41 struct property *chain_property(struct property *first, struct property *list)
43 assert(first->next == NULL);
45 first->next = list;
46 return first;
49 struct property *reverse_properties(struct property *first)
51 struct property *p = first;
52 struct property *head = NULL;
53 struct property *next;
55 while (p) {
56 next = p->next;
57 p->next = head;
58 head = p;
59 p = next;
61 return head;
64 struct node *build_node(struct property *proplist, struct node *children)
66 struct node *new = xmalloc(sizeof(*new));
67 struct node *child;
69 memset(new, 0, sizeof(*new));
71 new->proplist = reverse_properties(proplist);
72 new->children = children;
74 for_each_child(new, child) {
75 child->parent = new;
78 return new;
81 struct node *name_node(struct node *node, char *name, char * label)
83 assert(node->name == NULL);
85 node->name = name;
87 node->label = label;
89 return node;
92 struct node *chain_node(struct node *first, struct node *list)
94 assert(first->next_sibling == NULL);
96 first->next_sibling = list;
97 return first;
100 void add_property(struct node *node, struct property *prop)
102 struct property **p;
104 prop->next = NULL;
106 p = &node->proplist;
107 while (*p)
108 p = &((*p)->next);
110 *p = prop;
113 void add_child(struct node *parent, struct node *child)
115 struct node **p;
117 child->next_sibling = NULL;
119 p = &parent->children;
120 while (*p)
121 p = &((*p)->next_sibling);
123 *p = child;
126 struct reserve_info *build_reserve_entry(u64 address, u64 size, char *label)
128 struct reserve_info *new = xmalloc(sizeof(*new));
130 new->re.address = address;
131 new->re.size = size;
133 new->next = NULL;
135 new->label = label;
137 return new;
140 struct reserve_info *chain_reserve_entry(struct reserve_info *first,
141 struct reserve_info *list)
143 assert(first->next == NULL);
145 first->next = list;
146 return first;
149 struct reserve_info *add_reserve_entry(struct reserve_info *list,
150 struct reserve_info *new)
152 struct reserve_info *last;
154 new->next = NULL;
156 if (! list)
157 return new;
159 for (last = list; last->next; last = last->next)
162 last->next = new;
164 return list;
167 struct boot_info *build_boot_info(struct reserve_info *reservelist,
168 struct node *tree)
170 struct boot_info *bi;
172 bi = xmalloc(sizeof(*bi));
173 bi->reservelist = reservelist;
174 bi->dt = tree;
176 return bi;
180 * Tree accessor functions
183 const char *get_unitname(struct node *node)
185 if (node->name[node->basenamelen] == '\0')
186 return "";
187 else
188 return node->name + node->basenamelen + 1;
191 struct property *get_property(struct node *node, const char *propname)
193 struct property *prop;
195 for_each_property(node, prop)
196 if (streq(prop->name, propname))
197 return prop;
199 return NULL;
202 cell_t propval_cell(struct property *prop)
204 assert(prop->val.len == sizeof(cell_t));
205 return be32_to_cpu(*((cell_t *)prop->val.val));
208 struct node *get_subnode(struct node *node, const char *nodename)
210 struct node *child;
212 for_each_child(node, child)
213 if (streq(child->name, nodename))
214 return child;
216 return NULL;
219 struct node *get_node_by_path(struct node *tree, const char *path)
221 const char *p;
222 struct node *child;
224 if (!path || ! (*path))
225 return tree;
227 while (path[0] == '/')
228 path++;
230 p = strchr(path, '/');
232 for_each_child(tree, child) {
233 if (p && strneq(path, child->name, p-path))
234 return get_node_by_path(child, p+1);
235 else if (!p && streq(path, child->name))
236 return child;
239 return NULL;
242 struct node *get_node_by_label(struct node *tree, const char *label)
244 struct node *child, *node;
246 assert(label && (strlen(label) > 0));
248 if (tree->label && streq(tree->label, label))
249 return tree;
251 for_each_child(tree, child) {
252 node = get_node_by_label(child, label);
253 if (node)
254 return node;
257 return NULL;
260 struct node *get_node_by_phandle(struct node *tree, cell_t phandle)
262 struct node *child, *node;
264 assert((phandle != 0) && (phandle != -1));
266 if (tree->phandle == phandle)
267 return tree;
269 for_each_child(tree, child) {
270 node = get_node_by_phandle(child, phandle);
271 if (node)
272 return node;
275 return NULL;
278 struct node *get_node_by_ref(struct node *tree, const char *ref)
280 if (ref[0] == '/')
281 return get_node_by_path(tree, ref);
282 else
283 return get_node_by_label(tree, ref);
286 cell_t get_node_phandle(struct node *root, struct node *node)
288 static cell_t phandle = 1; /* FIXME: ick, static local */
290 if ((node->phandle != 0) && (node->phandle != -1))
291 return node->phandle;
293 assert(! get_property(node, "linux,phandle"));
295 while (get_node_by_phandle(root, phandle))
296 phandle++;
298 node->phandle = phandle;
299 add_property(node,
300 build_property("linux,phandle",
301 data_append_cell(empty_data, phandle),
302 NULL));
304 return node->phandle;