1 // SPDX-License-Identifier: GPL-2.0+
2 /* pdt.c: OF PROM device tree support code.
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
10 * Adapted for sparc by David S. Miller davem@davemloft.net
11 * Adapted for multiple architectures by Andres Salomon <dilinger@queued.net>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/errno.h>
17 #include <linux/mutex.h>
18 #include <linux/slab.h>
20 #include <linux/of_pdt.h>
22 static struct of_pdt_ops *of_pdt_prom_ops __initdata;
24 #if defined(CONFIG_SPARC)
25 unsigned int of_pdt_unique_id __initdata;
27 #define of_pdt_incr_unique_id(p) do { \
28 (p)->unique_id = of_pdt_unique_id++; \
31 static char * __init of_pdt_build_full_name(struct device_node *dp)
33 return build_path_component(dp);
36 #else /* CONFIG_SPARC */
38 static inline void of_pdt_incr_unique_id(void *p) { }
39 static inline void irq_trans_init(struct device_node *dp) { }
41 static char * __init of_pdt_build_full_name(struct device_node *dp)
43 static int failsafe_id = 0; /* for generating unique names on failure */
49 if (!of_pdt_prom_ops->pkg2path(dp->phandle, path, sizeof(path), &len)) {
50 name = kbasename(path);
51 buf = prom_early_alloc(strlen(name) + 1);
56 name = of_get_property(dp, "name", &len);
57 buf = prom_early_alloc(len + 16);
58 sprintf(buf, "%s@unknown%i", name, failsafe_id++);
59 pr_err("%s: pkg2path failed; assigning %s\n", __func__, buf);
63 #endif /* !CONFIG_SPARC */
65 static struct property * __init of_pdt_build_one_prop(phandle node, char *prev,
70 static struct property *tmp = NULL;
76 memset(p, 0, sizeof(*p) + 32);
79 p = prom_early_alloc(sizeof(struct property) + 32);
80 of_pdt_incr_unique_id(p);
83 p->name = (char *) (p + 1);
85 strcpy(p->name, special_name);
86 p->length = special_len;
87 p->value = prom_early_alloc(special_len);
88 memcpy(p->value, special_val, special_len);
90 err = of_pdt_prom_ops->nextprop(node, prev, p->name);
95 p->length = of_pdt_prom_ops->getproplen(node, p->name);
101 p->value = prom_early_alloc(p->length + 1);
102 len = of_pdt_prom_ops->getproperty(node, p->name,
103 p->value, p->length);
106 ((unsigned char *)p->value)[p->length] = '\0';
112 static struct property * __init of_pdt_build_prop_list(phandle node)
114 struct property *head, *tail;
116 head = tail = of_pdt_build_one_prop(node, NULL,
117 ".node", &node, sizeof(node));
119 tail->next = of_pdt_build_one_prop(node, NULL, NULL, NULL, 0);
122 tail->next = of_pdt_build_one_prop(node, tail->name,
130 static char * __init of_pdt_get_one_property(phandle node, const char *name)
132 char *buf = "<NULL>";
135 len = of_pdt_prom_ops->getproplen(node, name);
137 buf = prom_early_alloc(len);
138 len = of_pdt_prom_ops->getproperty(node, name, buf, len);
144 static struct device_node * __init of_pdt_create_node(phandle node,
145 struct device_node *parent)
147 struct device_node *dp;
152 dp = prom_early_alloc(sizeof(*dp));
154 of_pdt_incr_unique_id(dp);
157 dp->name = of_pdt_get_one_property(node, "name");
160 dp->properties = of_pdt_build_prop_list(node);
162 dp->full_name = of_pdt_build_full_name(dp);
169 static struct device_node * __init of_pdt_build_tree(struct device_node *parent,
172 struct device_node *ret = NULL, *prev_sibling = NULL;
173 struct device_node *dp;
176 dp = of_pdt_create_node(node, parent);
181 prev_sibling->sibling = dp;
187 dp->child = of_pdt_build_tree(dp, of_pdt_prom_ops->getchild(node));
189 node = of_pdt_prom_ops->getsibling(node);
195 static void * __init kernel_tree_alloc(u64 size, u64 align)
197 return prom_early_alloc(size);
200 void __init of_pdt_build_devicetree(phandle root_node, struct of_pdt_ops *ops)
203 of_pdt_prom_ops = ops;
205 of_root = of_pdt_create_node(root_node, NULL);
206 of_root->full_name = "/";
208 of_root->child = of_pdt_build_tree(of_root,
209 of_pdt_prom_ops->getchild(of_root->phandle));
211 /* Get pointer to "/chosen" and "/aliases" nodes for use everywhere */
212 of_alias_scan(kernel_tree_alloc);