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 void __initdata (*of_pdt_build_more
)(struct device_node
*dp
);
26 #if defined(CONFIG_SPARC)
27 unsigned int of_pdt_unique_id __initdata
;
29 #define of_pdt_incr_unique_id(p) do { \
30 (p)->unique_id = of_pdt_unique_id++; \
33 static char * __init
of_pdt_build_full_name(struct device_node
*dp
)
35 int len
, ourlen
, plen
;
38 dp
->path_component_name
= build_path_component(dp
);
40 plen
= strlen(dp
->parent
->full_name
);
41 ourlen
= strlen(dp
->path_component_name
);
42 len
= ourlen
+ plen
+ 2;
44 n
= prom_early_alloc(len
);
45 strcpy(n
, dp
->parent
->full_name
);
46 if (!of_node_is_root(dp
->parent
)) {
47 strcpy(n
+ plen
, "/");
50 strcpy(n
+ plen
, dp
->path_component_name
);
55 #else /* CONFIG_SPARC */
57 static inline void of_pdt_incr_unique_id(void *p
) { }
58 static inline void irq_trans_init(struct device_node
*dp
) { }
60 static char * __init
of_pdt_build_full_name(struct device_node
*dp
)
62 static int failsafe_id
= 0; /* for generating unique names on failure */
66 if (of_pdt_prom_ops
->pkg2path(dp
->phandle
, NULL
, 0, &len
))
69 buf
= prom_early_alloc(len
+ 1);
70 if (of_pdt_prom_ops
->pkg2path(dp
->phandle
, buf
, len
, &len
))
75 buf
= prom_early_alloc(strlen(dp
->parent
->full_name
) +
76 strlen(dp
->name
) + 16);
77 sprintf(buf
, "%s/%s@unknown%i",
78 of_node_is_root(dp
->parent
) ? "" : dp
->parent
->full_name
,
79 dp
->name
, failsafe_id
++);
80 pr_err("%s: pkg2path failed; assigning %s\n", __func__
, buf
);
84 #endif /* !CONFIG_SPARC */
86 static struct property
* __init
of_pdt_build_one_prop(phandle node
, char *prev
,
91 static struct property
*tmp
= NULL
;
97 memset(p
, 0, sizeof(*p
) + 32);
100 p
= prom_early_alloc(sizeof(struct property
) + 32);
101 of_pdt_incr_unique_id(p
);
104 p
->name
= (char *) (p
+ 1);
106 strcpy(p
->name
, special_name
);
107 p
->length
= special_len
;
108 p
->value
= prom_early_alloc(special_len
);
109 memcpy(p
->value
, special_val
, special_len
);
111 err
= of_pdt_prom_ops
->nextprop(node
, prev
, p
->name
);
116 p
->length
= of_pdt_prom_ops
->getproplen(node
, p
->name
);
117 if (p
->length
<= 0) {
122 p
->value
= prom_early_alloc(p
->length
+ 1);
123 len
= of_pdt_prom_ops
->getproperty(node
, p
->name
,
124 p
->value
, p
->length
);
127 ((unsigned char *)p
->value
)[p
->length
] = '\0';
133 static struct property
* __init
of_pdt_build_prop_list(phandle node
)
135 struct property
*head
, *tail
;
137 head
= tail
= of_pdt_build_one_prop(node
, NULL
,
138 ".node", &node
, sizeof(node
));
140 tail
->next
= of_pdt_build_one_prop(node
, NULL
, NULL
, NULL
, 0);
143 tail
->next
= of_pdt_build_one_prop(node
, tail
->name
,
151 static char * __init
of_pdt_get_one_property(phandle node
, const char *name
)
153 char *buf
= "<NULL>";
156 len
= of_pdt_prom_ops
->getproplen(node
, name
);
158 buf
= prom_early_alloc(len
);
159 len
= of_pdt_prom_ops
->getproperty(node
, name
, buf
, len
);
165 static struct device_node
* __init
of_pdt_create_node(phandle node
,
166 struct device_node
*parent
)
168 struct device_node
*dp
;
173 dp
= prom_early_alloc(sizeof(*dp
));
175 of_pdt_incr_unique_id(dp
);
178 dp
->name
= of_pdt_get_one_property(node
, "name");
179 dp
->type
= of_pdt_get_one_property(node
, "device_type");
182 dp
->properties
= of_pdt_build_prop_list(node
);
189 static struct device_node
* __init
of_pdt_build_tree(struct device_node
*parent
,
192 struct device_node
*ret
= NULL
, *prev_sibling
= NULL
;
193 struct device_node
*dp
;
196 dp
= of_pdt_create_node(node
, parent
);
201 prev_sibling
->sibling
= dp
;
207 dp
->full_name
= of_pdt_build_full_name(dp
);
209 dp
->child
= of_pdt_build_tree(dp
, of_pdt_prom_ops
->getchild(node
));
211 if (of_pdt_build_more
)
212 of_pdt_build_more(dp
);
214 node
= of_pdt_prom_ops
->getsibling(node
);
220 static void * __init
kernel_tree_alloc(u64 size
, u64 align
)
222 return prom_early_alloc(size
);
225 void __init
of_pdt_build_devicetree(phandle root_node
, struct of_pdt_ops
*ops
)
228 of_pdt_prom_ops
= ops
;
230 of_root
= of_pdt_create_node(root_node
, NULL
);
231 #if defined(CONFIG_SPARC)
232 of_root
->path_component_name
= "";
234 of_root
->full_name
= "/";
236 of_root
->child
= of_pdt_build_tree(of_root
,
237 of_pdt_prom_ops
->getchild(of_root
->phandle
));
239 /* Get pointer to "/chosen" and "/aliases" nodes for use everywhere */
240 of_alias_scan(kernel_tree_alloc
);