2 * Support for dynamic device trees.
4 * On some platforms, the device tree can be manipulated at runtime.
5 * The routines in this section support adding, removing and changing
10 #include <linux/spinlock.h>
11 #include <linux/slab.h>
12 #include <linux/string.h>
13 #include <linux/proc_fs.h>
15 #include "of_private.h"
18 * of_node_get() - Increment refcount of a node
19 * @node: Node to inc refcount, NULL is supported to simplify writing of
24 struct device_node *of_node_get(struct device_node *node)
27 kobject_get(&node->kobj);
30 EXPORT_SYMBOL(of_node_get);
33 * of_node_put() - Decrement refcount of a node
34 * @node: Node to dec refcount, NULL is supported to simplify writing of
37 void of_node_put(struct device_node *node)
40 kobject_put(&node->kobj);
42 EXPORT_SYMBOL(of_node_put);
44 static void of_node_remove(struct device_node *np)
48 BUG_ON(!of_node_is_initialized(np));
50 /* only remove properties if on sysfs */
51 if (of_node_is_attached(np)) {
52 for_each_property_of_node(np, pp)
53 sysfs_remove_bin_file(&np->kobj, &pp->attr);
54 kobject_del(&np->kobj);
57 /* finally remove the kobj_init ref */
61 static BLOCKING_NOTIFIER_HEAD(of_reconfig_chain);
63 int of_reconfig_notifier_register(struct notifier_block *nb)
65 return blocking_notifier_chain_register(&of_reconfig_chain, nb);
67 EXPORT_SYMBOL_GPL(of_reconfig_notifier_register);
69 int of_reconfig_notifier_unregister(struct notifier_block *nb)
71 return blocking_notifier_chain_unregister(&of_reconfig_chain, nb);
73 EXPORT_SYMBOL_GPL(of_reconfig_notifier_unregister);
75 int of_reconfig_notify(unsigned long action, void *p)
79 rc = blocking_notifier_call_chain(&of_reconfig_chain, action, p);
80 return notifier_to_errno(rc);
83 int of_property_notify(int action, struct device_node *np,
84 struct property *prop)
86 struct of_prop_reconfig pr;
88 /* only call notifiers if the node is attached */
89 if (!of_node_is_attached(np))
94 return of_reconfig_notify(action, &pr);
97 void __of_attach_node(struct device_node *np)
99 np->sibling = np->parent->child;
100 np->allnext = np->parent->allnext;
101 np->parent->allnext = np;
102 np->parent->child = np;
103 of_node_clear_flag(np, OF_DETACHED);
107 * of_attach_node() - Plug a device node into the tree and global list.
109 int of_attach_node(struct device_node *np)
114 rc = of_reconfig_notify(OF_RECONFIG_ATTACH_NODE, np);
118 raw_spin_lock_irqsave(&devtree_lock, flags);
119 __of_attach_node(np);
120 raw_spin_unlock_irqrestore(&devtree_lock, flags);
126 void __of_detach_node(struct device_node *np)
128 struct device_node *parent;
130 if (WARN_ON(of_node_check_flag(np, OF_DETACHED)))
134 if (WARN_ON(!parent))
137 if (of_allnodes == np)
138 of_allnodes = np->allnext;
140 struct device_node *prev;
141 for (prev = of_allnodes;
143 prev = prev->allnext)
145 prev->allnext = np->allnext;
148 if (parent->child == np)
149 parent->child = np->sibling;
151 struct device_node *prevsib;
152 for (prevsib = np->parent->child;
153 prevsib->sibling != np;
154 prevsib = prevsib->sibling)
156 prevsib->sibling = np->sibling;
159 of_node_set_flag(np, OF_DETACHED);
163 * of_detach_node() - "Unplug" a node from the device tree.
165 * The caller must hold a reference to the node. The memory associated with
166 * the node is not freed until its refcount goes to zero.
168 int of_detach_node(struct device_node *np)
173 rc = of_reconfig_notify(OF_RECONFIG_DETACH_NODE, np);
177 raw_spin_lock_irqsave(&devtree_lock, flags);
178 __of_detach_node(np);
179 raw_spin_unlock_irqrestore(&devtree_lock, flags);
186 * of_node_release() - release a dynamically allocated node
187 * @kref: kref element of the node to be released
189 * In of_node_put() this function is passed to kref_put() as the destructor.
191 void of_node_release(struct kobject *kobj)
193 struct device_node *node = kobj_to_device_node(kobj);
194 struct property *prop = node->properties;
196 /* We should never be releasing nodes that haven't been detached. */
197 if (!of_node_check_flag(node, OF_DETACHED)) {
198 pr_err("ERROR: Bad of_node_put() on %s\n", node->full_name);
203 if (!of_node_check_flag(node, OF_DYNAMIC))
207 struct property *next = prop->next;
214 prop = node->deadprops;
215 node->deadprops = NULL;
218 kfree(node->full_name);
224 * __of_prop_dup - Copy a property dynamically.
225 * @prop: Property to copy
226 * @allocflags: Allocation flags (typically pass GFP_KERNEL)
228 * Copy a property by dynamically allocating the memory of both the
229 * property stucture and the property name & contents. The property's
230 * flags have the OF_DYNAMIC bit set so that we can differentiate between
231 * dynamically allocated properties and not.
232 * Returns the newly allocated property or NULL on out of memory error.
234 struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags)
236 struct property *new;
238 new = kzalloc(sizeof(*new), allocflags);
243 * NOTE: There is no check for zero length value.
244 * In case of a boolean property This will allocate a value
245 * of zero bytes. We do this to work around the use
246 * of of_get_property() calls on boolean values.
248 new->name = kstrdup(prop->name, allocflags);
249 new->value = kmemdup(prop->value, prop->length, allocflags);
250 new->length = prop->length;
251 if (!new->name || !new->value)
254 /* mark the property as dynamic */
255 of_property_set_flag(new, OF_DYNAMIC);
267 * __of_node_alloc() - Create an empty device node dynamically.
268 * @full_name: Full name of the new device node
269 * @allocflags: Allocation flags (typically pass GFP_KERNEL)
271 * Create an empty device tree node, suitable for further modification.
272 * The node data are dynamically allocated and all the node flags
273 * have the OF_DYNAMIC & OF_DETACHED bits set.
274 * Returns the newly allocated node or NULL on out of memory error.
276 struct device_node *__of_node_alloc(const char *full_name, gfp_t allocflags)
278 struct device_node *node;
280 node = kzalloc(sizeof(*node), allocflags);
284 node->full_name = kstrdup(full_name, allocflags);
285 of_node_set_flag(node, OF_DYNAMIC);
286 of_node_set_flag(node, OF_DETACHED);
287 if (!node->full_name)
295 kfree(node->full_name);