1 /* prom_common.c: OF device tree support common code.
3 * Paul Mackerras August 1996.
4 * Copyright (C) 1996-2005 Paul Mackerras.
6 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
7 * {engebret|bergner}@us.ibm.com
9 * Adapted for sparc by David S. Miller davem@davemloft.net
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/errno.h>
20 #include <linux/mutex.h>
21 #include <linux/slab.h>
24 #include <asm/oplib.h>
28 struct device_node *of_console_device;
29 EXPORT_SYMBOL(of_console_device);
31 char *of_console_path;
32 EXPORT_SYMBOL(of_console_path);
34 char *of_console_options;
35 EXPORT_SYMBOL(of_console_options);
37 struct device_node *of_find_node_by_phandle(phandle handle)
39 struct device_node *np;
41 for (np = allnodes; np; np = np->allnext)
42 if (np->node == handle)
47 EXPORT_SYMBOL(of_find_node_by_phandle);
49 int of_getintprop_default(struct device_node *np, const char *name, int def)
51 struct property *prop;
54 prop = of_find_property(np, name, &len);
55 if (!prop || len != 4)
58 return *(int *) prop->value;
60 EXPORT_SYMBOL(of_getintprop_default);
62 DEFINE_MUTEX(of_set_property_mutex);
63 EXPORT_SYMBOL(of_set_property_mutex);
65 int of_set_property(struct device_node *dp, const char *name, void *val, int len)
67 struct property **prevp;
71 new_val = kmalloc(len, GFP_KERNEL);
75 memcpy(new_val, val, len);
79 write_lock(&devtree_lock);
80 prevp = &dp->properties;
82 struct property *prop = *prevp;
84 if (!strcasecmp(prop->name, name)) {
85 void *old_val = prop->value;
88 mutex_lock(&of_set_property_mutex);
89 ret = prom_setprop(dp->node, name, val, len);
90 mutex_unlock(&of_set_property_mutex);
94 prop->value = new_val;
97 if (OF_IS_DYNAMIC(prop))
100 OF_MARK_DYNAMIC(prop);
106 prevp = &(*prevp)->next;
108 write_unlock(&devtree_lock);
110 /* XXX Upate procfs if necessary... */
114 EXPORT_SYMBOL(of_set_property);
116 int of_find_in_proplist(const char *list, const char *match, int len)
121 if (!strcmp(list, match))
123 l = strlen(list) + 1;
129 EXPORT_SYMBOL(of_find_in_proplist);
131 unsigned int prom_unique_id;
133 static struct property * __init build_one_prop(phandle node, char *prev,
138 static struct property *tmp = NULL;
144 memset(p, 0, sizeof(*p) + 32);
147 p = prom_early_alloc(sizeof(struct property) + 32);
148 p->unique_id = prom_unique_id++;
151 p->name = (char *) (p + 1);
153 strcpy(p->name, special_name);
154 p->length = special_len;
155 p->value = prom_early_alloc(special_len);
156 memcpy(p->value, special_val, special_len);
159 name = prom_firstprop(node, p->name);
161 name = prom_nextprop(node, prev, p->name);
164 if (strlen(name) == 0) {
168 #ifdef CONFIG_SPARC32
169 strcpy(p->name, name);
171 p->length = prom_getproplen(node, p->name);
172 if (p->length <= 0) {
177 p->value = prom_early_alloc(p->length + 1);
178 len = prom_getproperty(node, p->name, p->value,
182 ((unsigned char *)p->value)[p->length] = '\0';
188 static struct property * __init build_prop_list(phandle node)
190 struct property *head, *tail;
192 head = tail = build_one_prop(node, NULL,
193 ".node", &node, sizeof(node));
195 tail->next = build_one_prop(node, NULL, NULL, NULL, 0);
198 tail->next = build_one_prop(node, tail->name,
206 static char * __init get_one_property(phandle node, const char *name)
208 char *buf = "<NULL>";
211 len = prom_getproplen(node, name);
213 buf = prom_early_alloc(len);
214 len = prom_getproperty(node, name, buf, len);
220 static struct device_node * __init prom_create_node(phandle node,
221 struct device_node *parent)
223 struct device_node *dp;
228 dp = prom_early_alloc(sizeof(*dp));
229 dp->unique_id = prom_unique_id++;
232 kref_init(&dp->kref);
234 dp->name = get_one_property(node, "name");
235 dp->type = get_one_property(node, "device_type");
238 dp->properties = build_prop_list(node);
245 static char * __init build_full_name(struct device_node *dp)
247 int len, ourlen, plen;
250 plen = strlen(dp->parent->full_name);
251 ourlen = strlen(dp->path_component_name);
252 len = ourlen + plen + 2;
254 n = prom_early_alloc(len);
255 strcpy(n, dp->parent->full_name);
256 if (!is_root_node(dp->parent)) {
257 strcpy(n + plen, "/");
260 strcpy(n + plen, dp->path_component_name);
265 static struct device_node * __init prom_build_tree(struct device_node *parent,
267 struct device_node ***nextp)
269 struct device_node *ret = NULL, *prev_sibling = NULL;
270 struct device_node *dp;
273 dp = prom_create_node(node, parent);
278 prev_sibling->sibling = dp;
285 *nextp = &dp->allnext;
287 dp->path_component_name = build_path_component(dp);
288 dp->full_name = build_full_name(dp);
290 dp->child = prom_build_tree(dp, prom_getchild(node), nextp);
292 node = prom_getsibling(node);
298 unsigned int prom_early_allocated __initdata;
300 void __init prom_build_devicetree(void)
302 struct device_node **nextp;
304 allnodes = prom_create_node(prom_root_node, NULL);
305 allnodes->path_component_name = "";
306 allnodes->full_name = "/";
308 nextp = &allnodes->allnext;
309 allnodes->child = prom_build_tree(allnodes,
310 prom_getchild(allnodes->node),
314 printk("PROM: Built device tree with %u bytes of memory.\n",
315 prom_early_allocated);
317 of_fill_in_cpu_data();